Creating articles PDF multi-rendus for iOS devices

This question has been posted in response to the following article: http://help.Adobe.com/en_US/digitalpubsuite/using/WS804da476e1fb25e6276784b6139c71bed03-80 00.primeras html

1024 x 768.

Take advantage of the new features in version 23 to create vector overlays and add assets HD image sequences.

Bob

Tags: Digital Publishing Suite

Similar Questions

  • Birth of nations for ios devices

    Microsoft must think to lift nations for ios devices.as far I luv iPad so I hope that Microsoft gets up rise of nations for iPod iPhone iPad etc please. People will really luv this game if the graphics are gr8. Like extreme iPad 2 is having an A5 chip so you can develop this game with really good graphics thanks.

    Hi Sidheart,

    I suggest you to send us your comments by following the link below.

    http://www.connect.Microsoft.com

  • What I need to create and publish a magazine for iOS and Android?

    Hello!

    I would like to know what I need to design, create and publish a magazine for iOS and Android. Also, I would like to know what product I need, at what price would you be willing to pay and what treatment I must follow to perform this work.

    Thanks in advance!

    You ned to have PRO Edition or Enterprise edition of DPS.

    You can check http://www.adobe.com/products/digital-publishing-suite-family/buying-guide.html

    You must also have a developer account with Apple/Android

  • Is it possible to limit Adobe Revel to synchronize only on Wi - Fi for iOS devices?

    Hello

    Is it possible to limit Adobe Revel to synchronize only on Wi - Fi for iOS devices?

    I don't want to exceed my monthly data quota. I can't find an option for this in the settings.

    Thank you

    There is not currently a framework for this. I suggest to disable the automatic import feature if the quota of data is a problem and that you have defined to 'on '. You can reactivate when you use wifi if you care to use it. I will introduce this management feature products for review. Thanks for your comments.

    Guinot

  • When you go to mozilla firefox for IOS devices?

    Hi, I really love Mozilla FireFox, but I have an iphone and I'm curious to know if you are going to produce Mozilla Firefox on IOS devices, because I'm waiting for it don't...
    Thank you

    There is no way for Mozilla create Firefox for iOS. Apple restricted a lot what kind of applications can be created for iOS. The only thing that could serve as Mozilla is a Firefox Sync client, which then uses the iOS Safari browser.

  • File.upload ActionScript does not work on Air SDK for iOS devices

    I try to use the ActionScript File.upload to transfer a file on Air SDK for iOS environment, but the File.upload does not work properly. No event on the file upload handler is executed after File.upload is called, and no exception is caught. When I check the side network traffic server, I found no application http even didn't hit the server after execution of File.upload. The code is below.

    ------------------------------------------------------------------------------------------ -----------------------------------------------------------------------

    <? XML version = "1.0" encoding = "utf-8"? >

    " < = xmlns:fx s:View ' http://ns.Adobe.com/MXML/2009 "xmlns:s ="library://ns.adobe.com/flex/spark"title ="HomeView"> "

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    private var file:File;

    private var dir:File;

    This method is executed to create a file and download it when you press the download button.

    protected void OnUploadButtonPressed(event: MouseEvent): void {}

    trace ("upload button clicked");

    var urlReq:URLRequest = new URLRequest ("http://10.60.99.31/MyPath/fileUploadTest.do");

    urlReq.method = URLRequestMethod.POST;

    var str:String = "this is test";

    var imageBytes:ByteArray = new ByteArray();

    for (var i: int = 0; i < str.length; i ++) {}

    imageBytes.writeByte (str.charCodeAt (i));

    }

    trace ("size =" + imageBytes.length);

    try {}

    dir = File.applicationStorageDirectory

    I also tested in several different directories

    dir = File.createTempDirectory ();

    dir = File.documentsDirectory;

    var today: Date = new Date();

    var filename:String = 'IMG' + now.fullYear + now.month + now.day + now.hours + now.minutes + now.seconds + now.milliseconds + ".txt";

    file = dir.resolvePath (filename);

    var stream: FileStream = new FileStream();

    Stream.Open (file, FileMode.WRITE);

    stream.writeBytes (imageBytes);

    Stream.Close ();

    Review the content of the file to check if the file is written successfully.

    var readStream:FileStream = new FileStream();

    readStream.open (file, FileMode.READ);

    var: string result = readStream.readUTFBytes (readStream.bytesAvailable);

    trace ("rear read result =" + result); The result is shown here as planned.

    file.addEventListener (Event.COMPLETE, uploadComplete);

    file.addEventListener (IOErrorEvent.IO_ERROR, ioError);

    file.addEventListener (SecurityErrorEvent.SECURITY_ERROR, securityError);

    file.addEventListener (ErrorEvent.ERROR, someError);

    file.addEventListener (ProgressEvent.PROGRESS, onProgress);

    file.upload (urlReq); This line does not work. No handler is executed. No http request struck the coast server.

    trace ("after file upload test");

    } catch (error) {}

    trace (e);

    }

    }

    Complete Manager

    private function uploadComplete (event: Event): void

    {

    trace ("Upload successful.");

    }

    IOError handler

    private void ioError (error: IOErrorEvent): void

    {

    trace ("Upload failed:"+ error.text ");

    }

    Manager SecurityError

    private void securityError(error:SecurityErrorEvent):void {}

    trace ("security error:" + error.text);

    }

    Another Manager

    private void someError(error:ErrorEvent):void {}

    trace ("an error" + error.text);

    }

    Progress Manager

    private void onProgress(event:ProgressEvent):void {}

    trace ("progressHandler");

    }

    This method is executed to call the URLLoader.load when the delicate touch.

    protected void OnTrickyButtonPressed(event: MouseEvent): void {}

    var urlReq:URLRequest = new URLRequest ("http://200.60.99.31/"); This points to a server not - exist

    urlReq.method = URLRequestMethod.POST;

    urlReq.data = new ByteArray();

    var loader: URLLoader = new URLLoader();

    try {}

    Loader.Load (urlReq); This line is very important in iOS7. He decides if the latter file.upload may work.

    But in iOS8, file.upload does not work even if that line is executed.

    trace ("after urlloader load");

    } catch (error) {}

    trace (e);

    }

    }

    []] >

    < / fx:Script >

    < s:Button = "200" x = "200" width = "400" height = "200" label = "Upload" click = "OnUploadButtonPressed (event)" / > "

    < s:Button = "200" x = "500" width = "400" height = "200" label = "Tricky" click = "OnTrickyButtonPressed (event)" / > "

    < / s:View >

    ------------------------------------------------------------------------------------------ -----------------------------------------------------------------------


    When it is run on the simulator of the Air, it works very well as expectedand the file is successfully downloaded to the server. But when run on iOS devices (in my case, iPad), as I explained at the beginning, no event on the file upload handler is executed and not the http request has even hit the server. So I think that the problem may come from the client side.

    During my attempt to solve the problem, I found something complicated about this problem on iOS7. In other words, if you call the URLLoader.load method (although the URLLoader.load points to an address non-existed) before calling the File.upload method, the File.upload will work as expected on iOS7. Specifically, when the above OnTrickyButtonPressed method is run before the OnUploadButtonPressedmethod, File.upload will succeed on iOS7. But this only happens on iOS7. On iOS8, File.upload still refuses to work, regardless of knowing if the URLLoader.load is executed before.

    I think in my case, the problem is not the problem of sandbox or a session of Firefox problem described in the two links below, because not even a http request hit the side server. It seems that the Air SDK for iOS comes to fail send the http reason request any.

    http://StackOverflow.com/questions/5967382/Flex-4-FileReference-issues-with-Firefox

    http://StackOverflow.com/questions/351258/how-do-i-make-Flex-file-upload-work-on-Firefox-a nd-safari

    To make my problem clear, I list my environment below:

    • Development environment: Windows7 (64-bit) / Mac os 10.9.4 (tested on both OS platforms.)
    • IDE: Flash Builder 4.7
    • Air SDK: 3.8 / 16.0.0 (after that I have updated to the latest Air SDK 16.0.0, problem persists.)
    • Application server: Tomcat7 + spring

    Finally, I want to mention that download the file using URLLoader.load isn't an option in my case because I want to download large files in the future, which cannot be addressed with the URLLoader.load.

    I struggled with this for days. If I really appreciate it if anyone has an idea about this.

    Thanks in advance.

    Hi KA RYU.

    We have reproduced the issue successfully, our team would work on it.

    -Tushar

  • Creation of pdf with hyperlinks for mobile devices

    Hello.  I am trying to create a catalog that is completely interactive on a mobile device. I have a few sellers who have the iPad and some of those who have the Motorola Xoom.  I am trying to create a document with hyperlinks that will have the user to the specified pages in the catalog.  For some reason when I create hyperlinks, they are working on a normal computer, but they do not work on a mobile device with a touch screen.  Can someone tell me please how to create hypertext links are some pages in the same document that will work on a mobile device like an iPad or a Xoom.

    Welcome to the cutting edge. The iPad and the Xoom are new devices, and it will take a few tries to find out what PDF readers will accomplish what you want.

    If you create a PDF interactive as you would for a computer, so the works of interactivity is based on the PDF reader. On an iPad, you have several choices. Among them: Adobe Reader (recently released), GoodReader, Expert PDF and iBooks.

    I created a simple interactive PDF with hyperlinks to take me to a given page, and I did a button that comes to the first page. Here's what I found with the current versions of these readers on an iPad:

    * Adobe Reader does not yet support interactivity. The hypertext links, or the work button

    * GoodReader works best. Hyperlinks were working and the button

    * PDF Expert was the second best. The hyperlinks worked and the button worked (but he lost the text on the button that says "Start over")

    * iBooks was better third. Hypertext links worked, but it does not support buttons.

    I have absolutely no interest to get a Motorola Xoom because he is such a loser of a Tablet, and I have no idea of what runs on it. You have to do your own tests.

  • Any card reader (driving us license and insurance card we) smart is available for iOS Device?

    I want to develop an application for iOS iPad kiosk for patients where patient can check-in in slippery sound driver's license or insurance card by card reader please suggest me if these (reader) hardware available that can be integrated with iOS app.

    I know it is a barcode scanner because I've seen it used in the elections, a couple of years.

    And there is magnetic tape (square) scanners that people use with their iPads.

    You may simply wish to Google and see what happens. Your question is somewhat a matter of niche, so may not find many answers here.

  • should what frequency of frames I choose for iOS devices?

    Hello

    I have my project at 60 fps. everything seems smooth and fine in the test on the iphone 4S.
    I don't have a 3G to test on yet, do I leave the framerate 60 fps for 3g or lower it?
    I don't really understand how to determine what to set the framerate for best performance or even if it's important.
    Just after some clarification on what should be set the framerate.
    Thank you

    Yes exit is the same as without debugging

    Well, I finally get your question.

    The idea is to keep to the fps value that meets your needs. With the help of a value greater than that wastes resources. A simple example would be the execution of an application at 60 fps which is an enterprise application that is obviously useless. For your scrolling usecase, if your performance requirement is 40 fps then continue framerate at 40. Now two things can happen your device will have enough juice to run at 40 fps or he won't. If she has juice, he will be at 40 fps no problem. But if it doesn't have enough juice, then it didn't and causes stuttering. In one such case raising the framerate to 60 will be useless, because this relatively slower device could not scroll down to 40 fps, no chance of it to scroll at 60 fps. You shouldn't have to worry yourself to maintain the rate of different display for various devices. Keep the framerate to a value that meets your need, if the underlying device can play to the fps will play it, otherwise it will be stutter.

    To answer your original question, no you can not get more smooth scrolling on a lower rate.

  • Flex Mobile for iOS - device debugging

    Hello

    Is it possible to provide certificates self made for packing for iOS as Android allows?

    Thank you.

    Oooooh not

    you will have to pay first Apple

    and then ask a certificate and the configuration file

    and then try and find a way to convert the certificate to a .p12 file

    and cross your fingers and hope that they will allow him in their store

    and you must have a mac, but there are tortuous ways to obtain a certificate using a pc, you can always not on the store without a mac

  • Need help updating my kiosk multi-folio for iOS app

    I have trouble to iOS . After waiting a ridiculous 8 days for a review of my app update was rejected. With such a long time to wait, I really need to know that my next presentation will be OK.

    If anyone knows if there are step by step details how configure a viewer application to update iOS with iTunes subscriptions? It is a business account.

    My application is an application of newsstand that offers only free folios.

    It seems that there is a mixup of details with my In App Purchase. Here is the statement of rejection:

    2.2

    We found that your application exposes one or more bugs, when reviewed on iPad iOS 7.1.2 running on a Wi - Fi network, which is not in conformity with the App Store Review Guidelines .

    When we signed up for the free membership, the transaction has not completed. The activity indicator turns constantly. We have attached a screenshot for your reference.

    (I guess it was down to the mixup with the IPA)

    3.3

    We also found the metadata of your presented In - App purchases, such as the name, description or screenshots, is not exactly your In - App purchases.

    Specifically, we noted:

    the name of the free subscription is 'Number 1'. It's invalid, but also confusing, when the user tries to subscribe from the 2nd edition.

    Please review the metadata of your purchases In - App submitted specific and unique to each product In - App Purchase.


    Thanks in advance for any help you can offer.

    Hello

    I'll leave article 3.3 for a more precise description should simply help...

    For what is 2.2, have you tested the developer version (ipa file) on your device? If so did you buy subscription using a test iTunes Connect user?

    If they feel the issue, there is a good chance for you to experience as well.

    This rotation indicator generally point to an incorrect subscription referenced in your viewer product ID (i.e.: the Apple, as opposed to the product ID for the subscription ID)

  • Are PDF Portfolios dead for mobile devices?

    Can you tell me if Acrobat CDS PDF Portfolios are convenient for viewing on mobile devices, especially for Android and retail?

    I was a big fan of highly customized PDF portfolio in Acrobat 9 and X era.  Now, I'm trying to get plain-vanilia Acrobat DC PDF Portfolios to work in mobile devices, including Android.  It seems futile.

    PDF portfolios don't will NOT be open and display in any popular mobile browser?

    Or is there a way to make that happen?  (I tried 'share links' of Google Drive, OneDrive and DropBox, but rather than consider the PDF Portfolio, it appears a message saying the visitor to download the PDF file to view it on their device.)

    PDF portfolios will be only open and view in Acrobat Reader for Android?

    I am tired of several popular applications for Android PDF Viewer.  None of them could open a PDF portfolio.  Or am I missing something?

    I think I'm spinning my wheels on trying to use this technology once and large (on the desktop for the distribution) and the display on Android devices.  Am I wrong?

    Thank you for your attention and your time.

    Sincerely, Preston

    The description of what makes a PDF portfolio work in a PDF are public and have been for many years. But as far as I know, none of the authors of software has nothing with this info, so portfolio view only happens in Adobe software. Unfortunately, it is up to the authors of all what other software. Now, it is not surprising that portfolios have been ignored for years, because for years the portfolios only we did used Flash. Times change, but it may be too late for the portfolios.

  • Create graphics using multi-channel for measures and another single channel for the datetime type.

    Hello world

    I'm using Labview and DIAdem to create graphical reports and I use screws of connectivity and not the Express VI.

    The data is stored in a data base MySQL Inno.

    I use the following command to get the data I want to show the graphic report!

    SQL_ExecDirect (' select 'TimeStamp', 'Value' by 'TableX' where and taste =' %s and channel =' %s; "" ")

    And then I use:

    SQL_BindChannel ("Datetime1C1", "TimeStamp", "t", "#yyyy - mm - dd hh") to bind the data to the X axis of the graph.

    And after that, I use:

    SQL_BindChannel("SampleN","Value","n") to bind the data to the axis of the graph Y.

    I want to create the chart with more than a sample, I use the commands above on a loop.

    Now here's a printscreen of my problem.

    In the first iteration (green line), DateTime1C1 has the timestamp for sample1 but in the second portion (yellow line) DateTime1C1 has the timestamp for sample2, the third iteration (blue line) DateTime1C1 timestamp for sample3. etc.

    The time stamp of origin for each sample are 'lost' he re-wrote datetime1C1. and in the end, it shows only the timestamp for the 5th iteraction.

    How can I create a single graph with several lines (samples) and datetime an axe?

    THX in advance

    Hi AlexandreHSCas,

    If I understand your situation, the only thing you need to change is to create a new group in the DataPortal before each request.

    FOR i = 1 TO iMax
    NewGroupName = "application" & I
    Call GroupCreate (NewGroupName)
    Call GroupDefaultSet (GroupCount)
    Call SQL_ExecDirect ("select 'TimeStamp', 'Value' from ' TableX" including Sample =' %s and channel =' %s;) ")
    Call SQL_BindChannel (NewGroupName & "/ Datetime1C1", "TimeStamp", "t", "#yyyy - mm - dd hh")
    Call SQL_BindChannel (NewGroupName & "/ SampleN", "Value", "n")
    NEXT

    Then you can simply drag each group from the data on the same graph XY-portal, because each group has its own time warp, data points will be displayed correctly placed on the common X axis of the graph.

    Brad Turpin

    Tiara Product Support Engineer
    National Instruments

  • maximum of 30 minutes with HLS - VOD for iOS device

    Hello

    I'm having a problem with Flash Media Streaming Server 4.5

    When you play a movieclip that is longer than 30 minutes, he plays well if I listen to a flash client, but when I use hls - vod to send it to an Apple device, the player says that the file is long 30 minutes exactly.

    The license should not be the problem since I could distribute 500 flash-clients at the same time a few weeks ago.

    The OS is CentOS 5.5

    Any ideas?

    You should check the configuration of the hls VOD licence.

    Check if your file httpd.conf (apache configuration file), you have a location tag for hls - vod, something like this

    True HLSHttpStreamingEnabled

    HLSMediaFileDuration 8000

    HttpStreamingContentPath '... / webroot/vod.

    HLSFmsDirPath "..".

    Options - Indexes FollowSymLinks

    and there HLSFMSDirPath points to the location of the folder the FMS licenses.

    For example, if you have the file licenses FMS to C:\Program Files\Adobe\Flash Media Server 4.5\licenses

    Then HLSFMSDirPath must be set to 'C:\Program Files\Adobe\Flash Media Server 4.5\'... It may be relative path because it comes in default installation of apache with FMS.

    Restart the server after...

    Thank you

  • Photo albums do not sync for iOS devices

    Hello

    I have about 20 albums of Photos. Three of the albums will not sync my iPad or iPhone. I'm in Yosemite on a MBP and 9.3 on my iPad and iPhone iOS. Any thoughts?

    Thank you

    Sure - but we need details

    What software and what version (Yosemite 10.10?-Photos 1.?)? What are the iCLoud settings? What are the iCLoud services?

    And it would be good to get up-to-date with the captain El OS X 10.11.3 and Photos 1.3

    LN

Maybe you are looking for

  • crashes Firefox 24 (/ questions/971603)

    Firefox has been crashing since at 24 on all kinds of Web sites and update at any time. I tried CCleaner tool as well as reset the browser. It did not help. Today, the browser crashed a record 5 times since this morning, and there still hours to go b

  • HP 120 omni power ALL IN ONE on passworde

    Obtained and hp 120 omni all-in-one who came in a palette to mix all THE computers in ONE OFFICE, IN This one in particular has a POWER ON PASSWORD I figured out how to circumvent some of these passwords by getting an error code. the problem is that

  • How can I permanently delete an icon from the notification area?

    Whenever I start an icon composed of the white black '9' in a field number appears in the Notification area of my desktop tool bar. Whenever I start, I have 'customize' on the toolbar and "hide" icon.  It always comes back. Apparently, it has no func

  • 1105dx m6 HP support wireless display?

    I just bought this laptop with amd a10 4600, with Integrated GPU 7660GI wanted to ask if she supports the display wireless, or miracast,Thank you

  • Send the expense reports to department heads every fortnight?

    HelloWe are on Oracle R12.We want to control our spend diligently so that we spend more.We develop several reports using XML publisher.Is it possible to predict these reports such as the report is sent to the Department heads automatically every two