HTML resources plans?

Are there plans to implement HTML resources in 2015 DPS?

The new PDF to the DPS conversion tool is great and does a great job - but has still some hiccups, however, it will not work for our scenario.

We need embedded content will be opened in a window in the application, allow us to explore the content, then close and be right we were at the breast of the app. As an article, we cannot replicate this experience. We could reproduce the experience by hosting PDF files online, however, since it is files owners requiring a secure view connection, hosting the files online PDF isn't a viable option either.

Being able to reach external documents such as content integrated into the app, it's a basic feature that is currently missing which is cruelly in 2015 from DPS.

Are there plans to implement this?

Thank you

Tommy

Hi Tommy,.

Why can't replicate with a file .article? If you use a navto link to go to the .article is just your PDF, it will, indeed, open it in its own window, and when you close it, you to where you were. 'Close' action is the back button in the UI instead of close, but it's the same exact hierarchy.

Neil

Tags: Experience Manager Mobile

Similar Questions

  • Migration of the old folios DPS - HTML resources

    Hello

    IM migrating some old folios of DPSuite to DPSolution and may not know how to use the HTMLResources zip.

    The zip contained some PDF documents that I need to make a link to folios.

    Ive searched and read some threads (here and here) - on the one hand, it seems that HTMLResources have not been implemented in DPSol, but then someone mentions an API, which, to be honest, it is a bit over my head.

    If - is simple (easy) way to use HTMLResources in DPSol when I update my old folios anyway?

    Thank you!

    s

    We migrate automatically HTML resources in old sheets above the new DPS system. If you migrate any content that you do have to do something special: the links will still work after the migration.

    Neil

  • HTML resources: New problems PDF

    In my view, that it is a new bug. We use HTML resources primarily for PDF files.

    On our iPads running iOS8 running v32 file PDF appears in the browser correctly, but you can't pinch and zoom in more on it. It is a problem for us because we rely on this ability for our users to read old PDFs that have not been redesigned for the iPad.

    We also tested a Gen1 iPad and when we try to press the button for the PDF files, it crashes the browser. If you try several times sometimes blocks the app.

    Please let me know if you need more information. Is this a known issue?

    Yes. In iOS 8, impossible to pinch and zoom resources html PDF files. the spectator team looks at it.

  • Folio page layouts - import html resources

    Newbie question... I can't get the folio to recognize and create two vertical patterns and horizontal in our paper... only the vertical arrangement is recognized.  I use inDesign and have created and modified the other layouts but I can't seem to understand this...

    Is there a more documentation/tutorials on the "import html resources.

    I try to import a javascript/html code that contains educational activities, but the function "insert html" in indesign does not allow me to insert the entire code (it's too big)...

    Thanks in advance

    Looks like you're confusing HTML articles with HTML resources. Resources HTML is primarily a way to share images and assets among various articles. Searching for information on importing HTML articles.

  • HTML resources

    Is it possible to have a page .html as a resource in your project and open it with a private or a browserfield?  Thank you.

    Yes.

    The easiest option is the browser;

    See this thread:

    http://supportforums.BlackBerry.com/T5/Java-development/loading-a-local-HTML-file-in-the-browser/m-p...

    Browser option is more difficult for BrowserField 1 (i.e. pre OS 5.0).  You need to wrap the file in a http connection.  There is code on the forum to help with this. Have a search around.

  • To access images of html resources

    \I'm generation html on the fly and using a BrowserField to display it. I want to display an image wgich I have in my resources. How do I reference?

    TIA

    If the images are modified or generated programmaticaly you could store on the micro SD or MEM and access using file:///... URL.

    If they are static, you can use a local: / / / to access them directly from your COD file.

  • Are there anyone experiencing problems of DPS with HTML resources on iOS8?

    We have a resources HTML pdf file which works fine in iOS7, but the inline browser comes in white with launched in iOS8. We tested with a folio 31 and a folio 27 iOS8.

    It is a known issue, it will be addressed in our version v32 expected in a little less than a week.

    Neil

  • Resource plan in order to limit the execution time

    Hello
    I use 11.1.0.7 database. Can someone guide me how can I create a resource group resource consumers plan and assign them to my user "dev" so that any query that is run by this user shouldn't take more than 10 minutes for execution and must be abandoned if the execution time exceeds 10 minutes.

    Thank you

    Salman
    BEGIN
    dbms_resource_manager.clear_pending_area();
    dbms_resource_manager.create_pending_area();
    dbms_resource_manager.create_consumer_group(consumer_group => 'mytest_group', comment => '', cpu_mth => 'ROUND-ROBIN');
    dbms_resource_manager.submit_pending_area();
    END;
    
    BEGIN
    dbms_resource_manager.clear_pending_area();
    dbms_resource_manager.create_pending_area();
    dbms_resource_manager.create_plan( 'MYTEST_PLAN', '');
    dbms_resource_manager.create_plan_directive(
        plan => 'MYTEST_PLAN',
        group_or_subplan => 'MYTEST_GROUP',
        comment => '',
        cpu_p1 => NULL, cpu_p2 => NULL, cpu_p3 => NULL, cpu_p4 => NULL,
        cpu_p5 => NULL, cpu_p6 => NULL, cpu_p7 => NULL, cpu_p8 => NULL,
        parallel_degree_limit_p1 => NULL,
        active_sess_pool_p1 => NULL,
        queueing_p1 => NULL,
        switch_group => 'KILL_SESSION',
        switch_time => 600,
        switch_estimate => false,
        max_est_exec_time => NULL,
        undo_pool => NULL,
        max_idle_time => NULL,
        max_idle_blocker_time => NULL,
        switch_time_in_call => NULL
    );
    dbms_resource_manager.create_plan_directive(
        plan => 'MYTEST_PLAN',
        group_or_subplan => 'OTHER_GROUPS',
        comment => '',
        cpu_p1 => NULL, cpu_p2 => NULL, cpu_p3 => NULL, cpu_p4 => NULL,
        cpu_p5 => NULL, cpu_p6 => NULL, cpu_p7 => NULL, cpu_p8 => NULL,
        parallel_degree_limit_p1 => NULL,
        active_sess_pool_p1 => NULL,
        queueing_p1 => NULL,
        switch_group => NULL,
        switch_time => NULL,
        switch_estimate => false,
        max_est_exec_time => NULL,
        undo_pool => NULL,
        max_idle_time => NULL,
        max_idle_blocker_time => NULL,
        switch_time_in_call => NULL
    );
    dbms_resource_manager.submit_pending_area();
    END;
    
    BEGIN
    dbms_resource_manager.clear_pending_area();
    dbms_resource_manager.create_pending_area();
    dbms_resource_manager.set_consumer_group_mapping(
        dbms_resource_manager.oracle_user,
        'DEV',
        'MYTEST_GROUP'
    );
    dbms_resource_manager.submit_pending_area();
    END;
    
  • the article html to html resources link

    I'm trying to link to an image in the HTMLResources.zip and have been extremely frustrated and unsuccessful

    the image is at root/HTMLResources.zip/images/logo4.png

    I tried the following

    .. /HTMLResources/images/logo4.PNG

    .. /.. /HTMLResources/images/logo4.PNG

    .. /.. /.. /HTMLResources/images/logo4.PNG

    any failure

    article html is

    root/cg_html/Intro/intro.html

    I guess by link you mean that you have an img element, correct?

    Your code should look like this:

    Company Logo

    Is that what you have in the article HTML?

    EDIT: I fixed the link, he already has two directories, it should be one.

  • HTML resources does not not in published application

    Has anyone encountered this problem?

    I have two pdf files configured to open in the browser in app via htmlresources. Everything is set up correctly in indesign and all previews very well in the content viewer / our custom Viewer.

    I published the application as a single edition in DPS App Builder application. Everything works fine, but when I go to view the pdf files the browser opens with this message.

    Could not open the Page

    This page does not open due to an error

    The error is 'the requested URL not found on this server."

    (- 1100).

    Anyone have any idea why this is happening? I missed something in the edition?

    Make sure that the file named exactly zip HTMLResources Select both PDF and zip it, do not compress the folder that contains the two PDF

    Import or by downloading HTMLResources.zip

  • Video displays in HTML resources

    It is possible to specify where a poster is referred to in a video when embeded with a < embed > tag?

    At this time the poster is taken from the first frame of the video, it would ideally be fired from a different location in the video.

    Thank you

    -Scott

    Since this is a superposition of web, you cannot use the option displayed in the Panel of media to enter the video image you want. One option is to play the web video overlay on an iPad and do a screen capture (Home + Power) of the film image you want as a poster. Crop the image, and then use it as a poster for the overlay of web (perhaps with a play button).

  • Dreamweaver has a plan APP to display the outline of my HTML page?

    Hi, I'm doing a course on the CSS and the guy uses Aptana studio and it has a screen that displays the html page plan. Dreamweaver has it.

    Thank you.

    In more recent versions of the program (CC2014 +) there is an icon in this bar, which will open the quick view of the element window.

    This window will have an overview of the site that allows you to extend the elements with nested elements. By clicking on the given items will highlight the code in Code view.

    Currently, she disappears after you click outside of it, but there is a feature request for trying to make a standard window of DW...

    Item Quick View

  • Cannot pinch and zoom resources HTML pdfs more

    After update the Folio Viewer there is no pinch and zoom in PDF, to HTML resources.

    Before the update, everything works fine in my Folios. Someone at - it the same problem?

    Reconstruction of a Folio V32, only vertical, standard PDF - same problem. (iOS8.0.2. Ipad)

    Is there a solution?

    Thank you

    This does not output today. The team is still studying the issue.

  • HTML PDF resources - Folio does not download the Viewer

    Hello

    I have a problem with a folio containing PDF links. This is not the first time that we use it and we had no problems with it before

    After you have imported all my batteries and HTML resources zip file; When I open the Viewer from Adobe on Ipad application, I can see the slip but the download does not start; He remains at 0 MB and nothing happens

    It seems that the problem is with the HTML PDF. Any idea?

    Someone had the same problem?

    The zip file is 247 MB, is there a limit?

    Hello

    You can try Archieve of the Folio and download it again or try to publish the Folio (private / free), this is the way you can see if there is a problem on your web servers or file. If, after having published the ongoing problem... Try to create a new folio... I didn t get this part

    minia92 wrote:

    It seems that the problem is with the HTML PDF. Any idea?

  • List of rate schedule/planning resources

    Dear Dina,

    Is it advisable to have both in the system? how it would be to divert the functionality.kindly help me to understand...

    Thanks in advance much n...

    Hello

    List of resources planning is a configuration of resources that will be used on project plans. In any case you will enter into the project by reources plans you sholud configure the list of resources that could be used on the plan.

    Tariff grid is necessary for the establishment of labor costs. It is sometimes necessary for project FACT. You can also configure a scale of assessment of the cost of the plan of finacial q plan of work.

    Dina

Maybe you are looking for

  • Safari on iPhone 6 blocking up

    My browser safari on my iPhone is locked with a security warning message and tell me to call Apple Support. I know that it is false and I have read several posts on how to fix this on a Mac, but how do I do on my phone. Now, Safari is essentially a l

  • Photos and Photoshop Elements

    MAC Book Pro, os x el captain Now using 'Photos' instead of iPhoto Prefer to use Photoshop Elements as my editor of choice software... but... I can't understand how to set up this way. I was able to do this with iPhotos.  I tried to contact adobe ele

  • How can I get my HP F380 all-in-one printer scanner, copier control with Vista

    F380 working with Windows xp in all modes, but now it just prints and gives me no control other aspects of the copier of analysis and control, because I loaded Windows Vista.

  • LaserJet P1006 duplex printing manual

    I have a problem with manual duplex printing on the Laserjet P1006 running Windows Vista. I have multiple accounts configured in Windows. When I print using the account that installed the printer, everything works fine. When I try to print to another

  • Need technical help, clarification of recovery BIOS HP Elitebook turn 810 G1

    So I'm looking to buy a used HP Elitebook turn G1 810, works very well, but the BIOS was locked so it can't be tinkered with as it was a demo produced a password locked client. I read in the support page for the device, the preboot UEFA guidelines te