Is it possible to disable the play button when exporting to exe or app files?

Is it possible to disable the play button when exporting to exe or app files? Can the app just boot up without the playbutton?

Are you talking about auto play option or the play button on Playbar?
I just checked the EXE ran fine without requiring any play button to start as per my settings.
Is this waht you are looking to achieve?
Thanks,
Anjaneai

Similar Messages

  • Is it possible to disable the PREV button?

    I need to prevent people from navigating back to the previous page. Is it possible to disable the PREV button?

    It is clear now that choices made are remembered - even when you navigate back and follow another path - until the form is submitted. Indeed, the response table only shows the valid choices. I can see a number of reasons why this was implemented in the way it is because it is less frustrating for a user has completed the responses on a page, but is navigating back and then returns on that page with all the choices made remembered. However, as a forms creator you need to be aware of this and add aditional rules to prevent double or wrong actions as a result of "just remembered" choices. And that is what I did to solve the problem, I added additional rules.
    Thanks for the help!

  • Is it possible to disable the "reopen" button in the expense report?

    Hi,
    Is it possible to disable the "reopen" button in the expense report?  If it is possible, how can we disable it?  Thanks in advance for any insights anyone can provide.
    Thanks,
    Andrew

    Hi Manasa,
    My client's finance team have strict requirements around reopening of expense report.  Ideally, they want the button removed after expense has been approved.  Or have a way to add permission around this button and limit it to auditors and approvers.  Any insights/recommendation would be greatly appreciated.
    Thanks,
    Andrew

  • Disable the approve button when ever nonapprover login

    Hi Friends,
    i want to disable the approve button , when ever non approvers login into that requisitions page. please let me know, how to do. only approvers will have to see that approve button. can we achieve through OAF personalizations or Extensions.
    Thanks
    vamshi.

    Hi,
    You can extend the Controller of that page and in extended controller on page load
    Capture the Requistion details and valid approvers from a Prepared Statement.
    Then match the Approvers with the Login user name (pageContext.getUserName())
    If the user name is not there in the valid approvers then set the disabled property of button to true,
    bean.setDiasbled(true);
    Thanks,
    Gaurav

  • How to disable the back button when displaying a form

    Hi ,
    i have form A calling form B, when form B is displayed i want to disable the
    back button in the explorer so as not to allow the user from going back to
    form A.
    thanks.

    When you open a new window, call following javascript function also to disable the "back" button.
    window.history.forward(1);
    It will work.

  • Is there a way to disable the power button when iPhone is lock with a pass code?

    This is for security reason as you can still track ur iPhone/iPad when someone decides to steal it. My iPad 2 64gb + 3G and a MacBook Pro 17 was recently stolen and I was able to track it 10-15 mins (after the incident) until the thieve(s) decided to turn the iPad off. It would be great if someone or even Apple could add this option to the cellular versions so victims of theft could have a slight chance of retrieving stuff back (with the help of law enforcements).

    You cannot at this time. Feedback to Apple goes at www.apple.com/feedback. There are other ways for a thief to disable Find my iPhone. It is not really intended to track stolen devices although it will, it is more for lost devices.

  • Is it possible to disable the "pop" sound when adjusting the volume?

    It's just plain annoying.

    Thankfully, the solution is very simple. To silence the volume-changing beep, hold down the shift key while pressing the volume-up or volume-down key. (This doesn’t work when you use your mouse to select the volume menu on the right side of your menu bar.) If you’re using an iBook or a PowerBook, and you’ve set the Keyboard & Mouse preference pane to require the fn key in addition to the volume-changing key, don’t worry: adding the shift key still silences the beep and doesn’t require too much in the way of finger gymnastics.
    Ray...I knew I'd find something

  • Is it possible to change the background color when publishing as EXE Full Screen?

    I often publish Captivate projects as EXE - FullScreen. I would l like to set the background color outside of the EXE frame. Is that possible. When running my Captivate published .EXEs at full screen at a resolution greater than the project, a tan color background color appears and I would like to change it to black, or some other color. I tried the Skin - HTML background color, but that had no effect.
    Thanks
    Jack
    Captivate 7 / Windows 7

    Hi,
    it is - use the oItem.BackColor property
    BackColor PropertyDescription
    Returns or sets a value specifying the background color of text or graphics in an item.
    Property type
    Read-write property
    Syntax (Visual Basic)
    Public Property BackColor() As Long
    Remarks
    RGB value in long representation. You can use the standard Visual Basic colors, for example, vbBlue, vbYellow, etc.
    The valid range for a normal RGB color is 0 to 16,777,215 (&HFFFFFF).
    lg David

  • How To: Disable the Print button until Required Fields are filled out

    I have a PDF Form that I have created using LiveCycle Designer 8. On my PDF Form, I have a bunch of fields that are required. Is it possible to disable the Printer button until the user fills out all the required fields? We don't want a user being able to print out an incompleted form.

    It's not possible.
    However, you can create buttons on your document that "help" the user print
    just a part of the document: a certain page range, just the current page,
    etc.

  • Disable the Refresh Button. Please Help.

    Folks
    I need to solve a problem.
    I have an applet that takes on data from the user and click on
    the submit button.
    Now,I would like to disable the refresh button on the browser so that
    the user cannot refresh.
    Is it possible to disable the refresh button thru the applet?
    or via JavaScript?
    Please can anyone tell me how to do this??

    Hi
    I do not think it is possible to disable refreshing altogether. You might simulate something that looks the same by running the applet with 100%/100% dimension and launching that in a new browser window that has all the controls disabled, but that's not really a solution. It's more obfuscating.
    Why can't you store the values entered into the applet as a cookie? Then if the applet is refreshed init() will be called, check for cookies there and restore the state.
    Greets
    Bhun.

  • How to disable the cancel button in the ProgressMonitor

    hi,
    I need to know, is there any way to disable/remove the (cancel)button in the ProgressMonitor?
    One more problem is,
    Once i click the cancel button, isCanceled() return true, how to make it false again so that the process continue....
    It is very urgently.....
    please help me out.
    Thanks in advance.
    Regards,
    Deepa Raghuraman

    I don't think that's a good solution, because Cancel button itself is not disabled, so user is tempted to click it and nothing happens.
    A better but dangerous solution is this:
    progressMonitor = new ProgressMonitor(ProgressMonitorDemo.this,
                                         "Running a Long Task",
                                         "", 0, 100);
    progressMonitor.setMillisToDecideToPopup(0);
    progressMonitor.setMillisToPopup(0);
    progressMonitor.setProgress(0);
    JDialog dialog = (JDialog)progressMonitor.getAccessibleContext().getAccessibleParent();
    JOptionPane pane = (JOptionPane)dialog.getContentPane().getComponent(0);
    pane.setOptions(new Object[]{});Refer to the same question here [http://stackoverflow.com/questions/512151/how-do-i-disable-the-cancel-button-when-using-javax-swing-progressmonitor] .

  • Hating the play button!!

    my ipod wont let me use the play button when it warms up. it works when cold and first turned on. i have never banged it up against anything or droppped it in anything....no water spills nothing. so why is this happening?

    samanthafromauburn wrote:
    my ipod wont let me use the play button when it warms up. it works when cold and first turned on. i have never banged it up against anything or droppped it in anything....no water spills nothing. so why is this happening?
    Hard to say without physically examining it. Take your warmed up iPod  Nano to an Apple Store or an AASP so it can be "tested." 
     Every iPod comes with complimentary, single-incident telephone technical support within 90 days of your iPod purchase.  If you also purchased AppleCare, then your warranty is extended for technical support and hardware coverage for two years from the original purchase date of your iPod. 

  • Is it possible to disable the Force closur button from QE11?

    Hi
    Is it possible to disable the Force closur button from QE11 transaction code level?
    Thanks and Regards
    GVD

    Hello Chanti,
    Disabling the force closure button is not possible by creating a security role as security restrictions work on organizational elements like co codes, plant, s loc etc.
    Could you please let me know if the requirement is for all users or few users.
    Also you may want to try the transaction variant/ Screen variant option. The force button is available in program SAPLQEEM and Function ABFO which you need to tick the inactive button during recording. Take help from ABAP if required.
    Thanks
    Sahil

  • How can I disable the Voicemail button on an iPhone 4

    How can I disable the Voicemail button on an iPhone 4 or
    if that is not possible can i programme it to dial my own phone rather than my carrier's Voicemail box?

    No, it's not possible to disable that button and no, it's not possible to reprogram it to anything else.

  • Is there a Way to lock apps or disable the home button?

    I often allow my 16 month old to play toddler games on my iPhone. He knows how to slide his finger to unlock the phone and he loves pressing and holding the home button to activate Siri so he can talk to her! LOL! I am worried that he will accidently delete or move an app to another screen by accident so is there a way to prevent that from happening. Also while he plays his games, he likes to press the home button which closes him out of his game. Is there a way to disable the home button so he can just stay within his toddler games?

    You can use Guide Access to restrict your child to using a single app. See:
    http://support.apple.com/kb/HT5509
    Regards.

Maybe you are looking for