Shape button not working in preview made

Hi
I am working on captivate 8 responsive project. I have created button using shape.
But when I publish for preview mode in Mozilla latest browser and  found that all slide content disappear.
Also checked with sample responsive project in captivate 8. I found same issue.
Please help me in it.
Thanks and Regards,
Manish

Smart Shape buttons do not work in Firefox i'm afraid, it will leave the whole slide blank. We've had a good look at trying to find a fix/hack but unfortunately it looks like something Adobe and/or Mozilla need to sort out.

Similar Messages

  • Smart Shape Buttons Not Working With Scalable HTML5 (in Captivate 7)

    Hey everyone,
    first of all: everything was fine with CP 6, but since we upgraded to CP 7, I have troubles with smart shape buttons (exported as scalable(!) HTML5)! This is incredibly annoying.
    When a project is exported as scalable HTML5, I cannot click smart shape buttons which I use quite often. I tried Chrome, Firefox, Safari, iOS, ...
    When exported as flash or non(!) scalable HTML5, everything works, but it looks horrible on Smartphones – so this is not a solution we can work with.
    I uploaded an examle:
    Captivate-File: https://dl.dropboxusercontent.com/u/340109/A1/Test_CP_Forum.cptx
    Non scalable HTML5: https://dl.dropboxusercontent.com/u/340109/A1/Test_Non_Scalable_HTML5/index.html
    Scalable HTML5: https://dl.dropboxusercontent.com/u/340109/A1/Test_Scalable_HTML5/index.html
    We have customers waiting for projects to be finished and I really rely on clickable smart shapes!
    I kindly ask for a solution
    Georg

    I'm using a Mac (latest version).
    @devices: Android and iOS smartphones and tablets as well as Mac and Windows PCs.
    "Do you see this same issue on a blank project (With 2 or 3 Smart Shapes) ?"
    I'm not sure if I get you right, but the project I posted is nearly a blank project (created with CP7). So I think the answer is "yes".

  • Buttons not working in preview mode

    i have a really strange issue that i have spent way too long on and need some help.
    I have a submenu i created, from a template, and had everything working perfectly.  i removed the text layer from the buttons on the right side and now all but 3 links work.  I have deleted the "damaged" button and copied a working button nd then relinked and it still doesn't work.  I have turned off auto-button routing and re-numbered every button.  I was able to get 2 of the buttons to work (no idea how) but now they are not working again. 
    I am sending a complete screen shot of the damaged button, compared with one right beside it.  Please tell me what i am missing?

    For that matter, the "return to menu" which is set to a Main button type, isn't working either.  that is one of the three.  After i had removed the damaged button and copied it from another it worked.  Then i simply edited the text of a different button (mind you one that still works) and the "return to menu" quit along with the bottom 2 buttons.  I just can't figure it out.  I have shut the app down and restarted and nothing seems to be working

  • Encore Remote Preview Buttons Not Working in Preview Mode

    I have had this annoying problem on several ocassions and it's back again. I have never been able to figure out what causes it.
    When in the prview mode to test the DVD compliation to see if the remote buttons will change between the menu buttons I created, I am unable to select any of the three buttons in the menu with the remote selector at the bottom of the preview window.  I am able to select them with a mouse click but not with the remote buttons meaning that when the DVD is built, a real reomte will not change the titles that are associated with each button.
    What can be causing this to keep happening.  The compilation in Encore is a linked composition form Premier CS4--both Encore and Premier are CS4.
    Please help please.
    Thanks!!

    I know this post is old, but I found it as I am having the same issue.  Encore CS5. I have a menu that I have 9 buttons layed out, near the bottom, and the previous/next and main menu buttons are near the top. The 9 on the bottom are each numbers 1-9. However when I preview it starts at 1 then pressing right arrow does not jump to number 2 but #11, the "next" arrow button on top of page. 
    I will post a screen shot with buttons 1-9 hilighted, showing they are not touching, and the button routing turned on.
    Any thoughts? 
    I guess I will make a new menu and see if I just need to reuild it.

  • Title & Menu Buttons not working correctly on remote control/ set top player but work in preview.

    Title & Menu Buttons not working correctly on remote control/ set top player but work in encore preview. This only happens for a Blu ray project. When a user presses the menu button it should go to the previous menu they were on but it goes to the main menu. When they press the title button they should go to the main menu but it doesn't do anything. My DVD projects work as expected.I've tried creating a new "test" project with different footage and still get the same undesirable results.
    Overrides grayed out and set to "not set" for timelines and menus.Project settings and build are set to blu ray. Also I've noticed when I preview a Bluray project the preview window shows a red colored disc next to the Title button when viewing the timelines and green when playing the menus but not so for a DVD project it displays red if motion menus and or timelines are not rendered/encoded. I'm not using motion menus and all the media is encoded according to the project specs.
    I've searched this forum but couldn't find the answer. Any help or redirects to a solution would be appreciated. Working with CS5. Thanks.

    I found out on my Samsung Blu ray player the remote has a tools button on it that brings up audio, angle, chapter selection etc.and also title selection which is actually the menus and the timelines unfortunately. It's not as easy or direct as last menu selected but it's a workaround at least. I also plan on using a pop up menu. I'll let you know.

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • Buttons not working, all of a sudden?

    Nothing has changed, no editing was done, and all of a sudden, buttons not working.  I trued exporting from Flash again, with the same pblish settings.  Bit Action Script seems to give me a message now saying it wont export as a button.  Tried AS 2.0 and 3.0, but i made original files in 3.0
    thoughts???
    thank you!

    Either convert that symbol to a button symbol so that you can use the code you showed, or assign it an instance name and place the following code in the timeline...
    yourMCName.onRelease = function(){
         getURL("page2.html","_self","GET");
    Where yourMCName is whatever instance name you assign

  • Power button not working with 7.1 update

    Power button not working with 7.1 update

    I take it your phone was still under warranty then?!
    Unfortunately I was not so lucky, and my experience was rather poor service-wise. They're called Apple Geniuses but I beg to differ...
    I'm not sure where in the world you are located, but my "experience" involved visiting the Leeds store and confusing everyone with this issue. I can tell you, just by the looks on their faces, they had never been faced with this problem before!
    I suggested my phone was rolled back to the version it was previously to establish whether this was the underlying issue. I was asked whether my phone had been backed up and as it had the "genius" proceeded to restore the phone "as it came out of the factory" to quote him.
    When this was completed the phone was still doing the same thing and I was advised "the software update must have highlighted a hardware issue." I was told it would have to be physically repaired and was told to have this done by a third party as Apple would charge approximately £160. Incidentally, I work in IT and repair PC's, laptops and mobile devices for a living and made a point of raising that a sleep/wake button ribbon cable for an iPhone 4S can be bought on eBay for as little as £3.00...if indeed it does need replacing, which I suspect it does not.
    Anyway, so now I was left with a phone for the rest of the day which was blank and still the problem remained. On the train, on the way home, you can then imagine my disbelief when I actually took the time to look at my phone's configuration and realised that iOS version 7.1 was still installed, so obviously the issue would still remain. So the visit to the "genius bar" was a complete waste of time as I'm still in the very same position, and I still blame the 7.1 update for this...let's home 7.2 is released very shortly and this solves the issue...
    I have downloaded the package to roll the version back to 7.0 but I'm a little reluctant to carry this out yet as I would expect Apple to so the issue they have caused. This is NOT hardware related but software.
    I seriously think Android is calling me...

  • HT1688 Power button not working

    Power button not working on iPhone 5

    This is a defect on iPhone 5 power button that wears out in about 13-14 months of usage just after you go out of warranty. Apple is aware of this issue but chooses not to accept this as a defect. I asked the Genius bar guy and they told me this is a common case recently and costs $269 to replace your phone. There is no repair option. I am very mad and believe Apple needs to take action or will lose their customers. All iPhone 5 owners that I know started having this problem in the month of 13 -14.
    I believe if the numbers go high, Apple may start a recall program. Please encourage anyone with this problem to post here. $700 phone should not wear out this soon. Apparently the part is defective on almost all iPhone 5 devices.
    Other threads about this:
    https://discussions.apple.com/message/23797113#23797113
    https://discussions.apple.com/message/23258974#23258974

  • Print button not working with Xerox pluggins installed

    Thanks to the wonderful people here I found that if you have any Xerox plugins in /Library/Printers/PPD Plugins you can experience the print button not working.
    Removing them fixes it which is nice but I need the plugins, anyone know a work arround?

    I've seen this happen with some of our Xerox PPD's on PC's. The cause in this case, is their reference to virtual memory with older OS systems.
    I instead used an older PPD or a PPD I had edited to support 200"x200" custom pages sizes, supporting full color.
    All I needed was a clean postscript file.
    The Adobe 7 PPD writes clean PS.
    If you need some kind of VIPP instructions in your PPD for the Xerox, I'd look at getting a newer PPD form Xerox made for OSX.

  • Central button Not working ..... now ? 5 buttons not working !!! What can i do?

    Hello all,
    I bought my blackberry torch in September 2011  and two months ago the center button was problem (bellow the screen)  and not working at all. so I gave it to a company to fix it and told me to round 45 euros to fix it. also told me that it will be ready in the new year because they would have holiday. The man there made a report saying the problem with the center button (only had this problem, I note) and now they brought me back and told me  they can not fix it and they send it to blackberry but  even they could not fix it.  Enable my phone  front of them and did not operate any button of 5 bellow the screen (two to the right of the center button that had problems and two to the left). I told them to send it back to the technician because when I gave to you to fix it only one button was not working and now none of the 5.
    After nearly two months they brought me back and told me ''we can not do anything ....'' So,five buttons not working.
    What can I do in this case????
    Not got it from there yet to see what I can do or what can I say?
    I think I'm right. It is reasonable to I want my phone back with only one button broken as I gave it to them and not with extra 4 buttons not work.
    Sorry for my english, I hope you understand  

    A battery pull does nothing to improve the performance of the battery, it clears your phone's cache of unwanted fragments that have accumulated and this improves the performance of your phone.  I doubt it's as simple as this but it wouldn't be the first time I've heard of a service centre charging money for repairs when a simple battery pull would have done the trick.
    When you get your phone back (working properly or not), I suggest trying a battery pull. 
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Ducking music-track not working in preview

    Tried ducking a music-track in several clips, but couldn't get it to work reliable. On the first clip it worked, on others volume level of the music-track stayed the same, whatever value I've set the ducking slider to.
    After much experimenting and browsing the web, I found the following post by Winston Churchill:
    http://discussions.apple.com/thread.jspa?messageID=6636047
    He recommended to export the clip and check the final result. And in fact, the music level followed the setting in the exported movie.
    So this is a bug in iMovie08. While it is not a big issue, if you know the ducking works on export, it can drive you nuts, if you rely on iMovies preview mode and can't get it to work.
    And what makes me wondering even more, that this post is from Feb 18, 2008 and the bug is still present in June 2008.
    Peter

    hi there
    i had a problem with my wifes iphone 4s, today morning while travelling to work i changed a setting on repeat option and changed it to repeat artist, it was fine until when i finish my work and on my way back i found songs are not playing anymore, lots of stop signs next to my song list, play/pause button not working, album arkwork keep moving from one to another on its own, so after i reach home i try to do some research on Apple support communities, try to soft reset my phone closing all the apps on background didnt work, also note that control centre music player was not working as well. none of the solutions worked. after trying for two hours i found out that the trouble is in repeat options , so i changed it from repeat artist to repeat off. and the music start playing as usual, but i still have those stop buttons next to the songs i tried to play earlier. At least it fixed temporarily. please also note that in the meantime i tried to sync my phone with the pc and suddenly its start syncing all the songs again assuming there were no songs on my iphone.  so guys i think soft reset might not help all the time but try to remember what settings you changed recently and change it back to the original option, not sure ,but it might help.

  • Frames panel: looping button not working

    Frames panel: looping button not working
    I use Fireworks MX 2004
    Frames panel: looping button:
    When I set looping to 2, it stops after 2, as it should.
    All other values, i.e. 1, 3, 4 etc will go on 'forever'.
    What's wrong?
    Thank you for your help.
    Adrian

    This is just a simple exercise.
    http://www.tudo.co.uk/testing/looping_problem.png
    http://www.tudo.co.uk/testing/looping_problem.gif
    In the png file, Frames panel, bottom left, where I can set
    looping to
    any number, including 'forever', I set the looping frequency
    in this
    case to 1. So I expect it to stop after one movement up into
    the right
    top corner and return to bottom left.
    When I play this in 'original' or in 'preview' in Fireworks,
    the
    animation moves continuously instead of stopping after one
    round. That
    is my 'problem'. Or can I not expect this to work while it is
    still in png?
    When I export it to gif, it works exactly as wanted - once
    only.
    Adrian
    Alex Mari�o wrote:
    > adrian,
    >
    > Could you post the png file online and explain exactly
    what you are
    > trying to achieve?
    >
    > alex
    >
    > adrian stock wrote:
    >
    >> Frames panel: looping button not working
    >>
    >>
    >> I use Fireworks MX 2004
    >>
    >> Frames panel: looping button:
    >>
    >> When I set looping to 2, it stops after 2, as it
    should.
    >>
    >> All other values, i.e. 1, 3, 4 etc will go on
    'forever'.
    >>
    >> What's wrong?
    >>
    >> Thank you for your help.
    >>
    >> Adrian

  • Logitech mouse buttons not working in photoshop cc 2014

    logitech mouse buttons not working in photoshop cc 2014 winds 8.1. Is this a common problem?
    I have updated the latest drivers and have a few buttons programmed with keyboard shortcuts that used to work in previous versions of Photoshop but don't work now.
    Scrolling with mouse in bridge stopped working in cc butI see it is now working.
    any ideas?

    Many Photoshop extensions are not compatible with Photoshop CC 2014 for Adobe removed support for Flash Panels in CC 2014. Many extensions panels are flash based.  Check with the developer to see if their blendmein extension works with CC 2014.
    Adobe does not maintain Photoshop so it backward compatible with prior versions of Photoshop.  This brakes things like action scripts plugins extensions etc. Keep old version of Photoshop installed....

  • IPhone 4 middle button not working

    Having problems with the iPhone 4 middle button not working anyone else with the same problem ?
    Thanks

    i have the same problem. since you're software is already iOS 5.1 go to settings>general> accessibility>the settings after triple click home, i forgot what is it called but that would help.

Maybe you are looking for

  • Print-off the scanned images for vendor invoices

    Required report. Print-off the scanned images for vendor invoices Basically, his selection screen will be:             Vendor Invoice   XXXXXXXXXX  to    XXXXXXXXXX Once the user executes the program a list of invoices is presented to the screen. The

  • How to merge two partitions on lion

    Hello everyone. I have a big problem... I want to merge two partitions... (I know, disk utility...). In fact, I can't merge a partion which looks locked, with my lion partition via disk utility. On this locked partition I had my old snow leopard OS s

  • Loop with dynamic where clause

    hi,     In a program we need to use a loop into an internal table with a where condition is decided on run time. "Select" from database table is using dynamic where clause and it is working fine. For the loop part does any one have any idea on this?

  • SSO is failing in custom login module

    Hi All, We are facing a problem with SSO in Portal, which is being called from another Intranet Application after SP Upgrade. We have a common Intranet site which is a center point of access to many other applications like Portal, Java etc. We used L

  • Does the audition cc trial version hate windows 8.1?

    I d/led the trial because cc is supposedly the only version that is compatible with 8.1. It ate all my ram and slowed my machine to a crawl. I uninstalled and tried to reinstall and it took so long I gave up (after almost an hour it still wasn't done