My little brother actively plays this game: http://classic.skyriderplay.com/
As you can see with the source, the SWF is located here: http://classic.skyriderplay.com/flash/qplay.swf
Accessing that URL alone won't load the game though. I assume it's because variables and cooking are being passed, as I see this in the source:
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
swfobject.embedSWF("flash/qplay.swf", "qplay", "760px", "592px", "10.0.0",false, {qplaycookie:"bf76a6e42d679205cd8a22e3f8ddc4e6"},{allowFullScreen:"true", wmode:"direct", seamlesstabbing:"false", scale:"noscale",salign:"tl"},false);
</script>
My question is, is there any way I can work with this to get the SWF to run as a standalone URL? Or better yet, can I play the game through some external Flash player somehow?