Make button invisible until end of flv

I am trying to create a flash file for flash player 6 and 7
that plays a flv video and when the video is finished you see, over
the last frame of the video, 2 buttons. The buttons would be
"replay video" or "go to url". Also how can I make them dissappear
if the user wants to play the video again?
If you know of any tutorials or know of any examples, that
would help as well.
Any help would be greatly appreciated.
Thanks
Thepopguy

For Flash 8 yes. It worked great, but I need to do it for
Flash 6 or 7. It gives me a message that says it won't work in
Flash 7 when I go to publish it.
I used the same code, but it did not work.
Thanks
Thepopguy

Similar Messages

  • Make button invisible when flv starts again

    Hi,
    Please, can some one help me and tell me how to have a button
    instance become invisible when the play button from the skin.swf
    file is clicked? There may be another way to acomplish what I am
    trying to do.
    I have a Flash 8 file with a FLVPlayback component pointing
    to a FLV file. I am using an external skin for the controls. When
    the video is finished I have it displaying a button, but if the
    person wants to start the video again the button needs to become
    invisible again. I am assuming I need to create an actionscript
    that says if the video is playing (at all ) the button is
    invisible. But how?.. is the big question for me.
    Any help would be great.
    Thanks
    thepopguy

    This is possible. You need actionscript to check the status
    of the video, if it is playing then the button goes invisible. This
    is called an event listener. You need to give the component an
    instance name - like vid. Then use this code on the frame:
    //listen for movie to play
    var vidList:Object = new Object();
    vidList.playing = function(){
    button1._visible = false;
    //any other actions go here
    vid.addEventListener ("playing",vidList);
    stop;
    //listen for movie to stop
    var vidList2:Object = new Object();
    vidList2.stopped = function(){
    button1._visible = true;
    //any other actions go here
    vid.addEventListener ("stopped",vidList2);
    stop;
    ============
    This code will actually listen for the movie to play, and
    then it will make the button invisible. It also listens for the
    movie to stop, and it make it visible again.
    Sample:
    http://www.johnkalnin.com/flashhelp/Vid-isPlaying-inv.html
    Flash 8 source:
    http://www.johnkalnin.com/flashhelp/Vid-isPlaying-inv.fla

  • JavaScript to make button invisible button visible again

    Hi
    I have been trying to create a form in LiveCycle Designer (part of Acrobat Pro ) that keeps a button (call it #1)invisible until another button (call it #2) is clicked, at which click event the invisible button(#1) becomes visible. I've been using JavaScript and either setting the #1's presence as "invisible" in the object editor or scripting it as a formready event presence = "invisible". I've scripted in the click event for #2: #1.presence = "visible". This doesn't work to get #1 to show on #2's click. I've tried a few more similar script with no success.
    I'm relatively new to Designer, though have some experience with JS.
    Is there another way to script to initially make an object "invisible" and get it to become visible by a runtime event?
    I would appreciate any help.
    Kind Regards,
    Stephen

    Template needs to be saved as Dynamic in order to see those dynamic features working. You have that saved as Dynamic and still have no luck try the following....
    #1.presence = "visible";
    xfa.layout.relayout();
    Note: 1. A button name can not start with "#" hope you are using some meaningful names.

  • Can't make buttons invisible

    I am trying to use buttons to show word definitions on mouse rollover.  The definition is in the tooltip and is used as the label.  The definition shows, but I can't make the button invisible.  It shows as a solid block with the label.  I've changed the Appearance to no line and no fill, but nothing changes.

    Acrobat X Pro.  Could it be that I have to produce the document for distribution before they disappear?
    I've inserted a graphic with all the settings I have used, but it may not be readable.  I've picked Hidden and no line or background, but it still shows ups.
    Thanks for your help.

  • How to make buttons invisible on the layout(se51)

    hello All,
                                 i have a dialog screen i need to make few button invisible when i calll the next screen but the next screen is the same screen , according to my logic only needed buttons should be seen and rest should be unvisible. please help me fast ..
                           have a nice time there bye

    Ritesh,
    Go through the code .Here instead of input fields you add the modi id for BUTTONS.give same MODIF ID name to required enable fields and not required fileds are another group name.
    PARAMETERS: p_pcfile LIKE rlgrap-filename OBLIGATORY DEFAULT 'C:\'
                MODIF ID ccc,
                p_pctype LIKE rlgrap-filetype OBLIGATORY DEFAULT 'ASC'
                MODIF ID ccc,
                p_unix   LIKE rlgrap-filename OBLIGATORY DEFAULT '.\'
                MODIF ID ccc.
    PARAMETERS: p_dir LIKE rlgrap-filename OBLIGATORY DEFAULT '.'
                MODIF ID ddd,
                p_fp  LIKE rlgrap-filename
                MODIF ID ddd.
    AT SELECTION-SCREEN
    AT SELECTION-SCREEN OUTPUT.
      IF p_up = 'X' .
        LOOP AT SCREEN.
          CASE screen-group1.
            WHEN 'CCC'.
              screen-input = 1.  "Enable
              screen-invisible = 0. "Disable
              MODIFY SCREEN.
            WHEN 'DDD'.
              screen-input = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
          ENDCASE.
        ENDLOOP.
      ENDIF.
      IF p_list = 'X'.
        LOOP AT SCREEN.
          CASE screen-group1.
            WHEN 'CCC'.
              screen-input = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            WHEN 'DDD'.
              screen-input = 1.
              screen-invisible = 0.
              MODIFY SCREEN.
          ENDCASE.
        ENDLOOP.
      ENDIF.
    Pls. reward if useful

  • How to make the buttons INVISIBLE in the Application toolbar

    Hi All,
    I have a requirement to create a button in the Application toolbar of the Module Pool Screen. The field should be made Invisible by default. and it should be displayed based on one condition.
    Could you please let me know how to make that particular button INVISIBLE. I think we can make it invisible by using EXCLUDING statement. But, How to make the button VISIBLE again when the check is satisfied.
    I found from the portal that the FM 'VIEW_SET_PF_STATUS' can be used to make a button INVISIBLE. Could anyone help me out how to pass the parameters to this Function module?
    or is there any Function Module available to make the button VISIBLE and INVISIBLE? Please help me on this issues.
    Is there any possibility to make the button VISIBLE or INVISIBLE as we do for the screen fields using LOOP AT SCREEN..?
    Thank you in advance.
    Regards.
    Paddu.

    Hi,
    Try to use below in the PBO module status_0100 OUTPUT.
    DATA t_fcode TYPE TABLE OF sy-ucomm.
    refresh t_fcode[].
    APPEND 'Function code name of the button' TO t_fcode. 
    Check the condition here for which you want to make field visible.
        DELETE FCODE of the button from T_FCODE table
      ENDIF.
      SET PF-STATUS 'STATUS_0100' EXCLUDING t_fcode.

  • Make button flash at the end of the content

    is there way to make button flash at the end of the video or auto progress the slide when the video is done?

    Put an effect on it, and time it correctly.

  • Ctrl + secondary mouse button (Trying to make a button invisible)

    Hi Portal Experts,
    I am trying to make a button invisible basically personalization of Iview we are in SAP Portal version 6,40. I have kept mouse on the button and action was Ctrl + right click of mouse and i am not getting the properties screen rather a general windows options(Second screen shot). It would great if i can get suggestions to get the properties screen.
    Thanks in Advance..!!
    Regards
    Venkat

    Hi Venkat,
    Can you check the value of property "AllowUserPersonalization" in Visual administration Services → Configuration Adapter → webdynpro → sap.com → tc~wd~dispwda - propertysheet
    Also what is the exact version of this portal?
    Mahesh
    Message was edited by: Mahesh Krishnapillai

  • How to make a button invisible?

    I'm sure this is something easy that I'm missing, but I can't figure it out.  How do I make a button invisible?  I need it to be invisible through frame 43 of my movie.  I have tried changing the alpha to 0, but it's not letting me change that, except in the edit button mode which changes it for the entire duration and not just through frame 43.

    It can vary slightly depending on which version of actionscript your file is using, but just turn the visible property off and on.  For AS3....
    btnName.visible = false;
    btnName.visible = true;

  • Make button invisble when movie starts to play

    I have a FLV file in a FLVplayback component. Once it has
    played and reaches the end I have a button become visible. But my
    delimma is if I want to watch the movie again and click play, the
    button remains. How can I make it go back to being invisible until
    it reaches the end again?
    Any help would be greatly appreciated.
    thepopguy

    Thanks ggshow,
    The button that would be clicked is the play buttion of the
    skin.swf file. Would I add the actionscript to the play butto in
    that fla file? And if so, what happens if someone is playing the
    video and pauses, then resume playing.

  • How to make buttons unclickable when one of them is clicked

    Hello,
    I am using JDev 11.1.1.4.0.
    I have a jspx page that has 6 command buttons. Some of them process the data present in the form and some of them are for navigation. Problem is when a user clicks a command button and clicks other button impatiently if the first process takes some time. Most of the time the app is able to handle this behavior, but when it fails it fails with 404 error(I'm speculating).
    Is there a quick and easy way to make rest of the buttons unclickable until the process finishes? I was going to handle this in backing bean to set the disable property to false when one of them is clicked, but cannot figure out when to set them back to disable=false.
    Many thanks in advance for the help.
    Bones Jones

    Shay,
    I tried something like this, but didn't work for me:
    public void submit(ActionEvent actionEvent) {
            disableButtons(true);
            ADFUtil.invokeEL("longProcess");
            disableButtons(false);
    }Debugging line by line, I found out even after the disableButtons(true) line, the buttons were still clickable. Curious, I put the disableButtons(true) at the end of the method, buttons were disabled when the control came back to the user. So it seems to me only the last diableButton() call before returning control has the influence.

  • How do I restore the "close tab" button to the END of the tab bar, WITHOUT USING AN ADDON

    Up until FF31, I used to have the following setting configured which moved the little 'X' button that closed tabs off of the tabs themselvs and onto the far right of the tab bar.
    browser.tabs.closeButtons; User Set; Integer; 3
    No, this no longer works. It has still moved the close buttons back to the tab buttons. Until I can figure out how to fix this, I will be moving back to a previous version. I can't for the life of me see why this feature was removed, other than Mozilla's seemingly arrogant insistence that it knows what people want better than they do.
    I was since told by someone that I can use an addon to fix it, yet the problem is THEY DO NOT WORK. The addons that supposedly solve this all have intermittent failures where they don't load correctly, leave random dead tabs open, and in one case it even seemed to open new tabs when I tried to close one.
    It's absolutely inexcusable that the dev team is so arrogant to take away a feature that has fundamentally no impact on the rest of the browser, other than, as I said before, they THINK they know what we want better than we do. It's no small wonder that FF is losing market share. The only thing keeping me on board was really this function, as I prefer this layout, and if it's gone, I see no reason to stick with FF over others.

    unfortunately it is not possible to restore the close button to have only one (customizable) close button on the Tab bar without using an extension.
    The extension is necessary because you need to create a new toolbar button and bind the proper code to it to make the button act as a tab close button (command: BrowserCloseTabOrWindow()).
    *tabs closebutton restored: https://addons.mozilla.org/firefox/addon/tabs-closebutton-restored/
    * http://cat-in-136.blogspot.co.uk/2014/05/note-do-same-without.html

  • When I type an address in the location bar and hit Enter nothing happens. I must click the arrow button at the end of the location bar. How do I fix it so that the Enter key works?

    When I type a web address in the location bar and hit enter nothing happens. In order to go to the website I've typed in, I must click the arrow button at the end of the location bar. How do I make it so that hitting the enter key takes me to the web page.
    == This happened ==
    Every time Firefox opened
    == Since Firefox 4 Beta installed an update

    The AVG addon seems to have caused the problem for me. I had it disabled and everything worked. Then I updated to AVG 2011 and the problem occurred. It seems to have reenabled itself after the update.
    Just disabling it solved the problem.

  • Where is button to accept end user agreement so I can download or read online file.  mac osx reader XI

    where is button to accept end user agreement so I can download or read online file.  mac osx reader XI
    every time i click  on a file to downloac
    i get a reader message Before viewing PDF ... you must launch adobe reader and then accept the End User License Agreement. Ive searched  every part of the menu for this and cant fine it

    Ok, so the Reader app works. Fine, but why did you say ",the reader won't open any more", that led us a confusing direction.
    Ok, the problem is most likely caused because you downloaded Acrobat Pro, which takes over from Reader, then got rid of it. You now have part of Acrobat in Safari, not part of Adobe Reader.
    There are two things to try to fix this. The first and easiest is to download and install Adobe Reader again. That should puts its stuff back in Safari with a bit of luck.
    Important note for others following this thread. Downloading Adobe Reader is not going to help you if you have not understood and followed the instructions to "launch" Adobe Reader (or Adobe Acrobat). Make sure you understand what "launch" means before downloading anything again.

  • Putting buttons at the end of each row of a report

    Hi
    Was wondering if anyone new of a way to put buttons on the end of each row of a report. Basically i want a button and a LOV box next to the end of each row so that the user could set the value of the LOV box click the button and that would update just that row. Obviously i want to give them the option of batch processing it as well but for now i just want them to be able to update one row at a time.
    This does not nessacary need to be with a LOV box it could also work with radio buttons to specifiy the value to update.
    If anyone knows a way of doing this or any information where i can read about it then please let me know as i would be very interested.
    Or can you make report fields eidtable so that i can just run a massage update on the using all the values in the report?
    Thank you for your time
    Daniel Stead
    Message was edited by:
    Dan Stead

    No such luck a tabluar updat form shows all the rows for that table. I only want the user to be able to update their rows in the table.
    This is bascally what i want to do.
    I have two reports that only show records that are realted to the current user that is logged in.
    The first report shows all records in the table for the current user where the supervisor (the current user) type is set to confirmed.
    The second reprot shows all the records in the table for the current user where the supervisor (the current user) type is set to requested.
    That is what i have acheived so far.
    I want to be able to make the superviosr type in the second report editable with a list of values requested, rejected and confirmed. The user can then select what he would like the type to be for the specific record in the report and then press a button that updates all the reocrds (or a button at the end of each row that updates each row). If the row is confirmed it moves to the first report, if it is still requested it stays in the second report and if it is set to rejected then it will be in neither report.
    Therefore my question is if i make the supervisor type eidtable how can i link it to the id of that row so that it updates it?
    If this is not clear please state to me which part i have not made clear.
    Thank you for your help.
    Daniel Stead

Maybe you are looking for

  • How can I migrate everything from one account to another on same computer?

    How can I migrate everything from one account to another on same computer?

  • Parameter Setting for Windows 64-Bit Windows (Zero Administration)

    Hi All,           I would like to know the advantages behind setting up parameters based on SNOTE 88416 & 1518419.           I will explain our current environment to make understand first. Kindly help us to provide the solution for each parameter to

  • FCP Capturing Aliasing Issues

    I am having issues capturing footage of my PV-GS500. I recently moved from Adobe Premiere Pro to FCS, and I did not have this problem whatsoever capturing clean footage from this same camera. I am on a Macbook Pro 2gb DDR2, 2.33ghz Core2Duo. My captu

  • Parser Problem

    I have a parser program which queries a online shopping comparison web page and extracts the information needed. I am trying to run this program with different search terms which are created by entering a sentence, so each one is sent separately, how

  • Japanese HTML

    I'm using Dreamweaver MX, I'm trying to copy Japanese text from a word document and paste it into Dreamweaver. It is not working. Do I need a 3rd party plug in? I called tech support ,they were not helpful and do not support MX. Please help