stop() function not working on actionscript 3.0
I have an actionscript 2.0 program that goes through a sequence of frames stepping on eah one using the function stop()
I'm compiling t开发者_开发问答he same script on flash cs 5, that only supports actionscript 3.0, and when running the script the stop() function is ignored
any idea what could be the problem?
Flash CS5 does support AS2. Go to the Publish Settings (File / Publish Settings) and go to the Flash Tab. On the top of the panel you must be able to set the target Player version and ActionScript version.
Good luck, Rob
stop();
on a frame action works perfectly with AS3. You seem to have some other problem causing the script to fail.
You need to increase the JVM's memory to get the desired result. I had the same issue and it worked for me when I increased it from 128MB to 512MB. If still not working there must be an issue with actionscript
and you need to recheck it.
To Increase JVM memory :
- Go to your Flash CS5 installed folder/en_US\Configuration\your ActionScript folder
- Open jvm.ini
- Change -Xmx128m to -Xmx512m
Note: If increasing the JVM's memory does not work. Before checking the actionscript
code try to work the same code on another system with a bigger RAM size than yours.
精彩评论