Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

check this..

Status
Not open for further replies.

coldfused

Technical User
Jan 27, 2001
2,442
US
tell me if i'm going crazy or need to goto sleep..

main movie holds nav..coordinating button on main movie calls coordinating.swf into a dummy clip and hides it on the main movie until called..now inside coordinating.swf there is a mc called window, window has a button that calls a txt file to coordtextholder, a dynamic text box inside the window mc..

so would the call not be..

on (press) {
loadVariables("fashionshows.txt", "_root.window.coordtextholder");
}

seems it would be, but not loading the text..

and if i use..

on (press) {
loadVariables("fashionshows.txt", "_root.coordinating.window.coordtextholder");
}

this time calling the txt file through th main movies mc that holds the coordinating.swf..

still nothing..


what the F^&^ am i not doing besides sleeping?


logo.gif


carlsatterwhite@orlandomediasolutions.com
 
Aren't you forgeting the holder dummy clip? It's still there and it's the clip that holds the rest of the stuff. Give it an instance name (although it must have one, if you loaded a movie into it!), and use it in your path! Regards,

new.gif
 
i did in the second one..that is coordinating..
logo.gif


carlsatterwhite@orlandomediasolutions.com
 
i got it..if i'm loading "fashionshow.txt"
i should not be targeting "fashionshows.txt"..

logo.gif


carlsatterwhite@orlandomediasolutions.com
 
Didn't you get an error message of file not found? Or do have 2 files? fashionshow.txt & fashionshows.txt?

Get some sleep! And a beer before that! Regards,

new.gif
 
hey try this..have a dynamic text box in a movie clip and load the text into the clip on the main timeline..loads fine..take that text holder clip and place it inside another clip on the main timeline and it will not load the txt..it will load fine one clip deep..can't get it to load two clips deeps..
logo.gif


carlsatterwhite@orlandomediasolutions.com
 
Using MX or 5? Think I've done that with one of your first dynamictest .flas. Will look for it? Regards,

new.gif
 
mx..
logo.gif


carlsatterwhite@orlandomediasolutions.com
 
Didn't load text from a text file, but doubt that would change anything, and it does work for me!

_root.holder1.holder2.my_textfield.text= "THIS IS A TEST!";

I'm sure it's a path thing, or misspelling issue.

Try trace(this); on the first frame of your second clip, to get the path to that clip, and see if it corresponds. Also are you sure your textfield is really in that second clip deep? Regards,

new.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top