Folios not showing up in adobe viewer on other iPads

Hi! I work on my first ipad magazine. I got 2 ipads in my house (different users). My own one which was connected to my computer while uploading the folio is an ipad 3 and all shows perfect. But I also want to test it on my girlfriends ipad (ipad 2). If I download the adobe viewer on her ipad and log in with the same adobe ID (like on my ipad), it shows just the adobe manual. Not my folios. Am I doing something wrong or do I misunderstanding the possibilities of it??
Klaus

Yes just go to the right corner of the folio builder panel to see the options .. you'll find ( upload to folio producer ).

Similar Messages

  • Some elements in folio not showing up in Adobe Content Viewer

    I have a indesign page I uploaded into my folio and when I preview it on my computer and my ipad in adobe content viewer some of the type and logos are not showing up. They do not have any interactive elements
    assigned to them just a text box and a placed .eps. Any ideas as to why some of these elements are not showing up?

    I made a new document and copied my files over and the folio shows up fine! Something in that file was messed up.

  • Folio not showing on Ipad Adobe Viewer

    Is the second time I have a folio not showing up on my ipad adobe viewer.
    This has happened after i delete 4 or more articles from the folio, after deleting them it stops showing in my ipad viewer.
    I researched here before and the solution was to check for the size, (that it was a size made for ipad) and yeah, i checked the size and the size is totally fine 768x1024
    but still doesnt appear.
    what I have to do is to create a new folio and click "copy to" each article to the new folio (from the old one), but the option copy to has to be done one by one, which is very annoying and time consuming. Once all articles are copied the new folio shows up but the old one doesnt.
    Anyone knows why this happens? how can it be solved faster?

    i had this problem once, in the folio producer have you given the folio a name, number and description?
    also in the viewer on the ipad they are not nessecarily in the right order - so scoot about on it
    if all else fails, delete the folio and re-upload, we had a glitch once and the only solution was to re upload
    Tim

  • Old All-Day events not showing in Calendar List View

    Reviewing events in my Calendar on the iPhone and have noticed that All Day Events that are older than one year do not show in the "List" view
    For example, I have all my holidays in a calendar called "Vacation". Month and Day view list holidays from earlier than today (09 Sept 2008) properly, however list view shows nothing. Timed events (e.g. day trips) in the same calendar show.
    Similarly no Birthdays appear in the past. I can see a case for Birthdays being omitted in the past, but not other events (e.g. wanting to know exactly when you went to that all day wedding last summer)

    I have this same exact problem. For me, past events that have a specific time associated with them show up in List view; however, past events that are all day events only show in List view once in a blue moon only. Apple support has been absolutely clueless about this issue. They just tell me it's weird and they have no explanation. It's unbelievably annoying though.

  • Why some times jdeveloper does not show a coreect design view ?

    Hi
    thank you for reading my post
    why jdeveloper does not show a correct design view of jsf pages sometimes?
    It does not shows labels and ... , just show tag names like : form , ... ?
    here is a picture for this :
    1-incorrect page:
    http://www.flickr.com/photos/59086726@N00/217556594/
    2-correct page :
    http://www.flickr.com/photos/59086726@N00/217556595/
    I just closed and open the IDE and page designer shows incorrect pages
    thanks

    Also try this...go to the project properties for the View project. Look at the JSF Libraries and remove the two JSF libraries and then re-add them....this sometimes helps.
    Regards
    Grant Ronald

  • Calendar events not showing up in list view

    Hi,
    some of my events are not showing up in list view. They are synced to the iphone. I can see them in day and month view.
    It seems to me that events created with ical and synced through MM are not showing up, but I'm not sure.
    Any idea?
    Wilfried.

    Yes I have also events from the holidays and the events I created.(Invitations and others) but where is this option for the NC? In general>notifications I can't find anything about showing events from different calendars there. And how is this subscription made because I had the holidays as soon as I input my account on this device. Maybe I included the holiday calendar but I don't remember. How is that made? And where to find these options?

  • Calendar items not showing ONLY in list view on iPhone

    Weird: My Calendar items are not showing in the list view only, on iPhone.
    They show when I search, they show in month, they show in Day views--just NOT in list view.
    Ideas?

    I just had the same problem (calendar information--for eight different calendars--OK on laptop and on Mobile me; on the iPhone only 3 of my calendars were displaying in "List" view, but all eight were appearing in "Day" view); first time I've encountered this problem (and immediately after installing the 11-February-2010 iPhone software update, so I'm suspicious that this might have been the cause).
    Solution described in posting immediately above seems to have worked. I.e.,:
    1. shut OFF MobileMe syncing for calendars on the iPhone (from Settings menu);
    2. wait for calendar entries to be removed;
    3. shut off iPhone, and wait 2 minutes;
    4. restart iPhone;
    5. turn ON MobileMe syncing for calendars on the iPhone (again, from Settings menu).
    All eight calendars now appear in List view (and still appear in Day view).

  • New tables & indexes created do not show up in dba_segments view

    Dear all,
    I have created 3 tables and some indexes, but these objects do not show up in dba_segments view. Is this a normal behaviour? Previously, with dictionary managed tablespace, I can specify the minimum extent to create, when the table/index is created. But I'm not sure how the locally managed tablespace work. Please do advice. Thank you very much in advance.
    I'm using Oracle 11g R2 (11.2.0.1.0) for Microsoft Windows (x64), running on Windows 7.
    For the purpose of reproducing this issue, I have created the tablespaces as follow:
    CREATE TABLESPACE CUST_DATA
    DATAFILE 'd:\app\asus\oradata\orcl11gr2\CUST_DATA01.DBF' SIZE 512K
    AUTOEXTEND ON NEXT 256K MAXSIZE 2000K
    EXTENT MANAGEMENT LOCAL UNIFORM SIZE 256K
    SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE CUST_INDX
    DATAFILE 'd:\app\asus\oradata\orcl11gr2\CUST_INDX.DBF' SIZE 256K
    AUTOEXTEND ON NEXT 128K MAXSIZE 2000K
    EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K
    SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLE CUSTOMER_MASTER (CUST_ID VARCHAR2 (10),
    CUST_NAME VARCHAR2 (30),
    EMAIL VARCHAR2 (30),
    DOB DATE,
    ADD_TYPE CHAR (2) CONSTRAINT CK_ADD_TYPE CHECK (ADD_TYPE IN ('B1','B2','H1','H2')),
    CRE_USER VARCHAR2 (5) DEFAULT USER,
    CRE_TIME TIMESTAMP (3) DEFAULT SYSTIMESTAMP,
    MOD_USER VARCHAR2 (5),
    MOD_TIME TIMESTAMP (3),
    CONSTRAINT PK_CUSTOMER_MASTER PRIMARY KEY (CUST_ID) USING INDEX TABLESPACE CUST_INDX)
    TABLESPACE CUST_DATA;
    SQL> SELECT TABLE_NAME, TABLESPACE_NAME
    2 FROM USER_TABLES
    3 WHERE TABLE_NAME LIKE 'CUST%';
    TABLE_NAME TABLESPACE_NAME
    CUSTOMER_MASTER CUST_DATA
    SQL> SELECT INDEX_NAME, TABLESPACE_NAME
    2 FROM USER_INDEXES
    3 WHERE TABLE_NAME LIKE '%CUST%';
    INDEX_NAME TABLESPACE_NAME
    PK_CUSTOMER_MASTER CUST_INDX
    SQL> SELECT SEGMENT_NAME, SEGMENT_TYPE, TABLESPACE_NAME, BYTES
    2 FROM USER_SEGMENTS;
    no rows selected

    Prior to 11g, when you created a table or whatever, you automatically allocated one extent.
    This is now no longer true and depends on a parameter I don't remember.
    dba_segments is a summary of dba_extents.
    Obviously, if there is no extent allocated, the table (view is defined with inner join) will not show up.
    You could qualify this is as a bug and submit a SR to Oracle. But then the performance impact may be huge.
    Sybrand Bakker
    Senior Oracle DBA

  • Text in landscape orientation is not showing up in portrait view

    When I have added additional pages while working in landscape mode and added text to these pages, the text is not showing in portrait view. The only text that shows is the one that comes if I have used the default text box in the 2 column mode. Even using the default textbook I find is not looking good because extra spaces I am putting in for landscape mode aren't needed in the other view. Finally, the headers are also not showing up in portrait view. What to do?
    Other difficulties:
    1) hyperlinking text is defaulting to the hyperlink character style which is not letting me change the colour from red to blue.
    2) jpg images are not being recognized as figures. I would like to be able to bookmark the images, but it is not allowing me. I would also like to have them show in portrait mode, but they are not.
    Thank you!!!

    Sorry if I'm being daft, but what do you mean by linking the text fields? I have one text box in landscape view. When I go to portrait, it no longer exists. If I insert a text box in portrait view, it does not appear in landscape.
    I'm not sure if this is the same problem, but I'm hoping you might have some ideas.
    Thanks.

  • Date not showed when report is viewed in PDF .

    Hi,
    We have a text field that shows the date on which the report is running.Date is not showed when report is viewed in PDF.But in HTML we can view them . Can any one help me out?
    Totally there are four pages for the report.

    I have observed the PDF driver iin EPM 11.1.2.x is not up-to-date and technically the Date (Text) is there just like in HTML. However, when you increase the View (Zoom in), it eventually does show up.
    I have chatted with Oracle Support, and they will not address it with a patch for now.

  • Narrative is not showing up in Layout View

    Narrative is not showing up in layout view when I'm creating a custom report. In Step 2, Creating Layout. I am hovering over add view, then down to advanced. Narrative is not showing up. How do I get this to work??? Static text and Legend is not showing either.
    Thank you for your help!!

    Hello,
    You need to have the privilege Analytics Scripting in step 4 for the narrative report to work. Only then would you HTML and javascript you apply on the Narrative report would show up.
    Please update if this works or not.
    Regards,
    Paul

  • CS6 does not show on my Adobe account.  Has my registration been lost?

    CS6 does not show on my Adobe account.  Has my registration been lost?

    make sure you're using the same adobe id to check your account as the adobe id used to register your software.  also, you should have a copy of your serial number(s) secured locally.  and, for extra comfort, you should have a copy of your installation files,
    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • A recent Kobo book purchase does not show in the Adobe Digital Editions. What can I do pls?

    A recent Kobo book purchase does not show in the Adobe Digital Editions. What can I do please?

    Not sure if this is the issue in your case, but ...
    ~~~~~~~~~
    There are lots of bugs in ADE2.0 (and 2.0.1).  Try replacing ADE2.0 with the older but more reliable v1.7.2.
    (You can have them both installed at once if you like.)
    Version 1.7.2, it is a little difficult to find, available on Adobe site for Windows and for Mac.
    http://helpx.adobe.com/digital-editions/kb/cant-install-digital-editions.html
    The forum software is sometimes corrupting the link above.  There shouldn't be a blank in 'editio ns.html'.  The following redirects to the same page: http://tinyurl.com/diged172
    Some people have found ADE trying to upgrade automatically. 
    It appears (not 100% sure) that if you install ADE2.0 as a new install (not as an upgrade) that your 1.7.2 will continue to run.
    Probably best to say no if 2.0.x installation asks if you want to migrate your library.

  • Songs not showing up on my iPhone 4 and iPad 1 on iOS 5.0.1?

    I have about one third of my music library not showing up on my iPhone 4 and iPad 1, even though it is ticked and everything, on iTunes it says that it should have been synced...
    For example, I have 'only sync ticked songs and videos to my iPhone/iPad' enabled in iTunes, and all songs by Katy Perry are ticked, but only about 4 show up? the songs that didnt show up are there if I look for them through albums, but they don't show up under the artist 'Katy Perry'.
    Basically, iTunes says the songs are synced, but they aren't on the iDevice.
    Also, I don't have match enabled, is it something to do with iCloud taking this music 'off' my iDevice because I didn't download it from the iTunes Store?
    Thanks

    Hi Steve,
    I guess I'm confused.  Are you trying to sync with match? or is match off?
    If you are trying to sync with match on then go to settings>music> and make sure that the show all music toggle is turned on.
    If you are trying to sync with match off and are trying to put files onto your phone without usiing match then uncheck the music tab under your phones information on your computer and then let it sync and take everything off.  Then recheck the music box under the music tab and go to your summary page and make sure that the box that says sync only checked music is selected and resync.  Sometimes you have to take everything off before you can get it to resync and put stuff back on.
    Again, if you talking about what you see with match turned ON, on your ios device then make sure that the toggle for show all music is turned on.
    You cannot sync with your computer and itunes match at the same time.  You have to do one or the other.
    Please let me know if I misunderstood your question or did not answer it properly.

  • HT1539 Digital copy transferred successfully to my computer, but not showing up in purchased list on other devices.

    Digital copy transferred successfully to my computer, but not showing up in purchased list on other devices. This is the first time I've encountered this issue. Package insert says copy is iPad compatible. Is there anything I can do to fix this? (The movie was Kung Fu Panda)

    it's a known issue. Everyone is experiencing this issue. Give it time for Apple to rectify the issue.

Maybe you are looking for