Enable Auto Hiding of Folio Scrollbars

Hi there,
I’ve just read on several websites that there’s a way to hide the scrollbars that by default cover 6 pixels of the folio on the right site of the screen, but I couldn’t find where and how to select this option. Apparently it is called “Enable Auto Hiding of Folio Scrollbars”.
I’m a bit confused that I read so often that it is possible but never how you can do it. Did I get something wrong?
(I work with DPS/InDesign CC on a 2009 iMac running the latest version of OS X Mountain Lion and want to make an iPad app.)

You select that option in DPS App Builder when you create the app. It's in the Advanced Options section on the App Details page.
http://helpx.adobe.com/digital-publishing-suite/help/create-custom-viewer-app-ipad.html

Similar Messages

  • Applications are auto Hiding.

    Hi,
    MY applications are auto hiding and it is geting so annoying now. It has been about 3 months, and i cant stand it! Heres what happens:
    Say i was in iTunes. Then i clicked into Safari from the dock, it would auto-hide iTunes.
    I dont have spaces turned on, and i have no idea why this happens. Is there a setting i have to change, or even a terminal command?

    Hello Dan99iel
    That sounds like a setting issue with Spaces, go to "System Preferences / Exposé & Spaces / Spaces" and uncheck "Enable Spaces" to disable Spaces. For assistance with Spaces click on the (purple help bubble) bottom right corner and open "Mac Help / Using Spaces". I don't care for or use it, to view all your Spaces hit F8 or F9 and then click on the window you want or something like that???
    Dennis

  • How to enable auto QoS on C4500-X

    How to enable auto QoS on C4500-X for Cisco phone? Since it is different from the global commands 'mls qos',who has the example? Thanks.

    http://www.cisco.com/en/US/docs/switches/lan/catalyst4500/12.2/20ew/configuration/guide/macro.html
    Take a look at this document
    And this one
    http://www.cisco.com/en/US/prod/collateral/switches/ps5718/ps4324/prod_white_paper0900aecd8041691c.html

  • Oracle.xml.sql.OracleXMLSQLException:Cannot enable auto commit within JTS transaction

    Hi All,
    OracleXMLSave class in the Oracle XDK is being used to load XML data into an 8170 database. The Java code is running in IBM WebSphere with container-managed transactions. When JTA is enabled with the Merant JDBC driver for Oracle, we get the following error when the XML is loaded:
    oracle.xml.sql.OracleXMLSQLException: Cannot enable auto commit within JTS
    transaction
         at java.lang.Throwable.fillInStackTrace(Native Method)
         at oracle.xml.sql.dml.OracleXMLSave.saveXML(OracleXMLSave.java:2213)
         at oracle.xml.sql.dml.OracleXMLSave.insertXML(Compiled Code)
    This suggests the OracleXMLSave class is not aware of the fact that it is now operating in a JTS transaction where control is managed elsewhere. i.e. should also not attempt to commit or rollback, as this is the responsibility of the container.
    Is there a property which needs to set to prevent the above or does the XDK not work with J2EE (JTS) transactions?.
    If you have any useful comments, let me know. Testing the above presents me with a number of problems so if this is easily explained , let me know.
    Thanks,
    Malcolm

    Clearly , there does seem to be something a bit odd with the above stack.
    <Bug:1917808> mentions OracleXMLSave in context of plsql equivalent : dbms_xmlsave . i.e dbms_xmlsave is a wrapper around OracleXMLSave class.
    disabling autocommit on connection as follows should help:
    conn = DriverManager.getConnection("connect string","scott","tiger");
    conn.setAutoCommit(false);
    to disble auto commit and see if this has an effect.
    This issue might be <Bug:1497506>. If disabling autocommit does not work then it appears that it could be this issue .
    Malcolm
    Hi All,
    OracleXMLSave class in the Oracle XDK is being used to load XML data into an 8170 database. The Java code is running in IBM WebSphere with container-managed transactions. When JTA is enabled with the Merant JDBC driver for Oracle, we get the following error when the XML is loaded:
    oracle.xml.sql.OracleXMLSQLException: Cannot enable auto commit within JTS
    transaction
         at java.lang.Throwable.fillInStackTrace(Native Method)
         at oracle.xml.sql.dml.OracleXMLSave.saveXML(OracleXMLSave.java:2213)
         at oracle.xml.sql.dml.OracleXMLSave.insertXML(Compiled Code)
    This suggests the OracleXMLSave class is not aware of the fact that it is now operating in a JTS transaction where control is managed elsewhere. i.e. should also not attempt to commit or rollback, as this is the responsibility of the container.
    Is there a property which needs to set to prevent the above or does the XDK not work with J2EE (JTS) transactions?.
    If you have any useful comments, let me know. Testing the above presents me with a number of problems so if this is easily explained , let me know.
    Thanks,
    Malcolm

  • Cannot enable auto commit within JTS using websphere

    i suddenly encountered some exceptions like this yet the process seems to be ok. i am pretty new to websphere, help please:
    java.lang.IllegalStateException: Cannot enable auto commit within JTS transaction
         at com.ibm.ejs.cm.pool.ConnectO.setAutoCommit(ConnectO.java:2085)
         at com.ibm.ejs.cm.proxy.ConnectionProxy.setAutoCommit(ConnectionProxy.java:594)

    I'm setting autoCommit to false in some of my code and it works. Here is the example:
    //This code works for the Oracle Thin Driver
                   conn.setAutoCommit(false); // <- required!
                 // initialize LOB reference
                 GDate curDate = new GDate();
                 ps = conn.prepareStatement("insert into Calculated_Rate_Import values (empty_clob(), ?)");
                 //conn.createStatement().executeUpdate("insert into Calculated_Rate_Import values (empty_clob(), TO_DATE('" + GDate.getSafeSqlDate(curDate) + "'))");
                 ps.setTimestamp(1, GDate.getSafeTimestamp(curDate));
                 ps.executeUpdate();
                 ps = conn.prepareStatement("select Calculated_Rate_Import from Calculated_Rate_Import where Import_Date = ? for update");
                 ps.setTimestamp(1, GDate.getSafeTimestamp(curDate));
                   results = ps.executeQuery();
                 results.next();
                 // get lob reference from write lock
                     //oracle.sql.CLOB clob = ((oracle.jdbc.driver.OracleResultSet)results).getCLOB(1);
                   oracle.sql.CLOB clob = (oracle.sql.CLOB)results.getClob("Calculated_Rate_Import");
                 // create statement for update
                 ps = conn.prepareStatement("update Calculated_Rate_Import set Calculated_Rate_Import = ? where Import_Date = ?");
                 // stream data into lob
                 java.io.OutputStream os = ((oracle.sql.CLOB)clob).getAsciiOutputStream();
                 try{
                      os.write(fileContents.getBytes());
                           os.close();
                 }catch(IOException e){
                      e.printStackTrace();
                 // execute update
                 //((oracle.jdbc.driver.OraclePreparedStatement)ps3).setCLOB(1, clob);
                 ps.setClob(1, clob);
                 ps.setTimestamp(2, GDate.getSafeTimestamp(curDate));
                 ps.executeUpdate();
                 // close lock
                 results.close();
                 conn.commit();
                 //finished inserting CLOB
                 //set the auto commit back to true, required!
                   conn.setAutoCommit(true);

  • How to Enable Auto Update functionality in  adobe AIR application?

    Hi All,
         How to Enable Auto Update functionality in  adobe AIR application and ask for new version to install to user.
         Please provide some informarion regarding above topic.
    Thanks,
    Sunil Rana

    Hi All,,
    Got solution. call checkUpdate() function in application level initialize event.
    private function checkUpdate() : void
                    appUpdater.updateURL = "http://www.aa.com/flex/aa/NativeUpdater.xml";
                    appUpdater.addEventListener(UpdateEvent.INITIALIZED, updater_initializedHandler);
                    //we can hide the dialog asking for permission for checking for a new update;
                    //if you want to see it just leave the default value (or set true).
                    appUpdater.isCheckForUpdateVisible = false;               
                    //we initialize the updater
                    appUpdater.initialize();   
                 * Handler function for updater_initializedHandler events triggered by the ApplicationUpdater.INITIALIZED
                 * @param updater_initializedHandler
                protected function updater_initializedHandler(event:UpdateEvent):void
                    //initializeHandler();
                    appUpdater.checkNow();
    In NativeUpdater.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/1.0">
         <version>2.0</version>
          <url>http://www.aa.com/flex/aa/AutoUpdate.air</url>
         <description>
         <![CDATA[                 * This a Win update
          ]]>
          </description>
    </update>
    Upload NativeUpdater.xml file on your Server. When you open your old .air file it will ask for replace with new version.
    Thanks,
    Sunil Rana

  • Would anyone else like to see an auto-hiding Dock in full-screen mode?

    Would anyone else like to see an auto-hiding Dock in full-screen mode?

    Well, it doesn't work consistently here.  I have Dock Hiding on.  When a screen does not contain a full screen app, it works fine.  Moving the mouse to the bottom of the screen (where I have the dock) pops up the dock as expected.  If the screen has a full screen app in place (usually Mail or Safari), the behaviour is very inconsistent.  Moving the mouse to the bottom of the screen, waving it back and forth, up and down, with the odd click, will bring up the dock in maybe 10 to 15% of attempts.  Take the app out of full screen, and it works perfectly.  Put it back in full screen, stops working.  This is a new MacBook Pro with 10.7.1
    Any ideas welcome.  Meanwhile, Im getting used to the four finger squeeze to bring up the Launcher.

  • "enable auto import" is greyed out in new cc

    Previously, everytime I plugged in a SD card lightroom with automatically open up and start the import process. Since switching to CC, it isn't working this way, and the "enable auto import" is greyed out.  How do I fix this?

    I had this problem and I was able to fix it by editing the Windows registry (it was only a minor edit).
    I changed the value of the following registry key:
    HKEY_CLASSES_ROOT\Adobe.AdobeLightroom64\shell\open\command
    The value was:
    C:\Program Files\Adobe\Adobe Photoshop Lightroom 5.7\Lightroom.exe "%L"
    I changed it to:
    C:\Program Files\Adobe\Adobe Lightroom\lightroom.exe "%L"

  • How to lock bottom control bar from auto-hiding in full screen mode

    I am using Flash Player with ie in Win7. It is very irritating while watching YouTube videos for the status/control lbar to keep auto-hiding. When the bar auto-hides, the pause/play position becomes the progress bar position - and a click where Pause used to be resets the video to start. How can I keep the bottom control bar from auto-hiding in full screen mode?
    Thank you, Steve  [email: [email protected]]

    There's nothing you can do to Flash Player, itself, to prevent this from happening.  Apparently, there's no way to disable via youtube, or google, either  -- http://productforums.google.com/forum/#!topic/youtube/_E5yFvNJCPk
    You SHOULD be able to call up the bar by hovering the cursor at the bottom of the screen and then, after a a second or two,  click on the pause button.    (It shouldn't restart the video in other words.)  But, if for whatever reason,  this doesn't work,   just click once in the center of the screen to pause the video.   To restart,  click the center of the screen again.
    HTH,
    OF

  • Identify program that prevent Taskbar's auto-hiding

    Hello,
    Normally the taskbar of windows can be set as auto-hiding.
    However, occasionally some program can prevent this auto-hiding
    from working. Examples are that when a download is finished in IE it gives a notification bar at the bottom, and when the IE windows is not in the front, the icon will be darkened somehow in blue shade in the taskbar, which also prevent taskbar’s auto-hiding.
    Until one handles that notification by clicking it, the taskbar will continue to be displayed.
    When multiple programs are open, sometimes when this happen it is
    difficult to know which prevents the auto-hiding to taskbar, particularly when the program does not display the icon as highlighted. In these situations is there other ways to prevent such? Can it be done programmatically like with
    Powershell?
    Bob

    Hi,
    I doubt there is no such PowerShell command to do this job. In addition, I made a test in our testing enviroment, there is no such problem as your description. After IE finished download files, its notification won't prevent TaskBar auto hid.
    For your situation, please check if it is other app that was running prevent TaskBar auto hid.
    Roger Lu
    TechNet Community Support

  • Enable Auto Sync not working in Version 5.3

    I need to flag only the active image in Survey mode. When I flag an image all selected images are flagged regardless of whether Enable auto sync is enabled or disabled (Library) Metadata>Enable Auto sync.
    Strangely the opposite happens in the develop module. Only the active image is adjusted regardless of whether Enable auto sync is enabled or disabled (Develop) Settings>Enable Auto sync.
    I am running windows 7 Home premium. Exactly the same thing happens on my Laptop which is Windows 7 Professional.
    It is astonishing that there are no other references to this problem in LR5 but I can't see why it should be my installation...

    The same problem on my ipad2 in ios 5.0.1
    1. with smart cover
       - set autobrightness on and bright level  half ,  no password
       - close smart cover and open cover
       - ipad2 screen is very dark and does not change until power off &amp; on
    2. No smart cover
      - does not change bright in any places(dark room, sunlight, living room etc)
    But no battery problem on my ipad2

  • Unable to enable auto import

    I'm using LR 5.3 and the "enable auto import" checkbox is greyed out. Any suggestions on how to fix?

    I'm confused: are we talking about the import dialog box coming up when you connect your camera, or auto-import via watched folders?
    Anyway, to answer your question: there is a setting in your D700 for which USB mode (sorry: dont remember off hand it's name/location).
    But if you haven't changed anything and it stopped working, there is a chance Adobe "fixed" something which is what "broke" it.
    There were some issues around importing from cards (a back door such that users could use the "Move" operation, which Adobe considered "unsafe") which Adobe addressed (in Lr4, I think). That may be what you're running into. You may have to put the card in a reader - dunno: maybe somebody else will be more help.
    Rob

  • "Enable auto recording" question

    When I turn off "Enable auto recording" in the recording
    options dialog, then start recording, captivate still grabs screens
    when i type on the keyboard. How do i disable auto recording
    completely? I want to be the only one capturing screens, with no
    intervention from captivate. I am capturing activity in a standard
    dos window - typing in commands, hitting enter etc. Captivate seems
    to capture all that activity. I dont want it to.
    Hope someone can help!
    thanks,
    tim

    You need to also uncheck "Record Keystrokes" (and sub-menus)
    in "Options > Recording Options > Recording Options (tab)".
    Then open the "Full Motion Recording" tab and disable
    "Automatically Use Full Motion Capture For Drag And Drop
    Operations".
    Also, on the "Recording Options" tab, on the "Recording Mode"
    selection, open "Edit Settings" and de-select automatically adding
    "Text Captions" and "Highlight Boxes" (for mouse-clicks).
    Have a nice day, Tim, and welcome to the Captivate User
    Community!
    .

  • How to enable Fingerprint in HP Folio 1040?

    Hello,I can't understand how to enable Fingerprint on  HP Folio 1040. The Biometric menu is missing in Control Panel, and I cat't to find link to HP Protect Tools.Please help to resolve this question.

    Hunterchan, welcome to the forum.
    HP has their BIOS'es made specifically for them to meet their needs.  Therefore, the retail BIOS you saw on the Intel website is different.  It appears that HP did not add RAID to the BIOS in your computer.
    Please click the "Thumbs Up+ button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Enable auto color gets turned off

    I have dials working just fine. When I update one of them however, all of them turn whie, without the alert colors. When i look inside, I see that all the ranges are now erased, and the "Enable auto colors" box is suddently unchecked. When I try to check it back on, the program crashes.
    I have already installed the patch and the new flash program. Can you please help me resolves this problem?
    Regards,
    Azer

    Do you have wifi access at home?
    DO the phones connect to wifi?
    do the phones have the same usage as Verizon (approximately)

Maybe you are looking for

  • How do I use elvis to record data from a pasco rotary motion sensor

    I want to use a pasco rotary motion sensor (a rotary encoder) with ELVIS to record angular velocity.  I have a LabPro system which I could also interface.  But I was hoping to keep the hardware less complicated by wiring the sensor directly to ELVIS.

  • Problem-PLEASE HELP! IMPORTANT!

    I have a Lenovo G530 laptop and all of a sudden, for no reason at all, the integrated webcam that is built into the computer won't work. I always keep my laptop in the same safe place, have never spilled anything on it, have done nothing to make it n

  • Java stack and ABAP stack in upgrading SP

    Hi, pls pardon if it appears silly question. I dont have much knowledge in Basis I am on XI3.0 with SP 09 and upgrading SP to SP20 from SAP service market place. How can I identify which is java stack and which is ABAP stack in evrery SP because Java

  • How to connect to the REMOTE_JDBC external resource in oracle BPM 10.3

    Hi, I am trying to configure REMOTE_JDBC extrenal resource. I have created the J2EE application server external resource and REMOTE_JDBC extrenal resource. After that in catolog components trying to connect to the DB. At that time it's giving below e

  • ESS in MSS Iview

    Hi all, Is ESS in MSS iview equivalent with related activities iview? I'm trying to make ESS for MY employee as a stand alone area instead of merging it in employee profile general data. But if i preview related activities  in the portal content the