View Single Post
  #1 (permalink)  
Old May 21st, 2007, 12:12
cosmicbdog cosmicbdog is offline
Up'n'Coming Member
Join Date: May 2007
Location: northern nsw, au
Age: 27
Posts: 76
Thanks: 0
Thanked 0 Times in 0 Posts
locking positions of symbols relative to...

say you're inside a symbol that is a movie. can all the aspects of that symbol be created on the first frame actionscript of it? e.g can one go, 'create new symbol' => 'movie' => first frame type something like "
Code: Select all
createClassObject(mx.controls.TextInput, "subscribeInput", 1, {text:""});
subscribeInput.setSize(198, 27);
subscribeInput.move(9,9);
" and it will position that input in that spot? this code works for me when i put it in the first frame of the scenes actionscript but not the symbol. am I missing something about how this works?

Last edited by Sgaspar11; May 21st, 2007 at 16:05. Reason: Use Code Tags!
Reply With Quote