Hi CK0,
cool to see that you give it a try.
Yes, there is a pretty easy way to do it (at least that's how I do it using AS3.0 projects):
- Right click on the Project Root Name (right screen, Project View)
- Choose Properties...
In the upcoming dialog you can set various stuff, like:
- Platform (Flash Player 9, 10, ... )
- Dimensions
- Background color
- Framerate
etc
You could even hardcode it into your application itself. Have a look at the followin code (ActionScript3.0)
package
{
import flash.display.Sprite;
/**
* Hello World
* @author benny!
*/
// This overwrites the Project specific settings
[SWF(width = "640", height = "480", backgroundColor = "#000000")]
public class HelloWorld extends Sprite
{
public function HelloWorld()
{
trace( "Hello World" );
}
}
}
Hope that helps. Unfortunately I do not have any knowledge about Actionscript2.0 though.
Best,
benny!