ActionScript 2.0 :: [MX] .root - Use TellTarget In Menu System
Jun 16, 2003
Ive just followed the tutorial about creating a full flash site using root. I got that working fine. My problem occurs when i want to use tellTarget in my menu system as well.
The movie looks for the actions contained in the mouse overs of the menu in the main movie. This is the error message i get:
[Code]...
View 2 Replies
Similar Posts:
Mar 31, 2006
i was wondering how this menu was done, i have been looking for tutorials and several threads, but havent found anything, where should i start reading about this ?
View 2 Replies
Nov 9, 2007
coding this menu system and cant find any tutorialsor templates on multi level (4) drop downs. I dont know weatherto make everything a movie clip and load the mc's or to place buttons inside a movie clip. Everthing will be onrollover.
View 14 Replies
Nov 21, 2009
I need to create a rather detailed menu system that will load thumbnails of movie clips that I can then double-click on and it will load them into the display list of another movie clip.
I think I can code the loading part but I've never dealt with creating flash menus before and don't have any help in the 5 as3 books I own.
Is there a way I can make the menu generate the thumbs from an external file that I can just update when I need to instead of editing the flash file?
View 3 Replies
Feb 13, 2011
I'm wondering if anyone would be able to point me in the direction of a tutorial using action script 2 on making an expanding menu system. [URL] This one is a tutorial but I could do with one from the start step by step!
View 1 Replies
Jul 9, 2009
I had to make a new website and just about got it done in AS2. The problem is that some of the buttons within the menu had sooooo much AS that i was getting very lost. Heres the site i made [URL] I now have to create a new site but i dont want a repeat of last time. The issue i have is that for each of the buttons i would tell it on(release) to go and chech what frame each one of the other buttons was on and if any were not in their "Off" mode it would tell it to play from a lable within the button movieclip as well as tell the text relating to it to fade away. NOW Ive tried doing this as a function in the new project but its not working no matter what i do.
View 8 Replies
Nov 19, 2009
I'm new to actionscript 3 and could really use some help to develop an xml driven menu system. I would like to make the menu system similar to the navigation used in this site. [URL] I just need a simple version of this maybe 2 - 3 categories on the left and all of the children for them on the right.
View 0 Replies
Jul 5, 2005
how to do this sort of navigation system? Just like the one used here:
[URL]
Click on "Jewels to love madly" and click Rings. A vertical bar comes up that slides up and down with image links.
That's the effect I want to achieve but I'd like it to be horizontal, like the one here:
[URL]
except that one doesn't use images.
View 3 Replies
Apr 26, 2006
I have a menu system at the top of the screen with 4 tabs - they look like the tabs on a filing system. When a tab is clicked it should enlarge slightly to show that it has come to the front and push the other tabs away from it so the layout is kept intact and nothing is overlapped.
The left-hand edge of the farthest-left tab should always be in the same place - that tab can only expand to the right. I have a rough idea about how to go about this but it's all on the very frontiers of my knowledge and i know it's got some maths in there.
I can supply images but there's not really any code as yet because i don't really know where to begin.
View 1 Replies
May 5, 2008
Here is the code
Code:
//############# Breaking Edge Band Website ##############
// Created by Sam Wood. Note that everything written after
// after a "//" indicates that I am commenting on
// the codes underneath it.
[code]....
As you can probably guess i am making a rotated menu system. It all works fine except the code above.Basically what happens is that when I click the "MUSIC" button, then the "HISTORY" button, then to the "MUSIC" button and finally the "HISTORY" button, it seems to do the opposite clockwise direction to what it did the first time i click on it.....
View 1 Replies
Oct 9, 2009
I'm trying to create a menu system and I've created a "Button" with a dynamic text field on it. I'd like to set the text of the button when I add it to the stage but I'm having some troubles. Does this work differently then a dynamic text field on a movie clip? I've done it successfully on a movie clip.
var test; test = new menu_item();
stage.addChild(test); test.x = 610; test.y = 100;
test.menuText.text = "Hello World";
I get this error message in my output window...
TypeError: Error #1010: A term is undefined and has no properties.
at Main$iinit()
View 13 Replies
Aug 8, 2010
I wanted to put there a background that will change (fade out and than fade in another one) according to menu position. It would load external *.swf's. For example I'm in "A" and the background is "bg01.swf", after clicking "B" the "bg01.swf" background would unload/stop (fade out) and than the "bg02.swf" would fade in and start to animate. I can't put the right script in the menu system. The source files are attached to this post (Flash CS3 source file and the backgrounds):
View 9 Replies
Nov 20, 2009
I am building an autocomplete menu system, and need the general function to be simple as I will be adding a lot more functionality to it later...
this is my start, but it returns too many results, how can I bind the results?
[Code].....
View 1 Replies
Sep 24, 2004
create a scrolling mask effect controlled by a menu system. I see this effect everywhere but no tutorials.
[URL]
View 1 Replies
Mar 2, 2009
I have created a menu that loads external swf files using this code:
[Code]....
Check out [URL] to see its operation. I am now testing a sub menu within one of these menu movie clips. When the mouse hovers over the movie clip, the sub menu movie clips appear. The sub menu movie clips have this same code (with the intention of the user being able to click on the sub menu movie clips and the new swf file kicks the current swf out of level 30 and loads the new one) however the swf file fails to load to level 30.
[Code]....
View 1 Replies
Jan 12, 2009
I'm in the process of learning OOP and have run into a small problem. I'm trying to create a basic menu system where you can rollover and rollout of all links. When you select a link, it stays highlighted until you click another link.I've given the 5 links instance names like (link0, link1, link2, link3, link4) and given them each an ID of (0,1,2,3,4) - respectively. I used to be able to do something like this:
Code:
this.onRollOver = function(){
if(this.ID != _root.selectedLink){
this.gotoAndPlay('in');
}
[code]....
View 1 Replies
Dec 8, 2010
I've been trying to find a solution to this for a while, but I haven't had any luck.I'm making a menu system that uses sliding movie clips instead of separate pagesbut when you click on the 'study at UWS' button, the nested slider kind of goes nuts, until you press on of the side buttons.
View 3 Replies
Feb 17, 2004
I need help coding this menu system and cant find any tutorials or templates on multi level (4) drop downs. I dont know weather to make everything a movie clip and load the mc's or to place buttons inside a movie clip. Everthing will be onrollover.
View 1 Replies
Aug 7, 2009
I got a textfile who i am reading on a serverside script and passing it as a script to my client side as3 code. The problem is that i am using characters like ä,ö,ü,ß and this isn't well displayed. I tried System.useCodePage but the compiler complains about : 1120: Access of undefined property 'System'. It doesnt matter if I tried this on the first line of the 'Action' in the first scene or in the first line of the first .as file i am loading. (btw i am only working with .as file and not in the timeline). When i am importing flash.System.* the compiler complains he dont know useCodePage.
View 3 Replies
Feb 18, 2011
I just got cs5 and this is the script I normally use for certain mouse over events. I want my button to tell a certain movie clip to play a certain frame.
//MOUSE OVERS
on (rollOver) {
tellTarget ("culture") {
[code]....
Why doesnt this work?
View 4 Replies
Feb 23, 2005
can you help me make this work[URL]..I need that the buttons, under the tellTarget moviclip, to actually work.
View 2 Replies
Apr 13, 2010
I have two swf's called test1.swf and test2.swf.Can I open BOTH swf's in DIFFERENT players (not loading test2.swf in to _layer1 of test1.swf), and click a button in test1.swf to play a mc in test2.swf? or possibly pass variables from test1.swf to test2.swf.
View 6 Replies
May 20, 2004
how do you specify the target path using "tellTarget"?Ex. The target movie clip is on the main timeline but the "tellTarget" script is on another. How would I code this? (or should I just use the standard "gotoAndPlay"?)Is tellTarget really even relevant anymore? It seems to me that with the release of FMX 2004, Macromedia advocates using gotoAndPlay more than tellTarget. Why would you use tellTarget when gotoAndPlay does essentially the same thing (or does it?)?
View 4 Replies
Apr 26, 2005
I have a button inside a movieclip inside another movieclip that, when it is released, it changes the frame of the main movieclip. I am using tellTarget like this:
[Code]...
View 4 Replies
Feb 15, 2006
I read Kirupa's article on the telltarget command and have duplicated it in my own project i am working on. but when I click on the button contaion the tell target, I get an error which says:Target not found: Target="/landmenu" Base="_level0"Maybe one of you may know the answer to this.
View 2 Replies
May 31, 2007
I have a little problem, I have a scene containing about 30 movieclips (all with a unique instance name!)
I want to call all movieclips at once, on a specific keypress - ex. when I press the key "a", I want to tell one clip to go to frame 2, and all the rest to go to frame 1
I know how to do this the "hard" way, by writing all 30 actions on each key, but I'm looking for an easier way,
View 1 Replies
Dec 27, 2007
In this file are two movies, "display" and "nav slideshow" "nav slideshow" consists of a scrolling toolbar that displays 6 buttons at a time. Clicking on one of these buttons is then supposed to load a frame with the appropriate content in the "display" movie. For the longest time, I couldn't figure out the proper syntax until I came across the Kirupa tutorial on Tell Target & More Tell Target. So I finally got the buttons in "nav slideshow" to load the right content in "display". That was all well and good, but the gallery is designed to load as an external movie into the main website. When I tried this, the code no longer worked. The syntax for the actionscript I have now is:
[Code]...
View 1 Replies
Apr 11, 2004
In the Advanced Rollovers tutorial found here at kirupa.com, I used the followingactionscript on one of the buttons as instructed in the tutorial (it worked fine):
First Button
on (rollOver) {
tellTarget ("/rollover") {
[code].....
View 2 Replies
Apr 14, 2005
I am attempting to apply the tellTarget script (using kirupa's tutorial as a reference) and I get the following output error:
Target not found: Target="/security" Base="_level0"
I named the movieclip "security" (without the ", of course), and applied the appropriate script to my button but I keep getting that error.
[code]...
View 5 Replies
Jun 11, 2010
I am working on a portfolio in flash which dynamically defines the target of the buttons. When a button is click an external swf is loaded, and the button sends the value of a variable to the loaded swf. So far I got it to work as I want it to, BUT the ouput-panel keeps giving the message:
Target not found: Target="this._parent.project" Base="_level0.button_1"
I am using this code:
on (release) {
this._parent.project.loadMovie("project.swf");
tellTarget ("this._parent.project") {
pnumber = a;
}}
The "pnumber" var is used in de project.swf to define a folder. "a" is a var with a numeric value. I know the tellTarget is an old-fashioned way of scripting, but so far it is the only piece of script that actually does what I want it to do (except for the error-message)
I tried:
Code:
on (release) {
this._parent.project.loadMovie("project.swf");
this._parent.project.pnumber = a;
}
But this resulted in an undefined var in my target clip, while the tellTarget did return the value for 'a'/'pnumber'.
View 1 Replies