Need AS3 Widget Hide/Show Forward Button on Playbar

I found an AS2 set of widgets that will Hide/Show each button on the Playbar.  I need this for AS3 for Captivate 5.5. 
Some pages we want it and others we do not.
Has anyone created this type of widget for AS3?
Thanks!

Hi Jo_Help,
I've create an AS3 Playbar Widget that has the ability to enable/disable individual playbar buttons using actions.  If this is something you'd be interested in, please email me for a trial.  Jim AT Captivate Dev dot com.

Similar Messages

  • Where is hide/show toolbar button?

    Hello all,
    I have purchased Aperture as a retail package, and I am running Snow Leopard.  I have a "hide/show Toolbar" button in the upper left of the title bar, as indicated in the included screenshot.
    I used Aperture on a friend's machine, and he does not have the oblong "hide/show toolbar" button.  His OS is Lion with Aperture installed from the Mac Store.
    Does anyone have any ideas about why he would not have this convenient button, while I do?
    nathan

    Hello Nathan,
    if you want a button in the toolbar to toggle it on and of, you could do the following:
    Create an AppleScript to toggle the Toolbar on and off
    Save the script as an application
    Assign a nice icon to it, just like the drop of toothpaste, the button used to look like
    Drag the Apple Script to your Finder toolbar
    This AppleScript seems to toggle the toolbar - I have not done much testing so far:
    (* Toggle the Finder Window Toolbar , Autor LDF *)
    tell application "Finder"
      activate
              set wi to front window
              set vis to (get toolbar visible of wi)
              if vis then
                        set (toolbar visible of wi) to false
              else
                        set (toolbar visible of wi) to true
              end if
              return vis
    end tell
    The only problem is, you can easily hide the toolbar this way, but once the toolbar is hidden, you cannot turn it on again, since the button now is hidden , so you may wish to put a link to the script in the Dock as well
    Cheers
    Léonie

  • Forward button on playbar

    Is there anyway to change how the forward button on playbar behaves?  I would like it to forward to the next topic not the next slide?

    Actually there is a way to change it.
    Sorry to long before seeing this.
    First, complete your project and publish it.
    Next go into the published folder and look for the folder: assets
    Now, go into the folder.  js
    Right click the file: CPPlaybar.js and open with Notepad
    Scroll down to where you see playbar.toolTips
    Look for: playbar.toolTips['Forward'] = ["Forward ", etc.
    Change the second "forward" to Next or whatever term you want
    Then click File / Save
    Now here's the difference or the catch: This will only work and show "Next" as the tool tip on the Forward button if you run the file: index.html
    It will not work if you run the file that has your project name.html
    I believe that requires editing the playbar's FLA file.  This is for the HTML version of your project.
    Hope that helps, and yes, you should be able to edit any other playbar names.

  • Use embedded .swf to hide/show a button

    Captivate 4
    Flash CS4
    ActionScript 2.0
    Afternoon Fellow Captivators!!
    okay - so here's the thing, I have a custom interaction that i have built in Flash.  I want to force the user to go through this entire interaction before proceeding to the next slide.  The easiest way, in my eyes, to do this would be.
    1) Hide the "next" button, toggle it's "visible" to off
    2) The user then goes through the entire animation/interaction
    3) at the end of the interaction, the animation communicates with Captivate to now SHOW the "next" button - or toggle it's visibility to on...
    Does anyone else know of a way to do this - I've been looking through all of the Captivate variables, and don't see anything to toggle the visible option for it.
    Thanks for the help!

    If you want to accomplish this in Captivate 4, Paul Dehurst has a Widget that will do what you need.  He offers it for FREE at his site here:  http://www.raisingaimee.co.uk/index.php?option=com_content&view=article&id=113:hideshow-bu ttons-widgets&catid=31:captivate-4&Itemid=55
    If you use it, you might consider making a donation to him for his incredible work!
    The downside is that Paul has retired from Widget making and there is no update for Captivate 5.  Anyone want to take this development on for Cap 5?

  • JComboBox - Hide/Show Arrow Button

    hello all,
    im stuck. i want a jcombobox to have its arrow button hidden unless the mouse is over it
    rite now i have the jcombobox implenting the mouselistener . but i have no idea how to get the object to show/hide the arrow button. i read something about using the ComboBoxUI to hide the button but thatz pernament rite? unless i keep refreshing the ui whenever the mouse moves in or out of the object
    any advice will be greatly appreciated.
    thx

    Open src.zip with Winzip. Look at BasicComboBoxUI.java. Figure out what changes you need to make to make the button disappear. It probably can be done pretty easily if you pick the right spot to change. But don't change BasicComboBoxUI.java. Write your own class that extends BasicComboBoxUI and override the method you picked to change. You may end up rewriting the whole method or just calling super.whatever() and then tweaking.

  • Hide/Show Create button on a report/form page

    Hi, I included one form and the related report on one page.
    When I create a new record, it will show in the report below.
    I make the ID column as the link, which assign the ID to the ID item in the form. DML will do the rest work for display.
    However I got a issue. when I click the edit button for one row, the create button doesn't disappear. Although it has a condition of "VALUE OF ITEM IS NULL". I un-hidden the ID item and it do have value when I edit some row.
    Is this because of some refreshing reason or...?
    Your help will be great appreciated.
    Edited by: Gadfly on 2009-3-16 下午8:02

    BTW, this hide/show pattern of 'KEY VALUE is null' works well when I use two pages(one form and one report.)

  • Need to find action behind Forward button in the notificationdetails page

    Hi,
    When i enable the forward button in the workflow,the forward button apperas on the notification details page.
    when i click about this page link,the button appears in the list.
    But when i can take PG.xml code i dont find the forward button.
    i have tried to trace how this forward button got embeded in the oa page but no luck.
    i even checked the controller code as well.
    does any one have any idea?

    hey hacker~~~thanks again!Ex-hacker please! I'm reformed :)
    i want to choose method 1You chose a tricky one. IIRC, You would have to use document.write(); of JavaScript for that. I am not very good in that. I suggest you look for a tut.
    Regards
    xH4x0r

  • Hide/Show a button on a tile, based on the tileset you're in.

    Hey,
    I made a new tileset Z_CustomerPlan, it has an existing tile in it, capshort1.
    I added a button to this existing tile capshort1, named Z_BTNPreviewAll.
    But this button should ONLY be visible when in the new tileset Z_CustomerPlan because capshort1 is used in some other tilesets.
    i tried to do this with the following code in the onload event of capshort1:
    if not mcore.uftileset = "SZ_CustomerPlan" then
         ctrlZ_BTNPreviewAll.visible = false
    end if
    but this isnt working, it makes the button invisible on all tilesets, including Z_CustomerPlan.
    So im trying to show/hide the button based on the tileset... is this the right way?
    Some help would be nice.
    Cheers,
    Maarten

    Hey Vadim,
    After an intensive investigation i came to the following conclusion...
    if not mcore.uftileset = "SZ_CustomerPlan" then
         ctrlZ_BTNPreviewAll.visible = false
    end if
    does not work, BUT..
    if not mcore.uftileset = "sZ_CustomerPlan" then
         ctrlZ_BTNPreviewAll.visible = false
    end if
    ..does work
    can you spot the difference?:)
    apparently it HAS to be a little s
    just glad its working now, i put it in the beforeload like you suggested, thx for the tip
    cheers,
    Maarten

  • Hide/Show Radio Buttons

    Hi friends,
    I have a radio button page item which is showing two values like
    <li>4 Stars
    <li>5 Stars
    I need to show these two radio buttons according to the employee number that is firing on the field Employee Number.
    Suppose, for an example i need to show 4 Stars if he is an ordinary employee. If he is an CEO means then it has to show both 4 Stars and 5 Stars button.
    How i can achieve it friends..
    For that i tried by using DA, but it failed. I have the query to restrict the radio buttons according to the employee number which is working fine in sql developer at the back end. But im going wrong in implementing it in APEX via DA, as it is not working over there.. This is the query
    SELECT '5/Stars' d, '5/Stars' r
    FROM DUAL
    WHERE (:P85_EMP_NUMBER) = (SELECT employee_number
    FROM apps.xxhy_ams_details_v
    WHERE UPPER (job_name) = 'CEO')
    UNION
    SELECT '4/Stars' d, '4/Stars' r
    FROM DUAL
    WHERE (:P85_EMP_NUMBER) IN
    (SELECT employee_number
    FROM apps.xxhy_ams_details_v
    WHERE grade_name BETWEEN 1 AND 4
    OR (:P85_EMP_NUMBER) =
    (SELECT employee_number
    FROM apps.xxhy_ams_details_v
    WHERE UPPER (job_name) = 'CEO'))
    UNION
    SELECT '4/Stars' d, '4/Stars' r FROM DUALBrgds,
    Mini

    Hello
    Are you using a Select List or other LOV item for employee selection?
    If you are you can use cascading lov under the radio button
    - you add <emplyee select list item> to Cascading LOV Parent Item(s) and to Page Items to Submit
    - and then on the List Value Definition you use something like:
    SELECT '5/Stars' d, '5/Stars' r
    FROM DUAL
    WHERE :P2_EMPLOYEE = (SELECT EMPNO FROM EMP WHERE JOB LIKE 'PRESIDENT') --:P2_EMPLOYEE is select list
    UNION
    SELECT '4/Stars' d, '4/Stars' r FROM DUAL
    If you are receiving employee number on your page you can just use List Value Definition of radio button like:
    SELECT '5/Stars' d, '5/Stars' r
    FROM DUAL
    WHERE :P2_EMPLOYEE2 = (SELECT EMPNO FROM EMP WHERE JOB LIKE 'PRESIDENT') --:P2_EMPLOYEE is text field or hidden
    UNION
    SELECT '4/Stars' d, '4/Stars' r FROM DUAL

  • Needs to be Hide Additional Planning button on ME21N/ME22n/ME23n

    Hi All-
    Is there anyway we can disable the 'Additional Planning' push button on 'ME21N/ME22N/ME23N' either using user-exit or 'BADI's?
    Please let me know..
    Thanks,
    Sony

    using transaction variants we can disable the additional planning button in the me21n/me22n/me23n
    transaction code for creating a transaction variant is SHD0.

  • Hide an HTML button using javascript

    Hi,
    I need to hide an html buttton using javascript. I have an radio button with values "YES" and "NO". If is select NO then i need hide the button without refreshing the page. Can anyone suggest me how to hide an button using javascript.
    Thanks
    Prashanth

    Prashanth,
    The exact solution will vary based on a few factors. The basic idea is to place an event handler on the radio button item that calls a function to hide/show the button. You might also want to call that function when the page loads too.
    If you put an example page on apex.oracle.com and provide the workspace/username/password I'll take a look. You can create a new account for this purpose.
    Regards,
    Dan
    Blog: http://DanielMcGhan.us/
    Work: http://SkillBuilders.com/

  • Need forward button to only appear after slide is viewed

    For Education purposes I dont want my students to be able to forward through the course without viewing all of the information. So I remove the forward button on the skin editor. This creates a problem if the student clicks return on accident or only wants to hear the beginning of the previous slide. They now have to watch the entire course or page again. i have tried to create an Advanced action on enter to show a hidden button if the slide was last viewed or else hide but this does not work bc if they go back multiple slides the button only shows on the slide they go back to.  
    I can achive this by creating a variable and advanced action per slide but this will require me to make one variable and action for each page.
    So what I need is one button (goes to next slide when clicked) that is on every page (entire program) but only shows if the user goes back to that page (its been previouly viewed). There has to be a one button one action to achive this.... But its beyond me... is it beyond you too????

    Hello and welcome to the forum,
    Which version of Captivate do you use?
    Lilybiri

  • How do I create a toggle (hide/show) button in Captivate 5?

    What is the best method to create a button that will hide / show a particular caption? I looked into using an advanced action, but have not been successful in indicating the correct variable / control statement to make it work.
    Anyone have a button with this purpose developed already? I would love to be able to copy/paste it into into my piece and just change the names to make it work?
    (How lovely that would be!!!:)
    Thanks in advance!
    -Kate (cgoebelx)

    Hello Lilybiri,
    Thank you for responding and yes, I believe this is exactly what I'm trying to accomplish!
    Since it is the first time I’ve ever had to use the Advanced Actions in Captivate before, I’m having an issue re-creating the screen shots you sent me verbatim. Here is how far I was able to get before I noticed that the v_visib “if” statement is not “selectable” in the “else” piece of the statement.
    Do I need to “save” the “if expression” before I’m able to select it as a variable in the “else section”?
    Thank you for all of you assistance, it is MUCH appreciated!
    Sincerely,
    Kate (cgoebelx)

  • Button to hide/show regions

    I need to hide/show regions of a page based on when the user clicks a button.
    I have added the buttons to my page. I see there is a display condition section for the region. How can I tie them together to hide/show.

    Quick fix.
    http://htmldb.oracle.com/pls/otn/f?p=9741:1 (test/test)
    placed a couple of buttons in a different region, both as just redirects.
    Show has the following pl/sql expression as condition
    :REQUEST = 'HIDE'
    Hide has the following pl/sql expression as condition
    :REQUEST IS NULL OR :REQUEST = 'SHOW'
    The region has the following pl/sql expression as condition
    :REQUEST IS NULL OR :REQUEST<>'HIDE'
    - Neelesh

  • External topics using Hide/Show button

    I need to be able to add a Hide/Show button for external topics - i.e. topics that are not part of the RH project, but rather linked to from the TOC using http://
    Thanks in advance

    Hi there
    I'm unclear on what you are wanting. Do you mean that you have perhaps a link to Google, and somehow you need to cause a Hide / Show button to appear on the Google page?
    I'm not sure that's even possible.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

Maybe you are looking for

  • Illustrator cc 2014 dosen't open old big size file Black screen and crashing

    I installed illustrator cc 2014 I can not open some of my old files... black screen on waiting....  Meanwhile writes above is not responding If file size is larger it's a problem My OS Windows 8,1 pro "Please help"

  • How do you know what speed discs to use?

    I experienced a problem backing up my iTunes library and found out it might be due to the DVDs that I was using. I have a G4 iMac running 10.3.9. It has a superdrive but I am not sure how to figure out what speed disc to use. Can anyone help? My 16X

  • How can I fix a problem ? that a file is missing on my itunes , and it is preventing me from upgrade  my version of i tunes

    I really need help!!  A file is missing from my itunes  and now I can't upgrade my Itunes from the older version i got do not know  how to fix it, is there anyone who can help?

  • Raw file opens as jpg

    Can somebody help me. I am running CS3 on MacOS X. with Camera Raw 4.1 plugin. When I open RAW file it is opened on in RAW editor but in Photoshop as a Jpg file with different name. example: initial file:L1010860.RAW when it is opened in photoshop th

  • WRT54G in My Network Places

    Hello, I had been having some problems with my connection and an Exception GIFException in Module aviWUSB54Gv4.dll@002516B. Then is just went away as suddenly as it showed up. However,when the error was gone I noticed that my connection/security sett