Hi Again:
I brought up the translate example, and I think that this is how I get the behavior that I want associated with my movie (only advancing to the next frame when the page-up key is pressed). When I run the example with a "hello world" example I get an output MovieClip.swf but a blank screen when I try to look at the .swf with firefox. This is my hello world script:
// Hello World in Actionscript (Flash MX onwards)
_root.createTextField("mytext",1,100,100,300,100);
mytext.multiline = true;
mytext.wordWrap = true;
mytext.border = false;
myformat = new TextFormat();
myformat.color = 0xff0000;
myformat.bullet = false;
myformat.underline = true;
mytext.text = "Hello World!";
mytext.setTextFormat(myformat);
thanks
Rich
