If you do not know how to code some thing i can tell you a little.
Try to read this - if some questions ask.
viewtopic.php?f=29&t=2370Now a little about what you wright earlier. There are 2 version of Action Script: AS2 and AS3.
AS2 is old one - but the most part of good games and flash was made on it. It is very easy to learn and program. and it is very comfortable i think.
AS3 is new one - it apears after adobe buy flash from macromedia. AS3 is harder, but have some new abilities. But i do not thing that there are a lot of things that is impossible to do with AS2 which you can do on AS3 in simple game, but there are some restrictions. (For example some components do not work - you will need to make your own and some problems with changing frame rate with code - but is is not nesessary i think).
If you want to make components to change by buttons - it is 2 simple ways.
Select spme object (for example picture) in adobe flash CS. Then convert it to movie clip (i wright about it in that link before). Name it some how for example - myPart1. Open it and put this code there.
if (SomeWariable==1){stop();}
else if (SomeWariable==2){gotoAndStop(2);}
If you will need to go it go to another frame you can wright: myPart1.gotoAndStop(2); //for example
If it is not on main time line than root.(the way).myPart1.gotoAndStop(2);
The same you can change size of objects: myPart1.width=30; //for example
myPart1.height=30; //for example
Try to look my that linked topic - there are some examples may be they can help a little (the code is in *.fla and *.zip). If any questions then ask
To open them you will need Adobe Flash CS5.5 or higer version of this program.