An update has been made to FalconProvider in the Falcon Zip. Thanks to Kasper Kamperman saving the lonely single-result return. Please update your FalconProvider files and recompile any swf’s that use it.
Advertisement
Filed under: Update Tagged: | falconprovider










Oops – sorry needed to adjust that one more time. If you want to check if something is a number you can’t just say:
if (myNum) {trace (“number”);}
because if it is 0 then this returns false so you do:
if (!isNaN(myNum)) {trace (“number”);}