Play movie by clicking a button/shape

Hi
How to play movie by clicking a button/shape? The only option I found in keynote is playing movie by clicking the movie rectangle.
Thanks
zlf

I am using TimerTask in my JSP page to print some message:
<%
                  Timer timer = new Timer();
                  TimerTask monitorTimerTask = new Monitor();
                  timer.schedule(monitorTimerTask,1000,1000);
%>
<%!
     private class Monitor extends TimerTask{
          int i = 0;
          public void run(){
                   System.out.println("TimerTask ["+i+"]");
                   ++i;
%>And to stop the TimerTask daemon, I created the following function:
<%!
     public void stopTimerTask(){
          if(monitorTimerTask != null){
               System.out.println("Stopping the Timer Task");
               monitorTimerTask.cancel();
%>Now, I am trying to call funtion "stopTimerTask()" by click of a button in JSP page. The function is being called BUT the daemon keeps on printing the text message to the console. It means the above function is not able to stop the TimerTask.
What to do?
Please help!
Thanks,
sumit

Similar Messages

  • Playing multiple movies without clicking home button

    I want to create a piece of art containing multiple buttons. For example, an illustration of a field, where, if the user were to click on a bush, a rabbit's head would pop out briefly, then disappear behind the bush. If a lilly pad were clicked, a frog would pop his head out of water and again disappear. How can I allow the user to randomly click on the various buttons, triggering the associated movies to play, without necessitating that a "home" button be hit after each sequence?

    I can get each button to play the corresponding movie. After the movie plays, however, I would like the movie to automaticaly revert to the home state.
    In this way, the user could randomly click around on the image, triggering various movies when the appropriate buttons are hit. I have seen this done many times- I remember an an image of a hanunted house, for example. When the user clicked on a window, it would open and a ghost would look out. Without having to then click a home button, a further click on the door of the house would cause the door to open, and a mummy to lean out. I'm trying to avodi having to repeatedly hit a "home" button before additional button hits could trigger additional movie clips.
    I should probably mention that I've had to insert a stop command at the end of each movie clip, otherwise all the animations play sequentially, rather than one at a time, when a button is clicked. How do I tell Flash to procede from this stop command, at the end of each movie, back to home, so that further buttons can be pushed?
    Sorry if I've misunderstood your posting- I've been animating for several years on Flash, but have only started several days ago to use Actionscript 3 for interactivity, and am a complete novice, in that regard.

  • How to play music when clicking a button?

    Hello There
    Could someone help me a bit to get started?
    My first attempt is to just create a scene, in which clicking
    a button it starts to play a mp3 file. I did get it to start it to
    play as a backround music after reading the help file, and tried
    also find source code from internet and also here without success.
    So, could someone be so kind to give me a Lingo example code
    snipplet, which would start playing the music immediately without
    first importing the file (like streaming the file) if this is
    possible and also small instructions how to assign it to the button
    (so, not as a backround music).
    I just got the Adobe Director 11 couple of days ago, and my
    wife is starting to get angry for me for sitting with my NB all the
    evenings without any progress,,,
    Thanks, in case someone answers…

    Thanks Sean, here is some more info for your answer:
    Is it imported into a cast library, or is it an external
    file?
    I did try it to get working with an imported mp3 file and
    also I would like to add fuctionality to use it as a link.
    If it's an external file, do you need to give the user the
    option to
    choose a file from a list (or even a different directory), or
    will the
    sound file to be played always exist in the same (relative)
    directory
    with the same name?
    The best would be a possibility to choose the file, and if
    it's possible to set up a starting directory (like "My Documents\My
    Music" for example), so that could work as a mp3 player.

  • Cp8 Is it possible to initiate a different timeline to start playing once you click a button?

    A bit challenging to explain, but I'll give it a shot:
    If we take a rollover slidelet for example - It has its own "timeline" so you can basically display additional objects on screen separately from the main timeline.
    Is it possible to have the same effect when you click a button?
    So basically i want certain object to appear one after the other after I click a button.
    Thanks!

    Thanks for the explanation, but that's not what I meant exactly
    I'm not using any rollovers in the slide. Only buttons. The users can click on any button if they wish to. Once a button is clicked, I want certain objects to appear.
    I'm using advanced actions in order to display a group and hide the others. So when a user clicks on say button 1, group one appears on screen and the rest of the groups disappear (by the advanced action).
    The group that does appear, contain 5 elements that appear at once. I want them to appear one after the other in sync with an audio narration. I'm well aware about using the timeline to achieve this, however, the issue is that I don't have an individual timeline for the "group" (similar to the Gr_Vars) that you show in your pic. Even if I un-group it into objects then it consists of too many items to hide / show with advanced actions.

  • Playing Movie clip backward using buttons?

    Im trying to create a series of images that scroll acoss the page left and right using arrows at either side of the stage. The arrows use mouse over events to play a movie clip of the images foward and backward.
    There are a few issues I am having. I have a mouse over and mouse out events in place to start and stop the clip on to different buttons. However when playing the clip backward with my current script the mouse out doesnt do anything so the clip just keeps playing backward to the beggining. Once this has happened neither button then does anything.
    Another issue is once the clip has played foward once in total and I mouse over the same arrow button again it flicks back to the begginging of the clip.
    Here is my current scrpit:
    panel.stop();
    leftarrow_btn.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverHandler_7);
    leftarrow_btn.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_4);
    function fl_MouseOverHandler_7(event:MouseEvent):void
              panel.play();
    function fl_MouseOutHandler_4(event:MouseEvent):void
              panel.stop();
    rightarrow_btn.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverHandler_9);
    rightarrow_btn.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_7);
    function fl_MouseOverHandler_9(event:MouseEvent):void
       panel.addEventListener(Event.ENTER_FRAME, everyFrame);
    function everyFrame(event:Event):void
              panel.prevFrame();
    function fl_MouseOutHandler_7(event:MouseEvent):void
              panel.stop();
    Please Help!!
    Patrick

    use:
    panel.stop();
    leftarrow_btn.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverHandler_7);
    leftarrow_btn.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_4);
    function fl_MouseOverHandler_7(event:MouseEvent):void
              panel.play();
    function fl_MouseOutHandler_4(event:MouseEvent):void
              panel.stop();
    rightarrow_btn.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverHandler_9);
    rightarrow_btn.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_7);
    function fl_MouseOverHandler_9(event:MouseEvent):void
       panel.addEventListener(Event.ENTER_FRAME, everyFrame);
    function everyFrame(event:Event):void
              panel.prevFrame();
    function fl_MouseOutHandler_7(event:MouseEvent):void
    panel.removeEventListener(Event.ENTER_FRAME,everyFrame);

  • Make sound play when I click on button in DWCS3

    Sorry about this nube question. I appreciate the patience of
    the person who helps me. I just want to link a short sound to a
    text item in DW. ( I don't want it to play in a separate window).
    Thanks!

    Go to  > App store > Store > and click on Sign in.

  • Why do my iDVD themes have no "Play Movie" button?

    Having just paid my local Apple store to install iLife 09 for me, as my machine refused to do it, all seemed fine. After two days, now iDVD opens, but all themes show no "play movie" or "select scenes" buttons. Any suggestions would be welcomed. Perhaps I am just missing something obvious. Thanks

    but all themes show no "play movie" or "select scenes" buttons
    You have to actually drag and drop content on a menu before you see anything.

  • Changing region position on submitting the page by clicking a  button.

    Hi,
    I have 3 regions in my APEX page.
    1. Region having 20 LOV's with the width between them as 300. The display point is "Page Template Body (1)"
    2. Region having 3 buttons.(Go, CLEAR,CALCULATE) The display point is "Page Template Body (2)" Template is "Region without title" and column = 2 and align = "center" in HTML table cell attributes
    3. Region having a report with 25 display columns.
    Now the problem is,
    a) When I click "GO" button , 25 column report displays and it goes beyond the page layout. Hence button also shifts to right(means center position of the page when it is extended by 25 column report). User cannot see the button.
    This button shpould retain its place. How to do this?
    b) When I click "GO" button , the gap between the LOV's increases and LOV's also shifts to the right side.
    These LOV should be in its place. and should not move on click of button when page submitted.
    How can i achieve this. ??
    Any suggestios would be welcome.
    Please help me.
    Thanks
    Alaka
    Edited by: Alaka on Jan 5, 2009 6:06 AM

    Hi,
    If I understand well your problem... You don't say what theme you are using, but usually regions have width=100%, meaning that they should use the whole width of the page (not just the visible part on the screen). Because of this, when the region containing the report extends to the right, it forces all other regions on the page to resize themselves accordingly, that is why your design is getting messed up.
    One way to fix it is to tweak the region templates (I would suggest making a copy instead of changing the existing templates). Simply remove the width=100% setting, or hardcode it to a fixed width (for instance, width=300px).
    It is a bit complicated to explain here exactly how to do this, but I hope this gives you an idea...
    Regards,
    Luis

  • Clicking a button set to open url is skipping pause in slide

    Hey there! I must be missing something that's right under my nose... I have two transparent buttons over images on a slide who's actions are set to Open URL or file with infinite attempts. I also am using back and next arrows with click boxes to continue and go back. The click box over the next arrow is set to pause the project until it is clicked. What is happening, though, is that when I play the project, clicking the buttons not only open the URL in a new window, as set, they also cause the project to continue to the next slide.
    What am I doing wrong? Am I going about this the wrong way?
    Thanks for your help!

    Hi there
    Look at the properties where you direct the link to a new window. There is an option there that governs whether a pause is released or not.
    Cheers... Rick

  • Movie contains buttons with keys assigned. Both work. If you click a button first, keys wont work.

    I created a project with a menu of 7 buttons. The client has the option to click the buttons to view a different scene or use keyboard events. Each scene has been assigned a number when using the keyboard. The mouse and keyboard events function successfully. But I noticed if I start the movie by using the mouse, then the keyboard events will not work any more. One of the keys is important since it is the only way to play frame to frame. Anybody have a clue why this happens?It is as if though I have to tell the client,  don't click the buttons or the keys won't work.
    Below are actionscripts for the movie. I added actionscript for each scene for the keyboard events. In the menu, the movieclip contains the actionscript for the mouse events.
    Scene 1:
    import flash.events.KeyboardEvent:
    stage.addEventListener(KeyboardEvent.KEY_UP, onKeyEvent1);
    function onKeyEvent1(e:KeyboardEvent):void {
    var character:String=String.fromCharCode(e.charCode);
    if (e.keyCode==72) {
      gotoAndStop(1,"master");
    if (e.charCode==49) {
      gotoAndPlay(1,"Distributor");
    if (e.charCode==50) {
      gotoAndPlay(1,"Mirka");
    if (e.charCode==51) {
      gotoAndPlay(1,"Farm");
    Menu Movieclips:
    master.addEventListener(MouseEvent.CLICK, mouseDownHandler1);
    function mouseDownHandler1(event:MouseEvent):void {
    MovieClip(root).gotoAndPlay(1,"master");
    distribute.addEventListener(MouseEvent.CLICK, mouseDownHandler2);
    function mouseDownHandler2(event:MouseEvent):void {
    MovieClip(root).gotoAndPlay(1,"Distributor");
    health.addEventListener(MouseEvent.CLICK, mouseDownHandler3);
    function mouseDownHandler3(event:MouseEvent):void {
    MovieClip(root).gotoAndPlay(1,"Mirka");
    mirka.addEventListener(MouseEvent.CLICK, mouseDownHandler4);
    function mouseDownHandler4(event:MouseEvent):void {
    MovieClip(root).gotoAndPlay(1,"Farm");
    transaction.addEventListener(MouseEvent.CLICK, mouseDownHandler5);
    function mouseDownHandler5(event:MouseEvent):void {
    MovieClip(root).gotoAndPlay(1,"Check2");
    transaction2.addEventListener(MouseEvent.CLICK, mouseDownHandler6);
    function mouseDownHandler6(event:MouseEvent):void {
    MovieClip(root).gotoAndPlay(1,"Check3");
    sceneA.addEventListener(MouseEvent.CLICK, mouseDownHandler7);
    function mouseDownHandler7(e:MouseEvent):void {
    MovieClip(root).gotoAndPlay(1,"Scene2");
    sceneB.addEventListener(MouseEvent.CLICK, mouseDownHandler8);
    function mouseDownHandler8(e:MouseEvent):void {
    MovieClip(root).gotoAndPlay(1,"Scene1");

    In addition to my question, I'm opening the SWF file in a utility program IrfanView which the client uses for offsite purposes. Therefore, the SWF works fine in Flashplayer 10. I can crossover using mouse and keyboard events. But in IrfanView, the program will not allow me to crossover mouse and keyboard events.

  • Click a button, wait mc A to finish playing and play mc B

    Hello. I am using Adobe Flash pro CS6 and AS3.
    Right now I am trying to make a button to play a new mc. There are 2 movie clips. mc A and mc B.
    What I want to do is my swf is playing mc A but if I click a button, it starts to play mc B, but I want to  finish playing mc A before starting mc B, I mean it plays mc A (500 frames  loop animation) and if I click a button on 250 frames of mc A, it waits mc A to play remaining 250 frames, and if mc A finishes, it starts mc B.
    So I can not use gotoAndPlay command. What command should I use to do it?

    You could set some boolean variable to be true when you want mcB to play and at the end of mcA have it check the value of that variable and stop mcA/play mcB if the variable is true.

  • Playing movie with text button

    I'm trying to get a movie to start once I click on a text button (play movie).  So far I have this code in place and it is working.  I just need to know the function necessary to start the movie to put in place of the comment I have below.
    play_btn.addEventListener (MouseEvent.CLICK,playClick);
    function playClick(e:MouseEvent)
    //code to start movie
    THANKS!

    If the movie that is supposed to play is the one containing the button, then you can just put  play(); inside the function.  But if it is some other movie, you'll need to target that movie by its instance name...  mcName.play();

  • Flash 9 button sound bug? Sound in Over frame plays again when clicked

    I've been using Flash for years and I've only just noticed this problem, I guess because I haven't had much call for noisy buttons for a while. In the olden days (FlashMX and earlier) I swear that I could make a button, put a keyframe on the Over frame and attach an Event sound to it, put a keyframe on the Down frame and attach a different Event sound to it and the first sound would ONLY play when the button was rolled over and the second sound would ONLY play when the button was clicked. I just tried doing the same in Flash 9 and when I click on the button, not only does the Down sound play, but the Over sound also plays simultaneously. They're both in the same layer, but the "Over" sound only has its keyframe and the very next keyframe under "Down" is the Down sound.
    Switching the sync to Start makes no difference. Synching with Stop on the "Down" frame for the "Over" sound sort of works if there is no Down sound, but there's still a brief snippet of the sound. If I add the Down sound back on new layer, the original problem returns. Of course Streaming doesn't work at all.
    This is incredibly maddening, especially since I found this old tutorial on Kirupa that shows exactly what I want, and what I can no longer get in Flash 9, apparently:
    http://www.kirupa.com/developer/flash5/buttonsound.htm
    I've attached a demo .swf.
    Thanks in advance

    maijakg,
         You've stumbled onto a good one!  If memory serves me right, the Kirupa article indeed shows how this used to work (Kirupa is always top notch), but this behavior changed in one of the recent versions of Flash Flayer.  Not sure now if it was 8, 9, or what.  It should be easy enough to pinpoint with one of the legacy Flash Players at http://www.adobe.com/go/tn_14266.
         This issue is easy enough to address with ActionScript, which may not be what you want to hear.  Still, it's an option.    I'll go into that in just a minute.  If you want to stick with the button timeline ... well, I'm finding that this proves to be a challenge (and it really shouldn't be).  I notice, for example, that I can create an empty movie clip symbol, put my Over sound in frame 1 of that symbol (Event sound), and then drag that symbol into the Over frame of the button.
         That does keep the audio from repeating when I actually click the button -- that is, when I enter the Down frame -- so that does work.  You can put your Down audio directly into the button's Down frame, but ... using this approach, you'll hear the Over sound when you release the mouse, even if the mouse hasn't left the button.  That's because the movie-clip–with-audio in the Over frame is summoned again when the mouse lifts, and that naturally causes the movie clip in that frame to play its audio again.
         Here's how you can do exactly what you want using ActionScript.
    // ActionScript 2.0
    var overSound:Sound = new Sound();
    overSound.attachSound("sndOver");
    var downSound:Sound = new Sound();
    downSound.attachSound("sndDown");
    btn.onRollOver = overHandler;
    btn.onPress = pressHandler;
    function overHandler():Void {
        overSound.start();
    function pressHandler():Void {
        downSound.start();
         Here's what's going on.  In the first two lines, I've declared a variable -- arbitrarily named overSound -- and set it to an instance of the Sound class.  At this point, the variable overSound contains all the rights and priviledges of a sound object, because that's exactly what it is.  If you look in the Sound class entry of the ActionScript 2.0 Language Reference, you'll see that it has an attachSound() method (methods are things an object can do; they're basically verbs).  So in the second line, you'll see that I'm attaching an audio file from the library.  In ActionScript 2.0, this happens by way of a linkage identifier, which you can get to by right-clicking a sound and selecting Properties.  In the dialog box that opens, you'll see an "Export for ActionScript" checkbox.  Select that, and you can type in your identifier, which is just a unique label.  In this case, I used the same name as the variable (sndDown) -- only, the linkage identifier is referenced with quotes.
         In the second pair of lines, the same thing happens, but with a different sound.
         In the third pair of lines, I'm referencing the button symbol by way of an instance name.  To give a button an instance name, select it in the timeline and then look at the Property inspector.  You'll see an "instance name" input field.  Here, my instance name is btn, but you could choose whatever makes sense for that button's purpose.  In these two lines, I'm simply associating the Button.onRollOver event with one custom function (overHandler) and the Button.onPress event with another custom function (pressHandler).  Events are something an object can react to, and you'll see events listed in class entries too.  Because we're dealing with a button simple, the class in question is the Button class.  When a rollover or press occurs ... I want these custom fuctions to be triggered.
         Finally, the last few lines are the definitions for the custom functions.  One, overHandler(), invokes the Sound.start() method on the overSound instance of the Sound class.  The other, downHandler(), does the same for the downSound instance.
         The mechanics of the AS3 version are slightly different, but the principles are the same.  Instead of linkage identifers, AS3 has linkage classes.  When you select that "Export for ActionScript" checkbox in an AS3 document, the identifier input field will be disabled.  You'll enter an identifier-like value into the Class field, and the Base Class field will be filled in for you automatically with flash.media.Sound (just go with the default).  After that, the code goes like this:
    // AS3
    var overSound:sndOver = new sndOver();
    var downSound:Sound = new sndDown();
    btn.addEventListener(MouseEvent.MOUSE_OVER, overHandler);
    btn.addEventListener(MouseEvent.MOUSE_DOWN, pressHandler);
    function overHandler(evt:MouseEvent):void {
        overSound.play();
    function pressHandler(evt:MouseEvent):void {
        downSound.play();
         In this case, you don't need the attachSound() method anymore, because you're invoking the constructor function of each library sound itself (these are linkage classes, remember, and classes create objects directly).  The events are managed the same in princple.  Once again, each mouse event is associated with its corresponding custom function.  In AS3, this happens via the addEventListener() method.
         Finally, the custom functions invoke the Sound.play() method on each Sound instance.  Remember, these are instances of the Sound class, even though their linkage classes are actually sndOver and sndDown:  each of those inherits its functionality from the base class, which is Sound in both cases.  Note that in AS3, the method that starts audio is play(), instead of start().  Just minor differences in syntax.
         Granted, that's a lot to do -- in either version of the language -- just to associate a couple sounds with a button, but off the top of my head, it looks like scripting is the way it has to be done.  If I'm wrong, I'd love to hear about it.  Maybe there's a simpler workaround!
    David Stiller
    Contributor, How to Cheat in Adobe Flash CS4
    http://tinyurl.com/dpsCheatFlashCS4
    "Luck is the residue of good design."

  • Rollover event not playing movie in buttons/gotoandPlay function not playing frames

    This web site has 7 buttons (each button plays a different movie/each movie(.flv) has a stop action at frame 1). The first 3 buttons (button set 1) exist on the timeline from frames 1 to 28. Frame 29 has a blank key frame for the 1st 3 buttons. There is action script for the 3 buttons in frame 1. Next 4 buttons (button set 2) exist on the timeline from frame 30 to 90 as well action script.
    The stop actions are at frames 29,50,69,90. Labels are at frames 1,30,51,70. When testing the movie button set 1 functions as expected (the rollover event for each button plays its movie and selecting the button plays the correct frame) . Button set 2 is not working (the rollover event for each button is not playing the movie and selecting the button does not play the frame)
    Using cs4, as3
    This is my 1st attempt at an interactive project like this and am not sure how to make all the pieces work together. My action script is included below. I would appreciate a breakdown of why the movies are not playing as well as the gotoandPlay function for button set 2 and how can this be fixed. No errors are reported when I test the movie the buttons for button set 2 just do not function.
    Thanks in advance.
    AS frame1:
    import caurina.transitions.*;
    import caurina.transitions.properties.*;
    DisplayShortcuts.init();
    conbut.addEventListener(MouseEvent.ROLL_OVER, conbut_ROLLOVER);
    function conbut_ROLLOVER(e:MouseEvent):void
        Tweener.addTween(contact_1, {_frame:10, time:0.2, transition:"linear"});
        var over:Over = new Over();
        over.play();
    conbut.addEventListener(MouseEvent.ROLL_OUT, conbut_ROLLOUT);
    function conbut_ROLLOUT(e:MouseEvent):void
        Tweener.addTween(contact_1, {_frame:0, time:0.5, transition:"linear"});
    newxbut.addEventListener(MouseEvent.ROLL_OVER, newxbut_ROLLOVER);
    function newxbut_ROLLOVER(e:MouseEvent):void
        Tweener.addTween(newsx, {_frame:10, time:0.2, transition:"linear"});
        var over:Over = new Over();
        over.play();
    newxbut.addEventListener(MouseEvent.ROLL_OUT, newxbut_ROLLOUT);
    function newxbut_ROLLOUT(e:MouseEvent):void
        Tweener.addTween(newsx, {_frame:0, time:0.5, transition:"linear"});
    gall.addEventListener(MouseEvent.ROLL_OVER, gall_ROLLOVER);
    function gall_ROLLOVER(e:MouseEvent):void
        Tweener.addTween(gal, {_frame:10, time:0.2, transition:"linear"});
        var over:Over = new Over();
        over.play();
    gall.addEventListener(MouseEvent.ROLL_OUT, gall_ROLLOUT);
    function gall_ROLLOUT(e:MouseEvent):void
        Tweener.addTween(gal, {_frame:0, time:0.5, transition:"linear"});
    function spineasel_top_mc() {
        easel_top_mc.play();
    newxbut.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_15);
    function fl_ClickToGoToAndPlayFromFrame_15(event:MouseEvent):void
        gotoAndPlay("news..");
    gall.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_9);
    function fl_ClickToGoToAndPlayFromFrame_9(event:MouseEvent):void
        gotoAndPlay("gallery..");
    conbut.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_10);
    function fl_ClickToGoToAndPlayFromFrame_10(event:MouseEvent):void
        gotoAndPlay("contact..");
    AS frame30:
    import caurina.transitions.*;
    import caurina.transitions.properties.*;
    DisplayShortcuts.init();
    inv_gallery_btn.addEventListener(MouseEvent.ROLL_OVER, inv_gallery_btn_ROLLOVER);
    function inv_gallery_btn_ROLLOVER(e:MouseEvent):void
        Tweener.addTween(gallery1a, {_frame:16, time:0.2, transition:"linear"});   
    inv_gallery_btn.addEventListener(MouseEvent.ROLL_OUT, inv_gallery_btn_ROLLOUT);
    function inv_gallery_btn_ROLLOUT(e:MouseEvent):void
        Tweener.addTween(gallery1a, {_frame:0, time:0.5, transition:"linear"});
    home_1.addEventListener(MouseEvent.ROLL_OVER, home_1_ROLLOVER);
    function home_1_ROLLOVER(e:MouseEvent):void
        Tweener.addTween(home, {_frame:16, time:0.2, transition:"linear"});
    home_1.addEventListener(MouseEvent.ROLL_OUT, home_1_ROLLOUT);
    function home_1_ROLLOUT(e:MouseEvent):void
        Tweener.addTween(home, {_frame:0, time:0.5, transition:"linear"});
    inv_news_btn.addEventListener(MouseEvent.ROLL_OVER, inv_news_btn_ROLLOVER);
    function inv_news_btn_ROLLOVER(e:MouseEvent):void
        Tweener.addTween(news_1a, {_frame:16, time:0.2, transition:"linear"});
    inv_news_btn.addEventListener(MouseEvent.ROLL_OUT, inv_news_btn_ROLLOUT);
    function inv_news_btn_ROLLOUT(e:MouseEvent):void
        Tweener.addTween(news_1a, {_frame:0, time:0.5, transition:"linear"});
    contact_1a_inv.addEventListener(MouseEvent.ROLL_OVER, contact_1a_inv_ROLLOVER);
    function contact_1a_inv_ROLLOVER(e:MouseEvent):void
        Tweener.addTween(contact1, {_frame:16, time:0.2, transition:"linear"});
    contact_1a_inv.addEventListener(MouseEvent.ROLL_OUT, contact_1a_inv_ROLLOUT);
    function contact_1a_inv_ROLLOUT(e:MouseEvent):void
        Tweener.addTween(contact1, {_frame:0, time:0.5, transition:"linear"});
    inv_news_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_20);
    function fl_ClickToGoToAndPlayFromFrame_20(event:MouseEvent):void
        gotoAndPlay("news..");
    inv_gallery_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_21);
    function fl_ClickToGoToAndPlayFromFrame_21(event:MouseEvent):void
        gotoAndPlay("gallery..");
    contact_1a_inv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_22);
    function fl_ClickToGoToAndPlayFromFrame_22(event:MouseEvent):void
        gotoAndPlay("contact..");
    home_1.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_23);
    function fl_ClickToGoToAndPlayFromFrame_23(event:MouseEvent):void
        gotoAndPlay("home..");

    Steps tried so far to troubleshoot functionality of buttons in 2nd set:
    -         Recreated the .flvs for all buttons in 2nd set. Re-imported to flash and swapped with existing video
    -         Thru event generator generated rollover and rollout code for each button
    -         Commented out the stop action for each video (stop actions remained active on main timeline on stage)
    -         Retested movie – video continuously looped on all buttons in 2nd set, GoToAndPlay function still not working
    -         In addition to the commented out stop actions for each video also commented out stop actions on main timeline for buttons in 2nd set
    -         Retested movie – Rollover functionality which causes the video to play works; GoToAndPlay function plays the correct frame but continues to play through to end of timeline

  • Unable to play some movie from Netflix on my iPad. When I click on a movie an error message comes up which says "cannot play movie. Please try again". Can anyone assist me? I just upgraded to iOS 7.1. Netflix not able to find problem.

    Unable to play some movies from Netflix on my iPad. When I click on a movie an error message comes up "Cannot play movie. Please try again later." I contacted Netflix but have not been able the help so I am wondering if it's my iPad. I didn't have a problem before but I have recently upgraded to iOS 7.1. Also is a certain amount of storage needed to play a movie? About how much is that?

    Hello all,
    I have an iPad 2 16GB with iOS 7.0.3 and Netflix version 5.0.2. I cannot watch netflix on an External LCD monitor that I have through VGA out. I use bluetooth speakers, so the AirPlay is going to that for Audio. Before this update, this combo worked without an issue.
    So as of Friday Nov. 8/2013, I contacted Netflix support, and they said they fixed the problem on their end, and the fix is on the Apple side of things, and to contact Apple support.
    So, I contacted Apple support, and the first person I spoke to said I would have to agree to pay a $35 fee for 30 days of support to this problem since my unit is out of warranty. I said this isn't a hardware issue, it's a software issue, and I'm not willing to pay to fix a problem you created. So I got a Senior Level advisor on the line, and she was helpful, and she's looking into the issue for me and said she'll contact me sometime on Tuesday or Wednesday (Nov. 12 or 13) to let me know of the issue.
    Here's the thing: this is a combination of Netflix and iOS not working correctly with any of the Apple Authorized Dongles. This is truly a code error that some hot shot programmer had major oversight on, and their management didn't catch it either. There was no reason for Netflix to rush to get this Netflix update going until Apple sorted out the bugs in iOS 7.
    Anyway, if I hear anything from Donna (the advisor), I'll post it and let you guys know. In the mean time, good luck!

Maybe you are looking for

  • How to dispose a JPanel ?

    Hi, i want to know, how to dispose or close the JPanel from the application as well as from the memory?. In Simple, for JFrame or JInternalFrame we have .dispose(), which will remove the component from view as well as from allocated memory. What is t

  • Issue with HP Bluetooth Mouse z5000

    I love this mouse. It worked great, scrolled smoothly across my screens. Now it lags. It holds up. I changed the battery, but it continues to have the same issue. I have tried completely removing it from the bluetooth profile on my computer and recon

  • Need To Turn iPod Off???????

    Is it necessary to move your iPod to the "Off" position when it is not in use?? I am asking because all the iPod cases that clip to your waist do not provide access to the "Off", "Play in Order", or "Shuffle Songs" button. Surely it is not necessary

  • Chinese language support

    Hi, I'm a new Mac user. I'm having trouble reading simplified and traditional Chinese characters using both Safari and Firefox. I also am not sure the overall Chinese input system on the Mac. I've enabled it and can change into that "mode" to write p

  • Taking a screenShot/Snapshot programmatically for iOS7 gives me an error

    I am writing the code for capturing the screenShot of what I see on my screen when I press a button in Unity. I am writing the following code : ScreenCapture.h #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #import "QuartzCore/QuartzCore.h