Duplicate all articles into another folio

Right now you can only import articles one at a time from one folio into another folio. This is tedious on 100 article folios.
There are a few scenarios where it would be helpful to be able to one-click duplicate a folio into another account, or have the ability to select all articles when doing the "add article":
Building a different version (ie International version) of said folio in a different account. (We do this every month, with renditions, so that's 2x the pain.)
For troubleshooting purposes. When a production folio exhibits a bug, I need to copy that folio into a sandbox account where it won't be edited/updated so that I can provide TS reps with a folio exhibiting the behavior.

http://help.adobe.com/en_US/digitalpubsuite/using/WS9293e1fb3b977c5c-6e66370112f982025bb-7 fff.html#WS67cb9e293e2f1f60793ca036128c63d70f5-8000
When you save the files, include _v and _h suffixes in the filenames if you want to import articles. For example add an _v suffix for the vertical (portrait) document, such as article_v.indd.

Similar Messages

  • Link to an article in another folio and favoriting pages

    Is it possible to create a hyperlink to another folio in the same app? The navto:// command links to another article but only in the same folio, or any article in the app?
    Also, i`ve been told that it would be possible to favorite a page in the folio, but I`ve never seen that, does anyone know about this?
    I heard that these would be new features it would be possible but I didn`t find anywhere how to do this.
    Thanks for the help.

    Hello Bob,
    It seems there's a text discrepancy in the Advanced Linking article of the Advanced Overlays folio.  The first button in the upper left says "Page 4 of Hyperlinks Article in Basic Overlays", however the name of the issue/folio in the library is "Overlay Basics".  The text below the button reads, "Jump to page 4 of an article in the Advanced Overlays folio.", however it should say "Basic Overlays" or "Overlay Basics" shouldn't it?  I'm not trying to be a nitpicker, but it could be confusing for newer folks.
    Andrew

  • Can I set a music for all articles of a folio?

    If anybody knows,please help!

    May be now is impossible,but I hope this could be supported in the future,that is very exciting!

  • Can i force all articles to update within a folio

    Hi,
    I am editing articles, and notice that not all updates are being passed through to the folio, unless i manually go into each articles and press "update" is there a way of forcing all articles in a folio to update, then I can publish the updated folio?
    Right now, due to the fact there are so many articles, its hard to keep track of which ones are at the latest version.

    Bob's correct, but don't walk away from your desk, you'll get the "uploading error-Try again?" thing on every other article, so you'll have to sit there to hit the try again button.

  • Select List to check duplicate values before putting into another item

    Hi All ,
    I have a select list which contains .. country regions like ( APAC , EMEA etc ) .
    When I select any region , all the countries belonging to the region fills in another item .
    Suppose I select APAC , all the countries like India , Japan etc all fills in another item .
    But the problem is , if I select twice APAC , it fills duplicate values . Its filling duplicate values .
    I want to put validation or check for country value ...
    Suppose I select ' APAC ' it fills all APAC countries in another item . Now Again If I select APAC then it first check the item whether the country is there or not . If already APAC countries are there in the Item then it will show an error message that " Value already Exist ' .
    I am not able to fix this problem . it is creating duplicate values in database table .
    Please some one help me on this ..
    Thanks
    Prashant

    Patrick ,
    Sorry , I am correcting my words ..
    I am using Multiselect List ( P11_REGION) having regions APAC , EMEA , LAD etc .
    When I select Region like APAC , it fills all the countries of APAC and puts into a List .
    If again I select APAC , it again fills all the APAC countries and puts into a list which causes duplicacy .
    I have one Application Process which returns Country according to Region selection and puts in the list .
    So , what i want is when user twice selects region APAC , it searches the list whether APAC countries are there or not . If countries are already exists then it show an error otherwise Puts the countries in the list .

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • I would like to copy all the songs from one Ipod into another. All the songs are into my Itunes account, I tried to drag and drop the songs from the old Ipod to the new one but it doesn't work. Is there a way to do it ?

    Hello everybody,
    I would like to copy all the songs from one Ipod into another. All the songs are into my Itunes account, I tried to drag and drop the songs from the old Ipod to the new one but it doesn't work. Is there a way to do it ?
    I share one Itunes account with other people from my family and one person would like to keep the same songs on the new Ipod as the ones which were on the old one.
    Thanks in advance for your answer.
    Yan

    Hello Chris,
    Thanks for your answer. I was hoping for an easier answer. Too bad there is no drag and drop solution, it would have been much easier.
    Thanks for answering so fast.
    Bye.
    Yan

  • If i have Time Machine backed up on an external hard drive, do i just plug the drive into another macbook pro and all my stuff is in the new computer?  also, does it matter if the new computer is running Lion when the backed up info came from Snow Leopard

    If i have Time Machine backed up on an external hard drive, do i just plug the drive into another macbook pro and all my stuff is in the new computer?  Also, does it matter if the new computer is running Lion when the backed up info came from Snow Leopard 10.6.8?

    No and Yes
    Don't use TM for this purpose, clone your drive to an external, plug the external into another MBP and reboot from it. Please note that booting a machine that came with Lion may not be possible from a drive with Snow Leopard.

  • I plugged my phone into another computer and seem to lost all my data. How do I undo it?

    I plugged my iPhone into another computer and it looks like I lost all my data. How do I undo this? I tried plugging it back into my default computer and it makes me register the phone. I don't want to lose all my data.

    That's certainly odd... the activation being lost could have been a carrier issue or iOS software issue...
    Was the phone already working and activated prior to this issue?
    You may be stuck with having to restore...
    By default iTunes or iCloud (whichever you have designated) will back up your content and settings... Content wise remember it's still always in iTunes even if you remove it from the phone...
    If a back up was performed prior to you have this issue (either by iTunes or iCloud) then performing the restore will take a bit but wont cause you to loose anything as after the restore is completed iTunes will ask if you want to restore from a back up or set up as a new device... choose the restore from back up option and choose the most recent back up listed and it will then restore all your settings and content...
    Keep in mind this will only be ture IF a back up has recently been saved in iTunes or iCloud...
    In iTunes it's easy to tell... open iTunes and go to prefferences... go to the devices tab and it will tell you the device and last date/time of last back up...
    Unfortunately I'm not aware of how to check to when the last iCloud backup was performed UNLESS you happen to have another iOS device already... another iPhone or iPad for example...
    If you do, then on that other iOS device... goto Settings > General > Manage Storage (under the iCloud section) and it will show you any iCloud back ups youve done with any devices

  • How to copy part/all of a project into another project in PE4?

    Is there a way to copy some or all of the workof one projedt ( clips, transitions and effects) into another project.  I would especially like to use the same rolling credits in all my video's.  I've tried copy/paste and Get Media from a file but I get  "file format not supported" when I try to import a .prel (project)

    There is a also a Clipboard "extender," ClipMate, that will allow one to Copy/Paste from one Project to another. I have not used it, but many have and few have any issues.
    The Export to DV-AVI method is the main one. The only thing to think about is that you will want either a perfectly tight edit, before the Export, or a very loose edit (I'd go so far as to add 02 sec. of Black Video between un-Trimmed Clips), as you will not want to, say replace a Transition, as you would have to Trim even more of your Clips to create the necessary Handles.
    Good luck,
    Hunt

  • Hi All,  I am haing trouble adding articles to my folio. When I attempt I keep getting the message "

    Hi All,
    I am haing trouble adding articles to my folio. When I attempt I keep getting the message "Network Failure." Any idea what to do?

    There are known server issues. You can check the status here:
    http://status.adobedps.com/

  • Breaking articles into folios.

    We're toying with the idea of breaking up our mags so that each article becomes a folio that can be downloaded independantly of the others.  This allows viewers to download just what they want (though it does increase our folio costs).
    Is anyone else considering this as retina begins to drive folio sizes up?  Any research on reader behavior when doing this?
    Thank you!

    I think you said it all:
    Seth.Blanchard wrote:
    (though it does increase our folio costs).
    I don't know what are your expectations, but I would do some math before adopting this approach.
    If your readers download, say, 4 articles of your magazine you will have a cost of at least U$ 1.20, considering DPS' 10 thousand downloads pack, instead of paying just U$ 0.30 for the full magazine.
    If your magazine has lots of articles and if your readers like to read most of them, your costs could be prohibitive.
    Regards

  • Copying a page from one picture book into another

    Does anyone know how to copy a page from one picture book into another. I have made 2 books and would like to make a third consisting of pages from the first 2 but seem unable to do it without starting again, or at least starting from a duplicate of one and re doing all the missing pages.

    Garageclan
    Welcome to the Apple user to user assistance forums
    print each page you want to include in "book 3" to a PDF and use the send PDF to iPhoto option - this will give you the pages as images in iPhoto that you can them place into "book 3"
    See Old Toad's tutorial #19 for more details - http://web.mac.com/toad.hall/OldToadsTutorials/No._19.html - note that it is slightly different - you are only using the beginning part
    LN

  • How do I keep originals while deleting duplicates recently importing into iPhoto 11?

    Installed iPhoto11. All previous photos were missing. Imported from previous system iPhoto9. Resulted in inordinate duplicates.How can I keep the previously organized originals and delete the duplicates that ended up with over 55000 photos? Please help. Thank you

    You do NOT import an iPHoto library into another iPhoto library - you move it over and open it - If it is on a previous system Connect the two Macs together (network, firewire target mode, etc) and drag the iPhoto library intact as a single entity from the old Mac to the pictures folder of the new Mac - launch iPhoto on the new mac and it will open the library and convert it as needed and you will be ready move forward. Or if it is on an extrnal drive just drag it to the pictures folder and launch iPhoto
    LN

  • Sort ALL tracks into one album while listening to nano

    I have tried to sort all the tracks into one album to listen to the complete CD without having to keep choosing every song individually while on the nano.I have tried everything, sorting it by album/album and artist and also renaming the artist feat. so and so... can somebody please help me with this issue. Thanks!!!

    Hello Jr45,
    And welcome to Apple Discussions!
    Instead of having me try to explain this one, check out this wonderfully written article by another forum member turingtest2 on organizing content in iTunes. It should be able to assist you with this situation.
    http://samsoft.org.uk/iTunes/grouping.asp
    B-rock

Maybe you are looking for

  • Need help with a SQL qurey that returns multiple rows for one record?

    I have the following query where I use a CASE WHEN clause to determine the date of a shift that begins with "FRLO" on day1 - day14 of the pay period. It works great if a schedule record contains one day that begins "FRLO", but if more than one day is

  • Calling function in where clause

    <BR> Hi I receive a string of form '333,444,55R5,B342,A556' as string value which should be passed to condition check to filter records in where clause of query. to make string form in right format with proper quotes separated i have written one func

  • GRIR open item table

    In which table does the GRIR open item resides ?. I should be able to see GL account number (HKONT) field in that table. Please advice

  • Performance Scorecard - unable to sync security with Shared Services

    Hi all, after successful installation of HPS we have provisioned users in Shared Services console for using HPS application. Now we need to sync HPS application with HSS. We have logged as "admin" to run this sync but we are missing Administration me

  • IBooks Store Button Not Visible

    The ibooks Store Button is not visible in iBooks... I tried fixing by repairing permissions, rebooting... still no store button! Checked Parental Controls but does not apply as I am the admin. user... I don't get it!  I can do everything fine from iT