2 questions - searchable epub/app? Hidden items?

2 issues - I can create a searchable epub/app? A section can be hidden in up to active? Not only in the table of contents, but completely hidden to slide until the user specifically navigates him via a button?

There is no output from the search box of DPS solution. You can write your own using JavaScript or use the product of MEI Portico.

One solution for hiding information would be to use an MSO that reveals the information by an event such as a click on a button or a link. Another way would be to use HTML to hide and show the content of a jQuery event triggered.

I don't think that it is possible to hide an article from the normal shot without a complex installation of MSO and adding links/buttons for navigation.

Take a look at DPS tips tips from DPS on the App Store on iTunes, InDesign Docs of Bob Bringhurst. I'm Bob Bringhurst, the writer of lead to the Digital Publishing Suite. and the DPS documentation Digital Publishing Suite help help | Digital Publishing Suite help to get a good look.

Tags: Digital Publishing Suite

Similar Questions

  • Hidden items in security downloads

    I am concerned about the hidden items that are loaded down with the application of security updates. I don't like Apple sends apps that I will never use, but cannot get rid of once they are installed. Are these these hidden apps? What happens if you're not overly sociable? What happens if you don't travel a lot, buy tickets or other various applications you want not taking up space on my phone. I currently have 7 apps that I placed in a spam folder. I am wary of apple drop the charges because of this

    leonardfrommonroe wrote:

    I am concerned about the hidden items that are loaded down with the application of security updates. I don't like Apple sends apps that I will never use, but cannot get rid of once they are installed. Are these these hidden apps? What happens if you're not overly sociable? What happens if you don't travel a lot, buy tickets or other various applications you want not taking up space on my phone. I currently have 7 apps that I placed in a spam folder. I am wary of apple drop the charges because of this

    The pre-installed apps or apps included with the phone can be deleted now, you will have to wait until IOS 10 comes out to remove these applications.

  • Cannot unselect the file name extensions and hidden items

    Nice day

    I use Windows 8 Pro. I noticed that all my files file name extensions
    are visible, so I went in to my folder and under show/hide display board, I saw that "File name Extensions" are checked
    and "Hidden Items" unchecked.
    I then tried to uncheck "File name Extensions", but nothing happens. The checkbox just reappears and I can't delete
    the name of the file extensions, so to speak. Also I cannot view my hidden object because when I check this box it displays a check mark
    for a split second and then it is still a time unchecked.
    I also went in Folder Options in Control Panel, click on "View files, folders and drives" and I checked
    him "Hide extensions of known file types" applied, but nothing happens. When I reopen it the Folder Options both of them
    Yet once are unchecked.
    If anyone can help me in this matter, it will be appreciated gratefully.
    Concerning
    Rohan

    Hi Rohan,

    Thanks for posting your question in the Microsoft Community forums.

    I see from the description of the problem, you can't hide from the files extensions and show hidden files in a folder.

    I imagine the inconvenience that you are experiencing. We are here to help and guide you in the right direction.

    To provide the proper resolution, that I would need more information on your side.

    The problem is specific to a particular file?

    This problem can occur because permissions, corrupt user accounts or even damaged files issues.

    We will first of all, try the procedure described in the article and check if that helps.

    "Access denied" or other errors in the access to or work with files and folders in Windows
    http://support.Microsoft.com/kb/2623670?WA=wsignin1.0#Method2

    Note: Try the steps under 2nd edition:

    See the article for more information.

    How to work with files and folders
    http://Windows.Microsoft.com/en-us/Windows-8/files-folders-Windows-Explorer

    Let us know the status of the issue after you perform the troubleshooting steps. If you need help or information about the issue with files, I'll be happy to help you. We, at tender Microsoft to excellence.

  • A few questions about in-app apple purchases

    Hello

    I would like to ask you a few questions about in-app purchases from the itunes store.

    I would like to create an application and put this app on the itunes store.

    The application itself will be a 'container' and contain 1 pound. The app will be free.

    So far so good. Now, I want to use shopping app from apple to sell the other books in the application.

    So that they will see a new book in the app and will be able to buy it.

    Now to my question:

    I would like to have books available in the form of separate .swf files (.swf files because I want to add an animation). If people can go to the itunes store and the swf will be downloaded on their device.

    Apple will actually allow this? And if not, anyone know how I could get what I want?

    Yes, that's what it means... Remember that you are not playing in the classic environment of Air, so your application will be just impossible to run any code from any SWF loaded. The reason is obvious: Apple doesn't want that any developer to extend applications or provide additional content without to have approved by Apple / earn money with it.

    In your case, I recommend you to include all the books hard connected by the swcs and then just unlock everytime the user pays.

  • [JS IDCS5 Server] app.menuActions.item ("Go to Item") .invoke ();

    I have the following script applies xml attribute values to scale the image size and offset:

    #include "glue code.jsx";
    
    main();
     
    function main(){
     
    var myDoc = app.activeDocument;
    var myRuleSet = new Array (
    new findObjAttribute("//Afbeelding")
    );
     
    with(myDoc){
    var elements = xmlElements;
    __processRuleSet(elements.item(0), myRuleSet);
    }
    }
    
     
     
    function findObjAttribute(XPATH){
    this.name = "Afbeelding";
    this.xpath = XPATH;
    this.apply = function(myElement, myRuleProcessor)
    {
    with(myElement){
    try {
    var myXmove=myElement.xmlAttributes.itemByName("yoffset").value;
    var myYmove=myElement.xmlAttributes.itemByName("xoffset").value;
    var myHeight=parseInt(myElement.xmlAttributes.itemByName("height").value);
    var myWidth=parseInt(myElement.xmlAttributes.itemByName("width").value);
    var myScale=parseInt(myElement.xmlAttributes.itemByName("scale").value);
    
              app.select(myElement);
                try {
                    app.menuActions.item("Go to Item").invoke();
                    }catch(e){};
                    app.selection[0].graphics[0].move(undefined, [myYmove, myXmove]);
                    app.selection[0].geometricBounds = [0, 0, myHeight, myWidth];
                    app.selection[0].graphics[0].horizontalScale = myScale;
                    app.selection[0].graphics[0].verticalScale = myScale;
                app.selection = null;
         } 
    catch(e){};
    }
    return true;
    }
    }
    
    

    InDesign desktop it works very well. On InDesign Server, it does not work!

    app.menuActions.item("Go to Item").invoke();

    The line above does not work on InDesign Server because it has no interface? And the way to generate scripts to make it work?

    Best regards, Sjoerd

    No, no.

    You do this:

    app.select(myElement);
    ...
    app.selection[0].graphics[0].move(undefined, [myYmove, myXmove]);
    

    Never do this. If you mess with the user's selection, you're doing something wrong. It will be slow, it will mess up the State, it's probably not idempotent, and it won't work with InDesign server.

    Instead, operate directly on myElement:

    myElement.graphics[0].move(undefined, [myYmove, myXmove]);
    

    (If this does not work, you may need to adjust the exact specifier or XML element you use, or use .xmlContent or whatnot.)

  • In App purchase items

    Hello

    I made an app with opportunities to buy new items (eg. graphics, sounds,...).

    My questions:

    -Objects are they integrated application and unlocked when buying?
    -Otherwise, where they are kept after purchase?

    Thanks in advance for your help.

    I think his question is whether the assets of all that is in the items 'locked' appear in the original file bar or if they are they received in a way via the 'unlock' process by in app purchaes.

    If that is the question, then the answer, it is possible to do anyway, but it is much easier to pack the locked content (graphics, sounds, etc.) in the original toolbar file and have the app to buy flip a bool to unlock objects instead of downloading assets from an external server (that you would have to run yourself) and have those loaded into the app.

  • Problem of setting a value for the hidden item click on the button with processes action or pl/sql dynamic

    Apex 4.1

    Oracle 11g

    I have a page which consists of a main and several sub-regions area.  I have a pl/sql process in after the header SET_DISPLAY(:P400_DISPLAY:='MAIN';))

    Three subregions have a contional show where P400_DISPLAY = STORE.  It works in the hiding of the sub regions.

    Now, I want to change the value P400_DISPLAY to the STORE to show the subregions when I hit a button.

    I tried to create a dynamic action for the click on the Add button, but get the following error:

    The selected button uses a model of 'button' that does not contain the #BUTTON_ID substitution string #.

    I went to the models and found:

    Substitution strings

    Top

    Substitution strings are used in sub models to reference the value of the components. This report details use of string substitution for this model.
    Substitution string Referenced De Description
    #LINK #.YesModelTo be used in an attribute "href".
    #JAVASCRIPT #.NO.To be used in an "onclick" attribute
    #LABEL #.YesModelButton label
    #BUTTON_ATTRIBUTES #.NO.The attributes button
    #BUTTON_ID #.NO.ID generated button will be ID either the static button if defined, or if not will be a generated ID internally in the format 'B ' | [Internal ID of the button.

    I then tried to create a page process, pl/sql,: P400_DISPLAY: = 'STORE '; If the button is pressed.  The action of the button is submit page. However, it does not change the value of P400_DISPLAY and the subregions are hidden.

    Suggestions please on how to fix the template or change the value of P400_DISPLAY?

    The question of the root, it's that, even if you change the value of the element of your page, it is not visible to other areas of the page until it is in the session. Thus, any other action based on the value of the element of your page. the visibility of a control, a report based on the value of the item, etc. will be affected by changing the value of the item page until it has been changed in the session. Even after that, items are stored in the session, then you must do something to influence the revalued value. To see the effect of this, observe that your page will load and assesses the value of the element of your page, it sees which is the "MAIN" and mask areas. However, he didn't reassess after that.

    Then; your choices for this value set at the session are send the page, or use JavaScript to set the value in the session. If you use the latter, you will have to do extra work to make visibility tests be re - run, so, let's stick with the submit method.

    What you did above sounds correct to do this but, there are a lot of decisions, that you might have done that may have caused things to do not occur in the correct order.

    First of all, we will confirm that what I describe above is your problem. From the development environment, load the page, click on the button to change the value and submit. Now, click on the link marked the Session. He is always at HAND? If the answer is "Yes"; That's your problem.

    Let's start with your calculation after the header. You set it to * only * run if the current value of the element of your page is null? If this isn't the case, it's your problem.

    Load the Page-> Item set to 'Hand' by calculation-> click on the button--> Item set to STORE-> Submit-> Page Load-> point by calculating the value 'hand '.

    See the problem?

    Assuming that's not the question, you have created a branch to the same page, right? What is your process for the branch point? Is it * after * Validation, computation etc.? Because if not, you are not changing the value before that didn't get to submit.

    I bet that's the first question, but take a look at these.

    See you soon,.

    -Joe

  • question of iPad app magazine approval...

    I know it's Adobe forum and deals with Apple, but I was wondering if you guys could help me with this: when we talk about Apple app approvals, we'll say several issues of the magazine - is it approval in time for the application only and the first issue of this magazine or each subsequent question needs a separate approval as well?

    Thank you

    Kind regards

    Dragan

    Apple must approve the time app the first that you submit them to us and every time you submit a new version. If your multi-folio application includes only free items, you need not to Apple for approval. But if the folios are retail, you must create an in-app purchase for each sheet of the retail and introduce each of them to Apple for approval. You can do in advance, well before you actually publish folio connected to in-app purchase.

  • Question of the App Store

    When I searched for free movie and tv apps, I clicked on xfinity by Comcast. Asked me to verify my payment information. It was just thought ID check. But when I tried to open the app she wanted a user name and password for Comcast. I have not created one because now I, m concerned, I will be charged. That said, my question is am I get billed thi allegedly free app and if so how can I get rid of him. So why should it be listed in the free category?

    The app itself is free, function it provides content can have a cost.

    The xfinity app requires that subscribe you to television services by cable to access their content. That's why it requires a Comcast account.

  • Question 8 metro Apps Windows

    This question is about the Metro of Windows 8 applications. If this is not the right place for him ask then please tell me the right place to post that I can't find a site to Windows 8 issues anywhere. I currently have a Windows 8 Developer Preview installed on my netbook, and it runs as fluid as a glass of water, but none of the Metro applications worked. I thought that since this was a developer version, apps are non-functional. Not long after this event, I plugged my computer via a RGB cable to a bigger screen. I've accidentally hit a metro app while sailing on the start menu, and to my surprise, she and other applications, works great. I have disconnected the monitor and tried to start again the same apps with my monitor netbook, but it did not work as before. So my question is, the metro apps have a ceiling of resolution? My resolution is 1280 x 600. Very confused.

    If this is not the right place for him ask then please tell me the right place to post that I can't find a site to Windows 8 issues anywhere.

    None of the Metro applications worked
    My resolution is 1280 x 600.

    1024 x 768 is the minimum for Metro applications, they do not work because your resolution is too low.

    You can try this modification in order to allow higher resolutions (or use your external monitor):

    http://www.netbooklive.com/how-to-get-better-resolution-on-your-standard-10-inch-NetBook-2772/

  • Questions about QtWidget app on PlayBook

    I am developing QtWidget app with Qt Creator. It's a little centered pc, but it is not serious.

    I have a few question 3 on the implementation of little

    1. how to implement swipe menu of QDialog QFontDialog opening custom gesture? I don't know what signal/slot should be used and where in the code.

    2. is it possible to change the width of the vertical slider automatically attached to textEdit widget? Its default width is too small on PB

    3. When you use the textEdit Qt widget, native PB paste does not work (long press selects only the text, nothing more). How to interact with the native functionality of copy/paste PB (I think that the Clipboard)?

    THX

    1. use a keypress event to see when you press the menu key

    2. I used a style sheet for this

    3. don't know if there is another way, but using the native sdk it is Clipboard functions. I have not tried yet. I plan to soon, so I'll post back to the case where you can't find the answer first.

    NIC

  • Question Smartphones blackBerry App World download

    I was redirected so many times that my head spinning on this subject. I bought money Ascendo Personal Finance Manager at App World a few days ago and no registration key has been offered. The site software told me that I had to contact the support of App World, which directed me to a voicemail IM style program which offered absolutely no help, and when I clicked for extra support, he sent me here. So my question is, how to find the registration key for this application?

    Hello!

    Very strange... According to KB, after you connect to MyWorld (via PayPal references), it is supposed to be "Application Détails" somewhere, that contains the key... Sorry, but I have not paid from AppWorld apps to try.

    We had a few cases where updates / reinstalls (from got AppWorld apps) require additional steps in order to install the update and provide the license key; Please try this:

    1. Homescreen > Options > Advanced Options > Applications > highlight the app > BBKey > delete
    2. AppWorld > MyWorld > BBKey > Login > highlight the app (if she shows at all, in any State) > BBKey > delete
    3. Use your PC (via the mass storage Mode) or your BB (via Media > BBKey > Explore) and find all references (folders, files) to the app delete everything you find. Search the memory of your device and your press card as well.
    4. Use this link to user guide AppWorld for re - install the app - then predict a new activation/registration key

    Support formal AppWorld is via a form RIM... Let's see if we can there you go without having to resort to that.

    See you soon!

  • Photography question v single App

    What is the diff between Photoshop in the photo for $9.99 plan vs Photoshop in the only app for $19.99 plan?

    Hello barbc94667259,

    I found a few threads with similar questions! Hope this helps

    https://forums.Adobe.com/thread/2065765?q=difference%20between

    https://forums.Adobe.com/thread/2051842?q=difference%20between

    Here is a list of the descriptions and plans: plans pricing and membership creative cloud | Adobe Creative Cloud

    Let us know if you have any other questions!

    Best,

    Sofian

  • Question about InDesign: master page items I delete will not be missing.

    I'm working on bringing a book, with chapters that are separate files. Of course, there are a master page with various guides that I use a lot, as well as a header running pretty standard with the names section and chapter and page numbers. As is standard practice, I would like to appear on almost all the pages, but not on the front pages of the chapters. (There are other times I might want to replace it, but that is the main). So, I Ctrl-Shift-click, then delete them when I put in place a new chapter.

    Problem is that they are not missing. Every so often, I open a previous chapter and find that these items are back on the first page of this chapter, and I remove them again. I only noticed this since I did the chapters in question in a book file so that I can keep an eye on my pages and synchronize styles more easily.

    My best guess is that maybe it has something to do with the aforementioned synchronization. I don't want these chapters to share the same master pages, but don't want to keep IDto re-application of the elements of their share to the individual pages that I have already manually the deleted since (sometimes more than once). How can I stop this from happening? (Or otherwise, if it is not the cause of the problem, what else could be and how to deal with that?)

    Create a different master page based on your primary master page for these pages. Do not make substitutions on the pages of work.

  • Identify users who bought a question via the App store

    When a person subscribes to my magazine via the App store or Play store I publish a question, is there a way I can identify so that the user using a transaction ID or something similar?

    Ideally such user could identify a site, where we would attribute a promotional code for it, which could be used respectively for subscription in Play store or App store.

    Basically, I want to talk about a feature that for example Mag + offer via its subscription API. Is something like this with DPS?

    You can collect this type of data in the app and subscription procedure to count in a custom showcase (Enterprise only) or folios themselves via an Information screen that uses the API. For more details, see http://www.adobe.com/content/dam/Adobe/en/devnet/digitalpublishingsuite/pdfs/driving-dps-r eadership.pdf.

Maybe you are looking for

  • Hidden space

    Hello I wonder why space occupied, indicated in the tab "Information" of my HD in the Finder is different from the sum of the space occupied by files from my drive. I also used OmniDisk Sweeper, but he was able to calculate that the space occupied, I

  • Satellite X 200-21 k: Vista display driver need to play games

    Is there a driver for the display that will work with Vista?Is there any game or 3d application that works fine? I tried about 30 different versions, I tried official (failures even in vista will not work correctly it gives a driver error every minut

  • HP OfficeJet J4660 all in one appears "off-line" and the function desappears scanner

    Original title: device HP OfficeJet J4660 All in one – [1] it has been properly installed on the computer - DELL - Vostro. [2] he worked very well; [3] after a while, it appears "off-line" for all its functions. The scanner function desappears. What

  • How can I change programmicly a control of the ring?

    I have a test system that supports many products. Furthermore, I frequently add new products to the list of support. I have a control of the ring that lists these products. I wish I could have my program automatically read a configuration file and ch

  • Maxify MB2320 will not print after changing the ink cartridge

    I just changed my black ink cartridge last night and now it won't print. B504 code keeps coming up and I followed these instructions to restart the printer. Whenever I turn on the printer, it spits out 2 pieces of paper, so the paper is not jammed.