PDA

View Full Version : mc problem...


Paulskii
04-21-2008, 04:26 PM
Ok...when I started my movieclip was simple...its an info popup that comes up when someone clicks another movieclip on the stage...anyhow, when it comes up it looks like a projector screen that is being pulled down...there is also a number in the top right that is supposed to be scrolling...there are two problems with my popup...

1) the scrolling number does not show up...
2) the content in the info popup refuses to stay invisible until the "screen" is pulled all they way down...

the first link shows what the scrolling number is supposed to look like...
http://www.expocadvr.com/t2/default.html

the second link shows what the popup looks like as of right now...
http://www.expocadvr.com/test/default.html

I did not change anything regarding the scrolling number when I altered the content to fit and look decent in the info popup...I have no idea why it is not showing up...can anyone shed any light on this? I have attached my fla...

scott_euser
04-21-2008, 05:26 PM
hi,
seems your numbers are working right now right? or maybe I misunderstand what you want
as for the text, your problem would be solved if you attach your textbox to the mc

for instance:

projectorscreen_mc.createTextField etc etc

alternatively, make sure you have your
my_text._visible = true;
inside if the tween.onMotionFinished

ex/
//fade the cover in
var tween_handler:Tween = new Tween (fader, "_y", Regular.easeIn, -100, 100, 2);
tween_handler.onMotionFinished = function () {
my_text._visible = true;
}