Menu buttons live on stage

I am no longer able to edit the menu buttons on my stage.
If I click on the buttons layer tab all buttons are
selected, but if I then try to select an individual button it just
takes me to the corrosponding page and will not select.
Please assist
Thanks

Hmm... this is very strange.
If they are all placed in one layer, try rightclicking them
when they are marked, and choose disribute to layers.
If u grouped them, try ungrouping...
If none of these things works, I really don't know what could
be wrong.
U can try posting ur .fla, and I'll see if I can help!

Similar Messages

  • Does live streaming video disable event of a button on the stage?

    When a video is streamed from flash Media Server then the
    event assigned to any button on the stage doesn't work at runtime,
    Code example:
    var myNC:NetConnection = new NetConnection();
    myNC.connect("rtmp://server.domain.com/application");
    var myNS:NetStream = new NetStream(myNC);
    myNS.play("myNStream");
    But when the video is streamed without connecting rtmp URL
    and just requesting normal URL, the event of button works.
    Code example:
    var myNC:NetConnection = new NetConnection();
    myNC.connect(null);
    var myNS:NetStream = new NetStream(myNC);
    myNS.play("stream.flv");
    The video streaming is done using NetConnection and NetStream
    class in ActionScript 3.0.
    Does anyone know What's the matter?

    There is no straightforward way in LabVIEW to do on-the-fly H.264 compression.  If you want to send images over TCP, you can do so by converting the image to an array, flattening the array to a string, sending it over a TCP or UDP connection, then on the receiving end you unflatten from string to array and convert the array back to an image.  You can reduce the resolution of the image using the IMAQ Resample VI before you convert the image to an array.  Look up the UDP and TCP examples in the NI Example Finder to see how to create the sender and receiever VIs.
    www.movimed.com - Custom Imaging Solutions

  • Menu Buttons not working

    I have produced a DVD from movies made in imovie HD 6.0.3 using iDVD version 6.0.4 and find that the buttons cannot all be selected by the DVD player remote control and also the buttons do not appear to be navigated in the correct order. I would appreciate some advive, please.

    Different themes seem to work differently, but in general I have found that the buttons in iDVD created DVDs don't always behave like commercial DVDs in respect to what happens when I hit buttons on my DVD player remote. It been that way as long as I remember.
    iDVD includes MANY simplifying assumptions that make things easier for home users. If you want full control of what the menu buttons do, you need something like DVD Studio Pro. Most of us just live with the 'quirks'.

  • 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.

  • Menu button doesnt work

    All of a sudden the menu button stopped working. It was fine one day then I put the ipod on charge, several days later when I tried to use it again the Menu button no longer works...
    Actually I just realized that the Play/Pause button doesnt work correctly either. When you push and hold it it does not turn the device off anymore although it would still pause/play the songs. The forward/reverse work ok.
    I tried resetting the Ipod using the updater and that didnt help. I also tried Menu + Select ... strangely enough it resets the device but after it resets the Menu key doesnt work.
    Has anyone experienced this problem?
    I submitted a service request. Is there any way of modifying the service request since I just realized that the play/pause button is screwed up also?
    Finally, when you turn the hold on/off is that supposed to turn the backlight on/off as well? I never paid attention to it but now when I turn hold on that also turns the backlight on...is that screwed up as well?

    I am having a similar problem with my mini - it turns on fine and will scroll through the menus, but will not respond by going back through the menus. Instead, it freezes on a screen and does not respond to anything except resetting it (menu & select button). Doesn't seem like the proper way to navigate through the screens and is completely frustrating. I was ready to cry yesterday at the gym because it wouldn't work and didn't know the reset "trick" until 3 hours later! I have also had many problems turning it off too. My brother who owns a regular iPod thinks I am crazy but at least I am seeing people out there with similar problems.
    On another note, I have to say I am completely disappointed with Apple. The company loves to portray this user-friendly persona, but in truth it is not that way at all. I received my mini in May and have just started to use it full force this month (October) ... now my 30-day phone support has expired and if I want "live" help I have to pay $50 for extended service. That's bull - I'd like some real answers but have been relegated to chat boards (no offense) and trying to troubleshoot the problem myself by finding close but not exact postings. It seems like such a deceptive bait & switch ploy by Apple. I am tempted to send my mini back for service but just read on the web site that I could be charged up to $100 for service. Again, sounds very sneaky so not sure if I should take the risk or live with a highly annoying product defect. Any suggestions?

  • Spry, horizontal menu, need all menu buttons on one line

    hi in DW CS4I would like to understand why the spry menu that I have doesn't line up on a straight line horizontally. sometimes it lines up correctly in DW, but when I either go to live view or publish it, one of the menu buttons goes on the next line. If they are all on the same line, sometimes the menu does not go to the end of the other side of the div tag that it is inside of. If you have an article or any tips that you may have, please do share as i am going insane. I guess I should stick to CSS, but I often have the same problems as well.
    Thank you.
    I currently do not have  URL for this website.
    Please see the code attached to this post.

    Simply, your menu list items are too wide (altogether) to fit on the same line.
    I see that you have defined your div#container as 1000px, and your div#nav_bar as, well, it will default to 1000px. Then you have set your MenuBar to 80% of that width, and your list items as 16.8% of that.
    So far, everything is flexible.
    When you get down to ul.MenuBarHorizontal a, however, you have set padding: padding: 0.5em 0.75em; If you change your padding units to percentages, you should be able to find acceptable measures that will allow your list items to remain on one line.
    Keep in mind that, as the following references notes, in some browsers padding is measured in addition to the stated width of your element:
    http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug
    So make sure ALL your percentages add to 100%...including the horizontal padding (for both sides!) and the width (don't add in the vertical padding...that could be left as is). Actually, add them up to slightly less than 100% for comfort. If you get a gap at the end of the menubar, center the menubar and apply a background to the containing div.
    Beth

  • Can you change the color of menu buttons dynamically?

    Post Author: DanH
    CA Forum: Xcelsius and Live Office
    Hello, Newbie Here,
    Built my first Xcelsious front end and linked to two personnel databases.  Everything works just fine.  The outputs on this particular visualization generate completion statistics for 12 divisions and a 13th for combined.  Don't know enough about the software yet to know whether I can make the menu buttons appear in red for those that have not accomplished a 100% compliance to the task being tracked?  This would make it visually easier for upper management to click directly on the division menu buttons in red, rather than have to click on all of them to see which divisions haven't achieved completion.  Also, wouldn't hurt to be able to turn the other menu buttons green for those that have completed.  Any ideas are appreciated, really scratching my head at the moment.
    Thanx,
    Dan

    Post Author: amr_foci
    CA Forum: Xcelsius and Live Office
    i dont think you can change the objects' color on runtime for the crytsal xcelsius

  • Clickwheel/Menu buttons stopped working + ASP/Warranty question

    Today, my year old 2nd gen nano's clickwheel and menu button stopped working. The hold button works, Itunes sees the thing, disconnecting the headphones does what it supposed to do and everything appears to be in order, except for the buttons. Neither resetting, nor restoring the software did resolve the issue and I am left with a small, elegant, brushed aluminium finished brick with music in it.
    Luckily, an Apple ASP isn't particulary far from where I live and I could and probably should bring it there. However, I am currently in a country that is not the one I bought the Ipod in and my purchase receipt and anything else that might have came with it is some 3000 km away.
    Does anyone know if bringing just the player to an ASP (it does have a serial number) has any remote chance of getting a warranty repair? And, if not, is it worth it even bothering with the repair, in terms of cost?

    Hi Kevinsen and welcome to the BlackBerry Support Community Forums!
    I would suggest performing a backup of your BlackBerry® smartphone then reloading the software as shown in the article below:
    KB11320 - How to perform a clean reload of the BlackBerry Device Software using BlackBerry Desktop M...
    or
    KB19915 - How to perform a clean reload of BlackBerry smartphone application software using BlackBer...
    Thanks
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • TabPane- menu button- items.textProperty

    Hi all ,
    if i change the value of the textProperty for a  tab after the TabPane/Tab is initialized the items shown by clicking the "menu buttons"  - (API-Docs4TabPane:"When the number of tabs do not fit the TabPane a menu button will appear on the right. The menu button is used to select the tabs that are currently not visible.") - are not updated.
    Is there way to get these items? Any ideas?
    thanks Michael

    This looks like a bug. You may want to file one here: https://javafx-jira.kenai.com/secure/Dashboard.jspa
    under “runtime” if one isn’t already filed. You can use the following as a workaround.
    import javafx.application.Application;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Tab;
    import javafx.scene.control.TabPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    public class TabpaneTest extends Application {
        @Override
        public void start(Stage primaryStage) {
            final TabPane tabPane = new TabPane();
            final Tab red = new Tab();
            red.setText("Red");
            final Rectangle recRed = new Rectangle(200, 200, Color.RED);
            red.setContent(recRed);
            red.textProperty().addListener(new ChangeListener<String>() {
                public void changed(ObservableValue<? extends String> observable, String oldValue, String newValue) {
                    System.out.println("New text: " + newValue);
            final Tab black = new Tab();
            black.setText("Black");
            final Rectangle recBlack = new Rectangle(200, 200, Color.BLACK);
            black.setContent(recBlack);
            final Tab ylw = new Tab();
            ylw.setText("Yellow");
            final Rectangle recYlw = new Rectangle(200, 200, Color.YELLOW);
            ylw.setContent(recYlw);
            tabPane.getTabs().addAll(red, black, ylw);
            red.textProperty().addListener(new ChangeListener<String>() {
                public void changed(ObservableValue<? extends String> observable, String oldValue, String newValue) {
                    tabPane.getTabs().setAll(red, black, ylw);
            black.textProperty().addListener(new ChangeListener<String>() {
                public void changed(ObservableValue<? extends String> observable, String oldValue, String newValue) {
                    tabPane.getTabs().setAll(red, black, ylw);
            ylw.textProperty().addListener(new ChangeListener<String>() {
                public void changed(ObservableValue<? extends String> observable, String oldValue, String newValue) {
                    tabPane.getTabs().setAll(red, black, ylw);
            VBox root = new VBox(5);
            root.getChildren().addAll(tabPane);
            Scene scene = new Scene(root, 100, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            red.textProperty().set("albom");
        public static void main(String[] args) {
            launch(args);

  • MENU button doesn't work and iPod won't turn off!!

    For some reason, my menu button won't work nor will my iPod turn off when I hold down the play/pause button.
    I've reset it, updated it, restored it and nothing is working. I bought it in the States last year so have no idea how the warranty works or where to get it serviced since I don't live near London.
    Any help would be appreciated

    Ring your local Apple dealer, My older mini done the same thing several times before it just died on me and never turned back on. So if its still covered under warrenty i seriously think you should ring apple and get it serviced to see whats wrong, it could be just a fault with the click wheel
    Try letting the battery run completly dead, then put it into a Wall charger or computer USB cable and then move the hold on and off, then try reseting it by pressing the menu and select buttons at the same time.

  • Scrolling menu panel scrolls whole stage content, how to restrict EventListener to mouse.y 90 ?

    hei folks,
    the snippet attached works great, it scrolls (parallaxed) my
    menu horizontally left to right, when I move my mouse horizontally
    over the menu panel.
    But if I klick on the menu buttons nested inside this menu
    panel, they do appear, unfortunatly does the content also scrolls
    horizontally if I move to the menu to select another Button :(
    I am not able to modify this code-snippet from user kglad,
    that it doesnt scroll the whole stage but the panel itself.
    Can someone please give me a hint, on this menu I have spent
    hours, bloody learn curve.
    source of this code: user
    kglad - thank you very much kglad btw.
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=665&threadid =1324923&highlight_key=y&keyword1=scroll#4807043

    thank you very much, even though the following problem
    remains, I'm sure that there is just a minor misconception of mine:
    this mc is horizontally scrolling a menu if the mousesY is 90
    and 250 (its row of buttons is longer than the stage) the buttons
    and their common timeline are nested inside the front_mc. if I go
    sidewards over the menu and its scrolling left/right & I hit a
    button the content is drawn, but when I head back to the menu and
    it's scrolling, so does the drawn content analogue to the menu
    (synched).
    I must have organized it wrong.
    front_mc.addEventListener(MouseEvent.MOUSE_MOVE,f);
    var t:Timer=new Timer(30,0);
    t.addEventListener(TimerEvent.TIMER,moveF);
    function f(e:MouseEvent) {
    if(root.mouseY > 90 && root.mouseY < 250) {
    t.start(); }
    else {
    t.stop();
    var speed:Number = .9;
    function moveF(e:TimerEvent) {
    front_mc.x
    =speed*front_mc.x+(1-speed)*(stage.stageWidth-front_mc.width)*root.mouseX/stage.stageWidt h;
    back_mc.x =
    speed*back_mc.x+(1-speed)*(stage.stageWidth-back_mc.width)*root.mouseX/stage.stageWidth;
    if (Math.abs(front_mc.x-
    (stage.stageWidth-front_mc.width)*root.mouseX/stage.stageWidth)<1
    Math.abs(back_mc.x-(stage.stageWidth-back_mc.width)*root.mouseX/stage.stageWidth)<1)
    front_mc.x =
    (stage.stageWidth-front_mc.width)*root.mouseX/stage.stageWidth;
    back_mc.x =
    (stage.stageWidth-back_mc.width)*root.mouseX/stage.stageWidth;
    t.stop();
    e.updateAfterEvent();

  • My menu button is working like the play/pause button

    What should I do? Restoring it didn't work when I did it with iTunes and I can't restore it on it's own because the menu button doesn't work properly.

    Hello DatCanadianGuy,
    It sounds like you are unable to use your Menu button as expected because it acts as if it were a play/pause button. I would try restarting the device first by holding the actual play/pause button down to see if that turns it off.
    If it does not, and you have done the restore per this article:
    How to restore your iPod:
    1. Make sure you've reinstalled the latest version of iTunes.
    2. Open iTunes, and then connect your iPod to your computer.
    3. After a few moments, it will appear in the source list in iTunes. If the iPod's display doesn't show "Connected" or "Do not disconnect" you may need to put the iPod into disk mode to proceed.
    4. Select your iPod in the source list and you will see information about it appear in the Summary tab of the main iTunes windows.
    5. Click the Restore button. You will be prompted with one or more restore options that may prompt iTunes to automatically download of the latest iPod Software. The 4 possible restore options are:
    Restore Option 1: Restore - Restores with same iPod Software version already on iPod.
    Restore Option 2: Use Same Version - Restores with same iPod Software version already on iPod even though a newer version is available.
    Restore Option 3: Use Newest Version - Restores with the latest iPod Software on your computer.
    Restore Option 4: Restore and Update - Restores with the latest iPod Software on your computer.
    Note: For Mac users, A message will appear prompting you to enter an administrator's name and password.
    6. A progress bar will appear on the computer screen indicating that the first stage of the restore process has started. When this stage is completed, iTunes will instruct you to leave iPod connected to your computer to complete restore.
    7. During the stage 2 of the restore process, the iPod will show an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remains connected to the computer or iPod Power adapter during this stage. Note: The progress bar may be difficult to see since the backlight on the iPod display may be off.
    8. After stage 2 of the restore process is complete and the iPod is connected to the computer, the iTunes Setup Assistant window will appear asking you to name your iPod and choose your syncing preferences similar to when you connected your iPod for the first time.
    From: iPod classic Troubleshooting Assistant
              http://www.apple.com/support/ipod/five_rs/classic/#
    I would next seek service for the iPod:
    Service Answer Center - iPod
    http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipod
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Menu button not working

    I've got a 6gb mini, had it since Sept 05. Yesterday the menu button stopped working, so I can't choose what music it plays, it only plays on shuffle as I can't get back up. I haven't done anything to it so I wondered what to do. I got my iPod in the US but I live in the UK. I bought the Applecare Protection Plan when I got it but forgot to enroll it, so I don't know if it's still valid. It should still be covered under the protection but I don't know if I've left it too late to register it. What do I do?

    If doing a Restore and reset do not help, very likely a hardware issue
    In case your iPod is no longer covered by the warranty and you want to find a second repairing company, you can try iPodResQ at your own risk
    http://www.ipodresq.com/index.php

  • Rotating Menu - Buttons don't work inside MC's

    Hello,
    This is my first post here and it would be great if I could
    have your help to solve this little problem:
    Flash CS3 | AS2 | Rotating Menu
    I'm creating a small animation in which I have a clock-like
    rotative menu.
    I found the code for this in the internet and made some few
    adjustments (mainly just took somethings I didn't needed out)
    In my file I have 6 circles that are all movieclips that make
    part of a circular menu that rotates everytime you click on one of
    the circles. Those movieclips are not on the stage, only on the
    library, and are being "pulled" into action by the actionscript.
    I need those movieclips to act as menu buttons, so I made a
    button inside each one of them.
    The problem is that the buttons don't work. They don't do
    what they are suppose to (load another movieclip). The solution
    must be quite simple because it doesn't make sense not to work, but
    I'm unable to get it...
    In the original file they worked as buttons that linked to an
    URL but I removed that because I didn't need it. Just need them to
    act as normal buttons and play another MC...
    Do you have any idea why this happens?
    Does it have anything to do with the fact that the circle
    movieclips that contain the buttons are not actually on the stage?!
    The code I'm using in the buttons is rather simple:
    on(release){
    movie1.play();
    I would appreciate your help on this!
    Thank you,

    Hi Odisey2,
    I appreciate the time you took to try to help me!
    I only have 1 frame in my stage, and its the one that
    contains the actioscript code.
    I also have on stage the MC i'm trying to make the button
    play. The first frame of that MC is empty and has a stop, so that
    its not visible at first.
    Then I wanted that when you click the button (the onde that
    is inside the MCs that are being "pulled" by the code I sampled) it
    would play that MC on stage.
    The code I'm using in the burron is pretty simple:
    on(release){
    movie1.play();
    I've tried to put "_root" before, like this: "_root.movie1"
    but it doesn't work as well.
    Any other idea?
    Do you think it has anything to do with the fact that the
    circle movieclips that contain the buttons are not actually on the
    stage?!
    Thanks,

  • First focused button nudges the stage upwards?

    Hi,
    I'm testing a Flash Lite (3+) application in full screen on a Nokia E71.
    I have a list of various sized movieclips on a page (scrollable page, I've built my own UI).
    These movieclips are acting as buttons (triggered by "onPress" functions).
    I have a scrollbar anchored to the right side of the page, showing how much content sits below the fold. This scrollbar's track height is set to the stage's height, so it'll always fit snug from top to bottom on the right side of the page.
    If the first button hangs over, or sits below the fold, Flash Lite nudges my whole content up to show that button clearly when it's focused for the first time.
    But no "_y" postion data seems to have changed for me to programatically nudge it back again.
    It's like the _root of the Flash Lite movie has had it's _y position nudged upwards by the difference between the fullscreen screen height and the regular (with soft key and title bar) screen height.
    Any ideas what's going on, and how I can override it?
    Cheers,
    - James.

    Hi,
    The problem has been solved by "fp_david" on the Forum Nokia discussion boards:
    http://discussion.forum.nokia.com/forum/showthread.php?p=680306
    The simplest is to change the stage size so it is smaller than the screen of the phone you’re running it on. In cs3/4 got to the Stage’s properties menu and change the Stage’s default width and height to 50. This is the easiest fix.
    Set the stage size to, say, 10x10, and the nudging ceases.
    Cheers,
    - James.

Maybe you are looking for

  • Opening a report designed in Report 10g in Excel format

    I have passed the desformat parameter as spreadsheet but still i find unnecessary blank cells between columns and rows. The report is created in Report Builder 10g manually without using the Report wizard. I have tried to remove all the spaces betwee

  • How to read data from success function

    Hi, In the success function of my POST method, I want to read a property from the data parameter. This is my code: success : function(data, response) {                                 console.log(data);                                 alert("succes")

  • Copying selection criteria in XLR advance report builder

    Can anyone tell me if it is possible to copy columns, rows or cells in the XL Reporter advance designer and copy the selection criteria as well? Thanks

  • InDesign CC crashes while starting

    I did not use ID since 1 or 2 weeks, but now it crashes. Any idea?

  • WebCenter Content filter question

    Hi all, WebCenter Content provides the following three filter that can customize the query WHERE clause and alter the behavior of metadata changes. preDetermineWhereClause postDetermineWhereClause checkMetaChangeSecurity As the following document sai