Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
kit_hoffman #1
changing text properties at run time doesn't work
when I try to increment the text itself like myText._x ++; it will only move
one pixel! it wont keep moving like a movie clip.
I know that this problem can be solved by making the text a movie clip, but I
also want this text to fade out. when I used mytext._alpha --; the text
wouldn't fade. so I tried converting the text into a movie clip and used this
code...
onClipEvent(enterFrame){
myMCText._alpha --;
}
it still wouldn't fade. I then tried putting a circle in the MC to see if it
would fade. It did! but it left the text unfaded.
if you have any solutions of suggestions let me know. I really can't use the
tweening, but give me your suggestions any way. thanks for any help
-kit
kit_hoffman Guest
-
Changing the Document Properties
Hi, I want to change the document properties like Page layout, Magnification... My code as shown below: AVPageView avPageView =... -
ViewState properties and mapped properties don't work well togethe
I have a CompositeControl with two types of properties: 1.) Mapped Properties that map directly to a child control's properties (ex.:... -
properties not showing in properties window at design time
I created a usercontrol using vb but the properties will not show in the properties pane however the properties show up in the intellisence list.... -
Dynamic Changing Properties
Greetings, Suppose I have a control that by default, all the properties and text rendered is English. If supported, and the user changes to say,... -
Time/Date format and changing time to GMT
Hi All, Sorry if this is the wrong newsgroup to post into, on this topic, if so, please point me in the right direction..... Currently working... -
kglad #2
Re: changing text properties at run time doesn't work
your clip event is probably failing because you have a path reference error to
the movieclip myMCText which i'm guessing is not a child of the movieclip to
which that _alpha decrement is attached or you're not embedding your font.
kglad Guest



Reply With Quote

