Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
Thomas Finke #1
movieclip - textboxes - problem
Hi,
I'm having a movieclip "feld0" containing a dynamic textbox "text1".
why does only the text "Home" in feld0 appear.
I can't see the other textboxes, that should show me "Gallery"...why?
for (a=1;a<6;a++) {
duplicateMovieClip(_root.feld0,"feld"+a,a);
_root["feld"+a]._x=95*a;
_root["feld"+a]._y=0*a;
_root.feld0._visible=true;
_root["feld"+a]._visible=true;
_root.feld0.var1="Home";
_root["feld"+a].text1.text="Gallery";
}
Thomas Finke Guest
-
Flex/AS3 problem with embedded movieclip
When I embedd a SWF inside my Flex/AS3 project then i cannot control stop/gotoAndStop it. The swf clip plays in loop with no control. WHen I load... -
Problem accessing movieclip properties (Actionscript2 newbie)
I am placing an instance of a movieclip onto the _root of my movie using createEmptyMovieClip(...) and then attachMovie(...). It all works fine -... -
sound on movieclip problem
I'm trying to play a sound on the rollover of a movieclip. On my frame actions I have the following code mouse_sound.attachSound("Big Over 001" ... -
ENABLE/DISABLE CHECKBOXES AND TEXTBOXES PROBLEM
Can you please tell me the right way to do this?? it's realy important! thanks in advance... Hi all, Can you please tell me what's wrong with... -
a movieclip to control another movieclip???
Well, try to trace the _x coordinate or print it onto screen so you can see what it is. What is pc_move? If you want to move the clip, you must... -
Matheus #2
Re: movieclip - textboxes - problem
Take a look on the "embed fonts" in the Text Field Properties Panel.
Matheus
// macromedia.general.brazil
"Thomas Finke" <finke.thomas@gmx.de> escreveu na mensagem
news:404473b4$0$12926$9b4e6d93@newsread2.arcor-online.net...> Hi,
>
> I'm having a movieclip "feld0" containing a dynamic textbox "text1".
> why does only the text "Home" in feld0 appear.
> I can't see the other textboxes, that should show me "Gallery"...why?
>
> for (a=1;a<6;a++) {
> duplicateMovieClip(_root.feld0,"feld"+a,a);
> _root["feld"+a]._x=95*a;
> _root["feld"+a]._y=0*a;
> _root.feld0._visible=true;
> _root["feld"+a]._visible=true;
> _root.feld0.var1="Home";
> _root["feld"+a].text1.text="Gallery";
> }
>
>
Matheus Guest
-
kglad #3
Re: movieclip - textboxes - problem
there's no problem with that code. double check that your textfield in feld0 really has instance name text1.
kglad Guest



Reply With Quote

