Button shows on start frame when autoplay is disabled

Hi,
I've created projects for clients and the first slide of each project is a slide video and around 50 seconds in, a button pops up so the user can click through to a PDF if they want.
However, each project has autoplay unchecked. so when the user first sees the video frame with the play button, the PDF link button is also there. Why is that?
Please see the image:
Please help! I would like this resolved for the client ASAP
Many thanks in advance

Hi RodWard,
The project is being published to Adobe Connect - so not as PDF. And the autoplay option is unchecked.
Thanks

Similar Messages

  • Captivate 7 not showing the red frame when recording a slide

    I've been using the "Record Additional Slides" button since Captivate 5, and never run into this problem: the red frame that lets you define what you want to capture is not displaying. When I try to record, Captivate captures a portion of the software window, and the desktop. How can I force the red frame to display?
    Thank you for your help!
    Heloisa
    *** By the way, it is happening when I run Captivate from my Apple computer. I just tested running Captitvate on my parallels machine, and the frame does show up.

    Hello,
    Just to clarify, the problem (no red frame while recording slides) happens only on the Apple version of Captivate. It runs fine on my parallel machine, however I am running a trial version there. My license is for the Apple platform. I'm concerned because my trial period will expire soon. the weird thing is that the Captivate that I have in my machine at home does not present this behavior. Only the one in my work machine.
    The project resolution is 930px x 697px
    This is the 14th module that I am developing for a training suite.I have never encountered this problem before. It all started after the Maverick's fiasco
    So do  you think I should uninstall Captivate and start a brand new install? I tried changing the name of the folder but that didn't help much.
    Thank you!
    Heloisa
    *****I just uninstalled and re-installed Captivate 7 7o my apple machine, but the problem persists. ;(

  • Twitter button showing 3 sided frame and cutting 4th side short

    So I went to the goodies thing at twitter.com and it has a follow me thing, i believe, that you paste in as an html snippit which i have many of on my sight . . but for some reason the twitter one no matter the button i use when i publish shows a 3 sided blue frame around 3 sides and cuts short the nice rounded corners that should be on the 4th right side. on iweb it looks fine and i cant find anyplace that borders are selected on or not white/off.
    any ideas?
    this is the page:
    http://www.mccabe-motors.com/MG/Contact_Us.html
    this is the code for the button:

    That's a common issue with many snippets and code. Drag the HTML snippet larger, particularly wider, and then republish. Do not use the Apply button after resizing the snippet's size. Also I doesn't matter if the snippet's borders overlap near by items in iWeb as it won't matter when published.
    OT

  • HT3986 boot camp is no longer showing on start up when pushing alt option.

    After installing boot camp and windows 7 professional everything was waorking well changed my start up pref to Mac and usees option Alt at start up to select windows. Now however after a back up to external drive and running disk encyption. I'm no longer seeing boot camp as a bootable potion on start up. I atempted chaning to boot camp on start uo but it ask for a bootable disk. Any help??

    It is beyond my understanding but others have discussed it.
    http://www.lukefitzgerald.co.uk/2011/09/encrypting-both-os-x-and-boot-camp/
    http://apple.stackexchange.com/questions/39699/how-do-i-set-up-a-mac-to-use-both -filevault-and-boot-camp
    http://macs.about.com/od/LionTipsNtricks/ss/Filevault-2-Using-Disk-Encryption-Wi th-Os-X-Lion.htm

  • StageVideo on android shows a black frame on the start and end of video playback

    When my screen starts up it goes completely black for a moment and the interface becomes unreponsive for about a second when my stagevideo player class is added to the stage. My videos are encoded using Adobe Media Encoder with the 480p android settings (vbr 2 pass). I tried cbr and that had exactly the same effect. This problem happens on both air 3.5 and air 3.4. I figure this has to be something caused by my own code because I don't see many discussions about this issue.
    package com.literacysoft
              import flash.display.Sprite;
              import flash.events.Event;
              import flash.events.NetStatusEvent;
              import flash.events.StageVideoAvailabilityEvent;
              import flash.events.StageVideoEvent;
              import flash.geom.Rectangle;
              import flash.media.StageVideo;
              import flash.media.StageVideoAvailability;
              import flash.media.Video;
              import flash.net.NetConnection;
              import flash.net.NetStream;
              public class SimpleStageVideo extends Sprite
                        private var stageVideoAvail:Boolean;
                        private var sv:StageVideo;
                        private var videoUrl;
                        private var vidWidth;
                        private var vidHeight;
                        public var theStage;
                        private var vid;
                        private var myX;
                        private var myY;
                        public var ns;
                        public function SimpleStageVideo(w, h, dastage, x, y)
                                  myX = x;
                                  myY = y;
                                  vidWidth = w;
                                  vidHeight = h;
                                  theStage = dastage;
                                  addEventListener(Event.ADDED_TO_STAGE, init);
                        private function init(e:Event):void{
                                  theStage.addEventListener(StageVideoAvailabilityEvent.STAGE_VIDEO_AVAILABI LITY, onAvail);
                        private function onAvail(e:StageVideoAvailabilityEvent):void
                                  stageVideoAvail = (e.availability == StageVideoAvailability.AVAILABLE);
                                  initVideo();
                        private function initVideo():void
                                  var nc:NetConnection = new NetConnection();
                                  nc.connect(null);
                                  ns = new NetStream(nc);
                                  ns.client = this;
                                  ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                                  if(stageVideoAvail)
                                            sv = theStage.stageVideos[0];
                                            sv.addEventListener(StageVideoEvent.RENDER_STATE, onRender);
                                            sv.attachNetStream(ns);
                                            trace('available');
                                  else
                                            vid = new Video(vidWidth, vidHeight);
                                            theStage.addChild(vid);
                                            vid.attachNetStream(ns);
                                            vid.x = myX;
                                            vid.y = myY;
                                            vid.smoothing = true;
                                            theStage.setChildIndex(vid, 0);
                                            trace('not');
                        private function netStatusHandler(event:NetStatusEvent):void {
                                  trace("event.info.code "+event.info.code);
                                  switch (event.info.code) {
                                            case "NetConnection.Connect.Success":
                                                      trace("NetConnection.Connect.Success");
                                                      break;
                                            case "NetStream.Play.Stop":
                                                      if (!stageVideoAvail){
                                                                if (vid.parent != null){
                                                                          theStage.removeChild(vid);
                                                      } else{
                                                                ns.close();
                        public function playMyVideo(url):void{
                                  ns.play(url);
                                  if (!stageVideoAvail){
                                            theStage.addChild(vid);
                                            theStage.setChildIndex(vid, 0);
                        private function onRender(e:StageVideoEvent):void
                                  trace("rendering video",sv.viewPort);
                                  sv.viewPort = new Rectangle(myX, myY, vidWidth, vidHeight);
                        public function onMetaData(e:Object):void
                        public function onXMPData(e:Object):void
                        public function onPlayStatus(whatever):void{
                        public function dispose():void{
                                  ns.close();
                                  ns.dispose();
                                  if (!stageVideoAvail){
                                            if (vid.parent != null){
                                                      theStage.removeChild(vid);

    Using Air 3.6 on a Samsung tab 2 - Android 4.1.1
    Having similar issues.
    I'm trying to play a different video corrisponding with a button on the stage.
    When I click the button, the video turns black, then shows the last frame of the old video then the new video starts playing.
    A just want the old video to stop and have the new one play with no flashing in the middle.
    This happens with both stagevideo and the fallback video object
    Works fine in flash player 11 windows.
    I've noticed a lot of similar type problems and some seem to be getting fixed with new Air versions.
    Anyone else currently having similar issues?

  • Why do show/hide buttons show when PDF is opened?

    I've created an interactive PDF with a series of show/hide buttons with rollover actions. When I export and open the PDF, some of the target buttons show up. If I mouseover, they correct themselves and go to their correct hidden state until I mouseover. Is this a bug and is there any way to keep them hidden from the start? Note that the target buttons overlap some, and I'm wondering if that is part of the problem so I'll test that, although not having them overlap isn't a viable solution.
    Thanks!

    Thanks for the response. Hidden until triggered was checked. I rebuilt the buttons and they seem to work fine now. It seems like InDesign is very finicky about the order of operations.

  • How do I Initialize a button to be enabled when the program start and if pressed then disable and gray it until a certain action is taken then comeback to the enabled state?

    Hi!!!
    I'm doing a program with the following buttons: Run, Abort, Repeat and Exit. When the program starts from the first time only Run and Exit button will be enabled and not disabled so the user doesn't press the Abort and Repeat button. The user has to select from a menu bar the test he wants to make then if he presses the Run button a pop up window will come up asking for the serial number and his name, and will comeback to the main program with the entered information. The user now has to press the Run button again to start the test, when the test starts the Abort button now will be enable
    d and not disabled, when the test ends the Repeat button will be enabled and disabled. If the user selects new test from the menu bar the whole process will come again. I'm having problems with the menu bar because it has a time-out and when that occurs the program gets crazy. Also I'm not sure about what mechanical action I have to use for the Run. Do I need to count the times the Run button is press so the 2nd time is pressed it will be disabled. Do I need to use a sequential and where I initialize the buttons so the first time they are like I want (Inside or OUtside the while loop that ends with the Exit button) Any help wil be appreciated.

    I'm not sure about the menu bar because i've never used them..i tend to go for listboxes instead.
    As for the buttons, if you want to wire the button to a local variable then the button must be a switch, otherwise a latch is ok. But remember you will probably need to reset the button at the end of a run (ie. wire a constant through the while loop to the local variable for the switch). To initialize the buttons at the start, wire constants to their locals outside the main execution while loop.
    Put the disabling/enabling functions in the parts of the program the button has activated. For example, you say the 2nd time the Run button is pressed you run the 'test', enable the Abort button and want to disable the Run button - put these property nodes into th
    e 'test' sequence/loop.
    Sequences are useful to control when you want buttons to be modified. I use them if i cant sequence the order of execution any other way. But try and avoid using multiple frames as it can get confusing if you start hiding code.
    If you are still having problems, post an example of your program in no higher than LV 6.0.2 and i will try and adapt it for you.
    Kim

  • HT202159 I was downloading a app from the app store and it downloaded about 85% then gave an error message download failed but when I reopen the app store to the purchases the resume button show but when i click it the same error comes up failed to downlo

    I was downloading a app from the app store and it downloaded about 85% then gave an error message download failed but when I reopen the app store to the purchases the resume button show but when i click it the same error comes up failed to download

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Select
    /var/log ▹ install.log
    from the hierarchical list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar. Then select the messages from the last installation or update attempt, starting from the time when you initiated it. If you're not sure when that was, start over and note the time. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • My Apple TV won't start. When turned on it shows an Apple TV box with a cord leading to but not connected to an iTunes icon

    MMy Apple TV won't start.  When turned on it shows an apple TV box with a cord leading to an iTunes icon. I have tried unplugging  still get the same message. Our electricity was off a few days ago. Could the HDMI cord be bad?

    It's not the HDMI cable.
    If you had a power surge, your Apple TV probably just needs to be restored.  That logo means you need to plug it into a computer with iTunes installed to restore the device to factory settings.  You'll need a micro-USB cable to do so.  Plug the usb into the apple tv in the micro-USB slot, then into the computer with iTunes already opened.  A screen will appear in iTunes with a button to restore the device. 
    If you don't have the appropriate cable on hand you can make an appointment at an Apple Store and they'll restore it for you.  Just go to locate.apple.com to find the closest location and make an appointment.  Keep in mind if you can't or don't go to an Apple Store a private repair place may charge for this service.

  • HT201317 My photostream in windows 7 PC does not shows any pic. when i click on slide show it start showing me slide shows of pic but when i try to copy files i cant do as no photo is viewd in list mode. This problem has arised since IOS is updated.

    My photostream in windows 7 PC does not shows any pic. when i click on slide show it start showing me slide shows of pic but when i try to copy files i cant do as no photo is viewd in list mode. This problem has arised since IOS is updated.I reinstalled my icloud and checked if icloud sharing is ON. I can see pic in my photo stream in PC only in slide show mode. While in list mode it shows pics before i actually click on photostream folder. My phone memory is out becose of bunch of photoes. How do i copy my photostream photoes.

    Hi all.  I can’t tell you how to solve your iCloud 3.x issues.  Heck, I don’t think they’re even solvable.
    But if you had a previous version of iCloud that was working correctly then I can definitely tell you how to solve the “iCloud Photo Stream is not syncing correctly to my Windows 7 PC” problem.  …without even a re-boot.
    Log out of iCloud 3.0 and uninstall it.
    Open My Computer and then open your C:\ drive.  Go to Tools/Folder Options and click on the View tab.  Select the “Show hidden…” radio button and click on OK.
    Open the Users folder.
    Open your user folder
    Open ProgramData (previously hidden folder)
    Open the Apple folder – not the Apple Computer folder.
    Open the Installer Cache folder
    In Details view sort on Name
    Open the folder for the newest entry for iCloud Control Panel 2.x – probably 2.1.2.8 dated 4/25/2013
    Right click on iCloud64.msi and select Install.
    When finished, the synching between iCloud and your PC will be back to working perfectly as before the 3.0 fiasco.  The pictures will be synched to the same Photostream folder as before the “upgrade”.  Now all you need to do is wait until Apple/Microsoft get this thing fixed and working before you try the 3.x upgrade again.
    I think the iCloud 3.0 software was written by the same folks who wrote healthcare.gov with the main difference being that healthcare.gov might eventually be made to work.
    For those of you who hate to go backwards, think of it as attacking to the rear.  Which would you rather have, the frustration of no synching or everything working on an older version?
    Good luck…

  • Cant sync music from iphone 5... When sync button is clicked starting sync appears and dissapears and nothing happens i cannot find a solution for this... Someone help me please

    I Cant sync please help me... Im using iphone 5 ios 7.1... when sync button is clicked starting sync comes and nothing happens and no music on my phone... Im trying to sync my playlist in itunes... I have itunes 11.1.3.8 64-bit Windows 8

    My apologies...the version is 11.1.4.62 not as stated aboive in my problem description.  I'm trying again and it just finished syncing fine and my iPhone 5 is still connected to iTuns physcially with USB lightening cable and is displaying the iPhone icon top right.  I clicked on it and iTunes is now "hung' or  locked up.  Shows to be an active running application but can't get back to it so willl have to kill with task manager.  There is some kind of problem going on with the latest version of iTunes and Wndows 7 and 8.1 or something.  My iPhone 5 now has a new feature that it is now asking me if I "Trust" this computer.  iTunes just came "unhung" after several minutes while I was typing this. Now I am going to start the backup to this computer HP Winsows 8.1 and iTune 11.1.4.62 and see what happens.  Says it is Backing up Jerrys iPhone but the Barber Pole progress bar is not turning an iTunes is hung again and I cant get back to it from this page I am typing on.  Maybe it will eventually release as it did a moment ago. 

  • Linking frames to other frames when a button press

    Hi every one new to Java in my 2 year at University College Chester,
    4 week using Java to build an application, how do you link to another frame when a Jbutton is pressed sending full control to the new frame, i want to leave the old frame open as when i close the new frame i wish to return to the old frame! and would i use system.exit(0); to close the new frame as i think this closes the application altogether.
    Any help Please!
    Thank inadvance for help!

    Just create a new JFrame and show it on button usage, maybe additionally assign the focus to one of it's components. Set the JFrames default close operation to DISPOSE_ON_CLOSE and you should be fine.

  • HT201263 my ipad still will not start. When connected to wall charger it shows the connect to itunes. When connected to computer it is a black screen and slightly blinks

    my ipad still will not start. When connected to wall charger it shows the connect to itunes. When connected to computer it is a black screen and slightly blinks

    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Home button not working or unresponsive, fix
    http://appletoolbox.com/2013/04/home-button-not-working-or-unresponsive-fix/
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
     Cheers, Tom

  • How can i open a new frame when i click on a button

    hi,
    i create 2 frames and i want when i press a button in the first frame the second will be showed.
    thanks for the help

    call "new NameOfYourClass(your_parameters)" to get a new instance of your class... if your class extends JFrame and you setVisble(true); at the end of its constructor, for every new instance a new window will show up.
    but yes, you should describe more specific what you want :O

  • Creating a plot on a java Frame when a button is clicked

    hi
    I want to create a plot in a java application in a frame when a button is clicked.I mean to say a
    a plot between two single dimensional arrays one as x-axis and the other as y-axis. Can u please suggest me with an example
    Thank u

    JFreeChart

Maybe you are looking for

  • WIFI cutting out all the time, since I downloaded software version 10.8

    Ever since I downloaded Mountain Lion 10.8 I have wifi issues. My wifi continually cuts out, I have to turn wifi off and turn it on again to connect. This occurs every 5 to 10 minutes. I have looked at other solutions but none have worked. I have res

  • Verizon admits error in cancelling my order and offers no restitution

    I ordered an iPhone 5 and Verizon admits that my order was automatically cancelled by mistake.  I asked a Verizon representative, "who cancelled the order and why?"  The Representative claimed no explanation was given for the Cancellation.  According

  • Problem with FCP since update to 10.0.6

    I'm up to date on Mac OS X and FCP, but since updating to FCP 10.0.6 switching events causes it freeze.

  • Keyboard shortcut to trim a video

    Let say I have a video clip on the video 1 time line.  To trim a video, I would put my mouse pointer at the start or end of the video until the '[' or ']' sign appear and then start dragging.  I am wondering if there a quicker way to do this.  Perhap

  • Simple pattern on a string

    Hi all, I have a string, basically formatted as a URL. Sometime it refer to a poll and some times not. So I used a patter to find that a specific string directed a poll or not. Here what I have tried.         String str = "http://SimpleSite.com/poll?