- Joined
- Jan 14, 2006
- Messages
- 3,887
- Reaction score
- 8
- Trophies
- 1
- Age
- 40
- Location
- Brazil
- Website
- www.homembarata.com.br
- XP
- 747
- Country

You're using actionscript 2 right? So, let's see what I can do..
1) just create a MovieClip with your textbox and add it to stage:
2) I used his tutorials once.. but I don't remember how his code was organized.. anyway, flash debug mode is not very good..
3) It's weird.. but you can't!
Flash don't give you warnings.. you can define whatever you want at any time and it don't care.. it's like Javascript.
ActionScript 3 changed it thought.. you need to define every variable you have and it gives you warnings.. but that's another story..
4) Have I mentioned that flash debug mode is not good? I really don't know.. I usually just put a lot of traces on my code when I have to debug it XP
5) If you're using the flash file on a website, you can resize it by just changing the "height" and "width" properties on the HTML.
If you want it to be dynamic, you could try using some Javascript.
6) See last answer.
7)I don't think you can
. AFAIK it works only for the built-in classes.
Hope this helps you!
1) just create a MovieClip with your textbox and add it to stage:
Code:
_root.attachMovie("textBox", "myTextBox", 1000); //textBox would be the linkage name of the MovieClip
_root.myTextBox.text = "Whatever the text you want to appear"; //being text the variable on the textbox inside the MovieClip
2) I used his tutorials once.. but I don't remember how his code was organized.. anyway, flash debug mode is not very good..
3) It's weird.. but you can't!
Flash don't give you warnings.. you can define whatever you want at any time and it don't care.. it's like Javascript.
ActionScript 3 changed it thought.. you need to define every variable you have and it gives you warnings.. but that's another story..
4) Have I mentioned that flash debug mode is not good? I really don't know.. I usually just put a lot of traces on my code when I have to debug it XP
5) If you're using the flash file on a website, you can resize it by just changing the "height" and "width" properties on the HTML.
If you want it to be dynamic, you could try using some Javascript.
6) See last answer.
7)I don't think you can
Hope this helps you!










