Skip to main content
Participant
March 27, 2014
Question

Need Help with Actionscript

  • March 27, 2014
  • 2 replies
  • 479 views

Hey.  I used Flash CS5 and CS6 with great success.  But after coming back, I was forced to pick up Flash CC with the Creative Cloud.  I had CS6 through a subscription, but terminated it.  So... now my only option is, apparently, to work with CC.  Fine.

Only problem is the thing doesn't appear to do basic commands.  Here is the one action that appears to work:

stop();

My movie will run, will display images.  And stop appropriately.  However, when I tried this code:

trace("Hello World.");

The movie did not play, no images appeared, and there was no output in the output box.  I'm really frustrated.  I USED to think I was quite proficient with Flash and this has just been extremely frustrating.  I'm really wishing it had let me keep Flash CS6.

Anyways.  I know it's a bone-headed question, but there you go.  Oh!  And I'm typing this action into the Frame in the Timeline.

~JOE

This topic has been closed for replies.

2 replies

kglad
Community Expert
Community Expert
March 27, 2014

1.  you can use cs6 with your cc subscription, http://helpx.adobe.com/creative-cloud/help/install-cc-and-cs6-apps.html

2.  trace works the same in cc as in previous versions of flash pro.  to debug, create a new fla, save in a new directory and test a simple trace.  if that fails, click file>publish settings>swf and make sure 'omit trace statements' is unticked.

FirstEdAuthor
Participant
March 27, 2014

I realize my first post didn't have a lot to go on.  As I'm learning, Flash doesn't use actionscript so much?  It's moving towards HTML5... whatever that is.

InnerUFOmaker, I attempted to use functions like:
var counter:number = 0;

as well as a random number generator that I can't recall.

Kglad, I'm SO glad you said that.  I got CS6 promptly installed and I'm zipping right along now.  Thank you so much for pointing that out.

kglad
Community Expert
Community Expert
March 27, 2014

you're welcome.

and flash still uses actionscript.  it's also trying to expand  into html 5.

Inspiring
March 27, 2014

Joe, change the trace() statements to Debug.log() >> Debug.log("Hello World.").

What other basic commands do not function? Just name one or two more please.