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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple Tell Target? huh!!

Status
Not open for further replies.

funkymonk

Technical User
Dec 18, 2000
588
GB
O.K. This has confused me to the extreme. I am trying to target a movieClip from another movieClip which should be an easy task. Not for me! Here is what I am trying to do;

Trigger clip: I have a button within this clip (DropMenu)

on (release) {
tellTarget ("target") {
}
gotoAndStop (5);
}

Target clip: I have named this target.


This is what I get when I execute it:

Target not found: Target="target" Base="_level0.instance1"

Can anyone see where I am going wrong? If you need more info my e-mail: fallingthunder@hotmail.com

 
If both of your movies are on level0 (the main stage) then you can call each other like this. For example you have target1 then target2. Target1 can tell Target2 to go to frame 2 like this:


on (release) {
tellTarget ("_level0.target1") {
gotoAndStop (2);
}
}

You can string them together for forever (I think). When your moving "backwards" in the line you have to reference level0. That should do it.

Blended
 
can you post the fla for doctoring?

dD davdesign@hotmail.com

^^^^^^^^^^^^^^^^
 
Hiya Blended

Man, you totally rock! Dont know how long I have been shitting with the same problem - works like a dream.
Thx
 
looks like you've been shitting for almost a year, yeech, LOL!
dave@pinkzeppelin.com

^^^^^^^^^^^^^^^^^^^^^​
 
lol...now that's funny...
logo.gif


carlsatterwhite@orlandomediasolutions.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top