Play timeline from inside symbol

I saw a post on this issue but was not sure where to put the code I read there. I would appreciate if you can tell me how exactly to edit this code line to work
I am inside a symbol "oneAnimation". At the end of the animation "backBtn1" appears. Inside this button, I have added an event on click. I want the stage timeline to play from the label "startNumber" when this button inside the symbol is clicked.
So far it's not jumping back to the main time line.
sym.getComposition().getStage().play("startNumber");

The label seems to be in that symbol, so all you need is sym.play('startNumber');
You code is to play a label on the same timeline.
See my blog on edgehero.com
http://www.edgehero.com/articles/scope

Similar Messages

  • How do I return playback to the main stage timeline from a symbol?

    In trying to learn Edge, is there a way to return playback (play from) once an animation is complete within a symbol?
    For instance, I have the main timeline that shows a symbol animation on creationcomplete, but when the animation is finished in the symbol and I hide the symbol, the main timeline is no longer playing. What would I need to do to return playback control to resume playback of the main timeline? I have a label I would like to play from on the main timeline, but I have not found a way to call the main timeline from within the symbol.
    This was something common in Flash.
    Thanks for your help!

    Hi escargo,
    Say we use two symbols object1 and object2.
    The main timeline has an interpolation on object2 from label “mainAnim“. Its autoplay property is set to false : the playhead stops at 0 ms.
    A third symbol nested contains the interpolation on object1. Its autoplay property is set to true, so it plays directly.
    At the end of this transition, there is a trigger (pseudo-track just below the timeline)
    sym = the current symbol nested
    sym.getComposition().getStage() = the main timeline (in Edge the stage is a symbol)
    sym.getComposition().getStage().play(‘mainAnim’); = play the main timeline from the given label.
    You can download the example here : https://app.box.com/s/6svvskydh952dfxbr3xb
    Gil
    PS : threads with examples for neigboring problems
    http://forums.adobe.com/message/5410456#5410456
    http://forums.adobe.com/message/5192205#5192205

  • Target Stage and append iframe from inside symbol????

    Having trouble again. I am SLOWLY getting use to the CC 2014 thing =).
    Now I need to be able to target a Symbol on the stage from within an element inside a symbol and append it with an <iframe> and pass attributes to the iframe.
    I have a file -- please refer to the  videoui symbol and whitewater1.click and whiteawater2.click actions in that symbol (link below (Drop Box)
    Here's what I have so far...
    // insert code for mouse click here
    // Go to a label or specific time and stop. For example:
    // sym.stop(500); or sym.stop("myLabel");
    sym.stop("videotwo");
    // Change the text in an element
    sym.$("video-text").html("Video by: TheNigglesbear");
    var youtubevidtwo = $("<iframe/>");
    sym.getComposition().getStage().getSymbol("vcontainer").append(youtubevidtwo);
    youtubevidtwo.attr('type','text/html');
    youtubevidtwo.attr('width','616');
    youtubevidtwo.attr('height','347');
    youtubevidtwo.attr('src','http://www.youtube.com/embed/eqzwoIQseyA?rel=0');  // url/Video_Id
    youtubevidtwo.attr('frameborder','0');       // 1 | 0
    youtubevidtwo.attr('allowfullscreen','0');   // 1 | 0
    This same code -with different path to symbol of course- works fine on the stage document.compositionReady, but not sure how to target the videoui and append the iframe and its attributes to it from inside another symbol.
    Help please -- there really needs to be more ADVANCED examples of possible methods of targeting. I find a lot about targeting symbols inside of symbols,or Stage to symbols, but not much on symbols to stage to another symbol also on the stage.
    Thanks in advance.
    Dropbox - videoPhotoUI.zip

    dharmk
    Thanks for the input. Just what I needed, I had to adjust my thinking, but got it to work because you took the time to look at my file and offer the help. Really appreciate it!! Here's how I made it work (for all three) video buttons:
    var container = sym.getComposition().getStage().$("vcontainer");
    container.find("iframe").remove();
    var youtubevidtwo = sym.getComposition().getStage().$("<iframe/>");
    sym.getComposition().getStage().$("vcontainer").append(youtubevidtwo);
    youtubevidtwo.attr('type','text/html');
    youtubevidtwo.attr('width','616');
    youtubevidtwo.attr('height','347');
    youtubevidtwo.attr('src','http://www.youtube.com/embed/eqzwoIQseyA?rel=0');  // url/Video_Id
    youtubevidtwo.attr('frameborder','0');       // 1 | 0
    youtubevidtwo.attr('allowfullscreen','0');   // 1 | 0

  • How to access symbol on main timeline from nested symbol

    I did read the the edge JSAPI but still no way to make it work.
    Very simple use: you click on a button, a window appears. the button that makes the window appear is supposed to hide some elements which it does. HOWEVER when I want to use a close button within the symbol (window) to make these symbols appear again, it doesnt work.
    From inside the symbol I tried:
    sym.getComposition().getStage().getSymbol("openTabButtBlack").show();
    Doesnt work.

    sym.getComposition().getStage().$("openTabButtBlack").show();

  • Changing stage timeline from inside a movieclip button

    I create a movieclip button, and I want to change main timeline from it. what should I do ?
    Is it useful to use MovieClip(root).gotoAndPlay(...) ; ?
    Is there any other way to change main timeline?

    Example:
    Add something to trigger the event in the child:
    dispatchEvent(new Event("eventTriggered"));
    In your parent swf, listen for the event using a listener for the child with a corresponding event handler...
    childName.addEventListener("eventTriggered", eventHandler).
    function eventHandler(event:Event):void {
        trace("child dispatched an event");
         // gotoAndPlay(etc);

  • Script to control main timeline from inside MC?

    This is such a newb question and I'm sorry! I have a Movie
    Clip on the main timeline and inside that MovieClip are several
    buttons. I want the buttons to go to specific frames in the main
    timeline. I have:
    on (release) {
    gotoAndPlay("PowerPoint");
    I know there needs to be something in there to tell it the
    main timeline. I searched for this very basic, simple question and
    couldn't find anything.
    Thanks for any help.

    if your buttons are true buttons use:

  • Play a frame in timeline from inside 2 movieclips.

    Hi. I have tried everything but it just isn't working.
    On my main timeline I have a MC called "rainbow." Inside "rainbow" I have a MC called "greenbow."
    Inside "greenbow" I have a MC called "meetbtn2"
    I want it to play frame 134 on the main timeline when you click "meetbtn2."
    my code inside greenbow is as follows:
    meetbtn2.onRelease = function () {
    _root.gotoAndPlay(134);
    however it doesn't work! is it because i am inside two MC's?
    I have also tried
    _root.rainbow.greenbow.meetbtn2.onRelease = function () {
    _root.gotoAndPlay(134);
    any help? Thanks!

    i believe you miss understood me. the actionscript and the MC are on the same frame on the same timeline.
    however
    on the main timeline: the MC "rainbow" doesn't appear til frame103
    inside "rainbow": the MC "greenbow" doesn't appear til frame 48
    inside "greenbow": the movieclip that acts as the button"meetbtn2" doesn't appear til frame 11
    however all instances have been named correctly and all actionscript is on the same frame-space as its objects....

  • Control a symbol timeline from another symbol timeline on specific condition

    Hi! I have 8 animated symbol that plays on clicking over them on the main stage and i want, for example, that if symbol 1 animation is complete and i click on symbol 3, symbol 3 plays forward and symbol 1 plays on reverse and vice versa just like this: http://www.framefarm.net/eugenio/edge/example/example.html
    please help!

    I put together a Composition that I think does what you're asking. it's not elegant, but it works.
    in the timeline of Symbol_1
    place stop() triggers at the start and end
    in the same triggers, set a Symbol variable that states whether the animation has finished i.e. sym.setVariable("isDone", "false");
    place a trigger on the rectangle to play() or playReverse() depending on an if() statement about the variable
    in the timeline of Symbol_3
    place stop() triggers at the start and end
    in the same triggers, set a Symbol variable that states whether the animation has finished i.e. sym.setVariable("isDone2", "false");
    place a trigger on the rectangle to:
    declare 2 new variables, which use sym.getVariable() to get isDone and isDone2 as above,
    play() or playReverse() depending on an if() else if() else if() statement about both variables
    I used the relative string to get the local variable and absolute string to get the variable from the other Symbol, i.e.
    var myVariable = sym.getComposition().getStage().getSymbol("Symbol_1").getVariable("isDone");
    var myVariable2 = sym.getVariable("isDone2");
    I can send you the entire code if that helps.

  • Attempt to move main timeline from inside a movie clip breaks menu buttons.

    I am attempting to have the main timeline move from a stopped position over a movie clip to frame 1, where my start menu is.
    The code I'm using does move the timeline but in doing so it somehow breaks the 4 buttons I have in frame 1.
    My code in the movie clip:
    stop()
    function replayMovie(event:MouseEvent):void
    MovieClip(parent).gotoAndStop(1);
    Menu.addEventListener(MouseEvent.CLICK, replayMovie);
    My code in frame 1 of the main timeline:
    stop();
    function bo(event:MouseEvent):void
    gotoAndPlay(21)
    SoundMixer.stopAll()
    espesp.addEventListener(MouseEvent.CLICK, bo);
    function ho(event:MouseEvent):void
    gotoAndPlay(31)
    SoundMixer.stopAll()
    espeng.addEventListener(MouseEvent.CLICK, ho);
    function yo(event:MouseEvent):void
    gotoAndPlay(41)
    SoundMixer.stopAll()
    engesp.addEventListener(MouseEvent.CLICK, yo);
    function go(event:MouseEvent):void
    gotoAndPlay(51)
    SoundMixer.stopAll()
    engeng.addEventListener(MouseEvent.CLICK, go);
    The error output when I use my Menu button at the end of the movie clip.
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at SSubjunctiveProjNewgrounds_fla::MainTimeline/frame1()
    at flash.display::MovieClip/gotoAndStop()
    at SSubjunctiveProjNewgrounds_fla::Esp_5/replayMovie()
    Any help would be greatly appreciated.

    For the sake of space, I'll leave out all the package declarations and class declarations and just talk about the functions.
    First, the Game class, it has two functions.  The first one is the constructor function and it launches at the beginning of the game:  First the Game function:
    public function Game():void
    //Game code goes here
    }//Game
    We want to listen for someone to click the mouse on the MenuPage, so lets create a new MenuPage and add a listener to the button contiained within it.
    public function Game():void
    menuPage = new MenuPage;
    menuPage.startButton.addEventListener(MouseEvent.CLICK, startGame);
    addChild(menuPage);
    }//Game
    You will notice that before I declared a variable var menuPage:MenuPage, but that's all I did was declare it.  I didn't really make a new instance of it, I just set aside space for it.  In the first line within the Game function, I'm actually turning that variable into a new instance of a MenuPage.
    We don't have a picture of this imaginary menuPage instance, but lets' assume that in our MenuPage MovieClip in the library, we created a SimpleButton called startButton.  Here, I'm adding an EventListener that patiently waits for someone to click that button.  Once we receive that event, Flash is told to call the startGame function.
    As you get better at this, you'll get into custom events, and the eventListener for the button will exist in the MenuPage class file, or even in another class file that you create just for the button.  Something like StartButton.as  But for now, we can do it as above.
    Now the startGame function:
              public function startGame(evt:MouseEvent):void
    //Remove the start Page
    //Add the zombie
    //Add the gun
    }//startGame
    And we'll replace those comments with real code.  It follows along with what we just did above.
    public function startGame(evt:MouseEvent):void
    zombie = new Zombie;
    addChild(zombie);
    gun = new Gun;
    addChild(gun);
    And we also want to clean up some by removing the menuPage, and throwing out the eventListener.
    public function startGame(evt:MouseEvent):void
    zombie = new Zombie;
    addChild(zombie);
    gun = new Gun;
    addChild(gun);
    menuPage.startButton.removeEventListener(MouseEvent.Click,startGame);
    removeChild(menuPage);
    }//startGame
    Now our Game class is complete.
    The Zombie Class
    public function zombieWalk(evt:Event):void
    this.addEventListener(Event.ENTER_FRAME,zombieWalk);
    this.x = this.x + 10;
    }//zombieWalk
    Notice we've added a function to the Zombie Class.
    The first function adds an EventListener to the zombie.  We can use the word this and actionScript knows we're talking about the zombie that the class is written for.  This listener fires off every frame.  If our FLA file is set to 12fps, then 12 times every second it will call on the zombieWalk function.
    The zombie walk function moves the zombie 10 pixels to the right every time the function is called.
    On a more advanced level, you'll want to add animation in the MovieClip to move the zombie legs.  You'll also want to use Timer events to space out how often the funtion fires and not ENTER_FRAME events.  And you'll want to use a static constant to establish how far the zombie moves.  We have it now set to 10 pixels, but that can get irritating if we want to change that value later.  But again, baby steps.
    And finally, the Gun class
    public function Gun():void
    this.addEventListener(MouseEvent.CLICK, fireGun);
    }//function
    public function fireGun(evt:MouseEvent):void
    this.gotoAndPlay(2);
    }//fireGun
    First we add an EventListener for when someone clicks on the gun.  Once this happens, the listener calls on the fireGun function.
    The fireGun function takes advantage of the frames within the Gun MovieClip.  Say we have three frames in the Gun MovieClip.  The first is just a picture of the gun.  The second is the gun with a flash coming out of the nozzle.  And the third is the gun at rest again.  The line this.gotoAndPlay(2) sends the gun to the second frame with the flash graphic.
    For this to work, each frame in the Gun MovieClip has to have some stop and play commands.
    But.. you said no code on our timeline!! Liar!
    I know.  This is the exception.  You will need basic stop() commands and gotoAndPlay commands to loop animations.  Any MovieClip that has more than one frame will need something to control it.
    So our Gun MovieCLip has the following:
    Frame 1: stop();
    Frame 2: no actionScript... and I mean nothing, not even the words, "no actionScript"
    Frame 3: gotoAndStop(1);
    This will loop the gun to the beginning and wait for the next time the user clicks the gun.
    Advanced features of the Gun class might include a Bullet.as sub-class that creates a bullet MovieClip to fly across the screen.  Sound to play when the shooting takes place.  Object collision detection to see if the bullet hits the target.  And a means by which a custom event will tell the Game.as class that a zombie has been hit and it should be removed from the stage.
    As you go down the rabbit hole of ActionScript 3, you will find yourself at a point where it's just a matter of getting the syntax right for all the built in functions and classes.  Arrays, Loaders, casting variable types.. all that stuff will come.
    I hope this has been helfpul.  It's been on my to-do list for a long time.  When I first started out, no one could provide me with basic answers for how all these classes and whatnot worked.  After teaching myself AS3 for 2 years and reading a gabillion books, I think I've gotten to a point where I'm pretty comfortable with it all.

  • How do I recerence Movie Clips on the Main Timeline from inside a class?

    Hey everyone, this might be a stupid question but I thought
    I'd ask cause it's making me nuts. I'm all of 2 days into AS3
    (coming from not using Flash at all in YEARS) so feel free to
    consider me ignorant. I do have plenty of application development
    experience in other areas though.
    I can't seem to create a class that can reference an instance
    of a movie clip on my main timeline. I'd post code of what I've
    tried but I've gone through so many desperate edits & wild
    guesses that it was just garbled junk before I deleted it all.
    Basically here's how I figured Flash could work, though maybe
    it doesn't work this way at all.
    I'm assuming that with AS 3 being so big on being a true
    object oriented environment, I wouldn't need to mix my code and
    interface together. Preferably I'd be using the Flash authoring
    tools just to design my interface. Create a button... place it
    somewhere... give it an instance name. Roughly the equivilant of
    Apple's InterfaceBuilder for those of you that might be familiar
    with Cocoa development. I can see maybe having to put a few lines
    of ActionScript onto frame 1 (though really I'm hoping Flash would
    have a better method of kicking off the application at this point
    that using code tied to frames) to load my classes & such, but
    after that I'd like all of my code to be held in external class
    files.
    So maybe I've got:
    Interface.fla - My interface
    Button_1
    Button_2
    TextField_1
    Main.as - My main controller class using to handle all of my
    applications behavior
    SomeClass.as - Some helper Class
    SomeOtherClass.as - Some helper Class
    Main.as would have instructions in its initialization method
    to go ahead & attach events to buttons & initialize
    anything else that needs to happen when the application starts.
    From there on it would all be objects communicating back &
    forth. Button_1 would get clicked with would fire
    Main.someMethod(). Main.someMethod() would then do it's thing and
    set the value of TextField_1. All very clean & code is very
    separated from interface.
    Unfortunately I can't for the life of me figure out how AS3
    classes reference each other like that. There doesn't seem to be
    any kind of a global 'root' or '_root' I can use to locate any
    movie clips on the stage. I've searched the help & the web for
    any kind of simple tutorial but to no avail. My job has tasked me
    with building a flash app for a project but I'd really rather not
    have a tone of ActionScript just shoved into frame 1. That just
    seems... ugh! (::shudder::)
    Can someone maybe point me in the right direction here? I'm
    really willing to do my homework but I can't seem to locate the
    info I need to get started. Also, is there an ActionScript IRC
    channel or something maybe?
    Thanks,
    Cliff

    I worked with the problem last night and the solution I
    started coming to involved creating my own custom document class
    based off which extends MovieClip. My thought is that way I have
    access to the initialization routine of the timeline itself and
    that all of the elements on the main timeline should be
    "properties" of my custom class.
    Is this correct? Is there a down side to doing this & if
    so what is it & why?
    Also, just for my reference, the last time I did anything
    with ActionScript I think I was using '_root' to target the main
    timeline. WHat are the global variable names in AS 3? Is it just
    'root' & 'stage' or 'Root' & 'Stage' or what?

  • Controlling the root timeline from inside a MovieClip

    [preface] I'll apologize in advance. I'm a designer, not a
    developer. I know very little about actionscript so if you
    can help me out, please pretend like I know nothing.
    [/ preface]
    I just need actionscript to check the value of a variable
    when the end of a movie clip is reached and then call an action.
    Here's what I've got and it doesn't work. Please don't laugh.
    if (p == 1){
    tellTarget (_root) {
    play();
    else if (p == 0){
    stop();
    (the "stop" on the "else if"
    is referring to the movie clip's timeline, not the root
    timeline... in case you're wondering)
    Any help would be greatly appreciated. Thanks!

    No it's not a school project. Good guess though. It's
    actually a self-promo piece for the ad agency I work for. I'm an
    art director expanding my horizons. I would take a class or run
    through one of the good actionscript books but unfortunately, I
    don't have time.
    Thanks for the help again kglad.
    btw, I've used tellTarget successfully in a few projects in
    the last few months. I'm using Flash 8.

  • Airtunes Widget to play music from inside Logic Pro

    Hey Guys!
    I've been searching everywhere for a widget that lets you play music out of Logic Pro through Airtunes instead of just from iTunes.
    Any ideas?

    well, if anyone else has this problem i found it here
    http://rogueamoeba.com/airfoil/download.php

  • Orphan Menu Start Playing Timeline First Chapter

    Hi All,
    My Problem is i cant figure out where i am doing wrong.
    I have single timeline in my dvd project I import menu
    from the Encore Library did not set any action (mean the menu
    is orphan)when ever i preview from here it start playing timeline
    from the first chapter after 2 seconds.
    I tried several menues from the library but having same
    problem. when i check the project it shows error "orpahn menu"
    which is correct as i did not do any routing to any menu.
    (I am doing it with the help of Total Training Video step by step)
    Did anyone else have the similar problem.
    Thanks in advance.

    Mujeeb,
    Lets forget about Preview for a moment. Well get back to it, but not until youve done what follows. I want to make sure that I know what you have, what youve done and what you want with your DVD.
    Tell me if I am correct:
    1.) You have a DV-AVI file that you Imported (either as a Timeline, or created a Timeline from it). It was done/Imported first. This will automatically place it as Play First in the Flowchart.
    2.) You have a Menu that you Imported as Menu from either the Library or from elsewhere on your system. It has one Button. It now appears in the orphanage in the Flowchart.
    Right now, in the Flowchart Panel, you have the Disc icon (DVD Project, or whatever new name you gave it) with a black line going to the Timeline. You also have your Menu in the orphanage. Is this correct?
    You want this Menu to Play First, and then after a point in time to go automatically to your Timeline, or if the user pushes that one Button to go immediately to that Timeline. Is this correct?
    If so, hover your mouse cursor over the Disc icon. It will turn into the Pickwhip (little curleque icon). Drag this down to your Menu in the orphanage. It will replace your Timeline as Play First. There will be a little box below your Menu and it will say Button 1 (unless you changed its name). From this little box below your menu (remember, we are still in the Flowchart Panel), when you hover the mouse cursor over it, youll get the Pickwhip again. Drag it to your Timeline.
    Now, in your Flowchart, dbl-click on your Menu. Open the Properties Tab and look down to Duration (third line down). Set it to the length of time* that you want the Menu to be visible (unless the user hits the button). Uncheck Hold Forever. Loop Point should be set to None.
    Your Flowchart should now have the Disc icon with a black line to your Menu. There should be one blue line from the Menu Button 1 to the Timeline. This is what you want.
    Now, Preview the Project. I usually do this from the File>Preview on the Menu Bar at the top of the workspace. Alt-Ctrl-Spacebar will also do it. Your Preview should show the Menu, which will automatically go to the Timeline after the length of time you specified in the Properties Panel, unless you hit this Button before that time. Does this work?
    * Duration is Hours:Minutes:Seconds:Frames
    Hope I have been clear and that I am correct. If not, please tell me where I went off.
    Good luck,
    Hunt

  • Trying to show() and play() a symbol from inside another symbol

    Hi Everyone !
    I'm running into a problem which is getting me crazy.
    I have the following case :
    - 1 symbol (_Page_Background) containing an animation with the following trigger @0s :
    // Hiding the symbol
    sym.getParentSymbol().$("_Page_Background").hide();
    // Stop it
    sym.stop();
    - 1 element (B_TOYS), inside of a symbol (BUTTONS) with the following "click" trigger :
    // Showing the _Page_Background symbol
    sym.getComposition().getStage().getSymbol("_Page_Background").show();
    // Start playing it
    sym.getComposition().getStage().getSymbol("_Page_Background").play("INTRO");
    The Symbol _Page_Background starts hidden, like it should. But when I click on the button (B_TOYS), nothing happens. Although, everything was working correctly before I turned my buttons into symbols ..
    I guess the problems lies with the "show()" function, because I have other buttons that work properly but they don't show/hide anything, they just play()
    Am I missing something ?!
    Thanks in advance for your kind help !

    Hi Dimitri,
    Think of symbols as independent timelines that can contain other elements, or instances of other symbols. The Stage/main timeline is a symbol as well. Scripting calls are scoped to the symbol that the script is in. The keyword sym stands for the symbol that you're in with the script.
    So if your script is at the same level as what you are targeting with it:
    Use sym.$("elementName") to access an element's properties
    Use sym.getSymbol("symbolName") to access a symbol's timeline. If there's another symbol inside that symbol that you want to access, you'd use sym.getSymbol("symbolName").getSymbol("childSymbolName")...that's only two levels deep, but you can go as deep as needs be.
    If you're trying to access an element in a symbol, you'd combine these two, such as sym.getSymbol("symbolName").$("elementName")
    When your script is within a symbol and you want to access an element or symbol outside of the symbol timeline:
    Use sym.getParent() to get to any elements that are in the parent symbol (the symbol which contains the symbol you're calling from), which could be the Stage or could be another parent symbol
    Use sym.getComposition().getStage() from any symbol level to access things at the main Stage level.  You can also dive into a symbol on the Stage from any symbol using sym.getComposition().getStage().getSymbol("symbolName").
    All is explained in detail here:
    http://www.adobe.com/devnet-docs/edgeanimate/api/current/index.html
    hth,
    Joe

  • Control a symbols timeline from with in another symbol

    I just started using this product.
    I love it.
    I am currently building a project.
    I have a button inside of a symbol, and this symbol is on the stage.
    I am trying to use this button to start an animation from a label in a second symbol that is on the stage.
    I cant figure out how to amend sym.getSymbol("one").play("start");
    to say
    go outside of this symbol to the main stage and get the second symbol and then play it form the label.
    Or
    go outside of this symbol and get a symbol from with in the second symbol and then play it form the label.
    Can you help me with this.
    thanks again for the awesome product.

    I had on other question.
    I have a timeline full of symbols.
    Most of the symbols have nested buttons and symbols that responed to those buttons.
    I have the whole thing scrolling back and forth slowly.
    I want to be able to change the direction it scrolls relitive to the half of the project your mouse is hoverning over.
    I.E. hover over the right hand side and the timeline scrolls right and hover over the left hand side and it scrolls to the left.
    I can achieve this buy placing transperant symbols that cover each half of the stage and addind either play or play reverse respectively.
    But these transparent symbols block the symbolsand buttons and such that i have below them.
    So then i though i will put the transperant symbols towards the bottom of the heirocracy and as i suspected the symbols in front of the transperant buttons block them.
    is the some code i can add to the stage to achieve this?
    thanks a million

Maybe you are looking for

  • Error message in JDeveloper

    I keep getting the following error message when trying to execute a custom package: Error starting at line 1 in command: call xxnwu_bud_vacant_pkg.GET_POSITIONS ('31-JUL-2009', 3001) Error report: SQL Error: ORA-04063: package body "APPS.XXNWU_BUD_VA

  • This file does not appear to be a Photoshop file - Menu won't import

    I was searching on the forums and found that some other people have had this problem, but I didn't see any solutions. When I try to build my DVD from Encore, I get this error "This fiel does not appear to be a Photoshop file. I created my menu in Pho

  • Vendor "SAPGUI" Portal?

    The business would like to grant a Vendor access to our system via SAP GUI so they can monitor inventory, PO's and the like.  Think of Vendor Portal without the Portal. The challenge is limiting their access to only their "vendor" information (PO's,

  • Closing a window or frame in amenu application

    Sir, I am at present doing a project in java swing regarding preventive healthcare systems. I would like to let you know a problem i am confrontin now. The problem with my aplication is : It is a menu driven application (The previous application was

  • HT1430 Ringer function button not responding any ideas?

    The ringer button  is not responding to up or down.. I'm missing calls, however settings state it's operational and alarm is still working. I will try to reset and reinstall original phone setting. But what a pain in the behind. Any suggestions to tr