Changing text every X pages

OK, so I'm helping design a cyberpunk game supplement and we're thinking about adding a little spinner beside the page numbers - so if you flip through the book it will animate like the old text base terminal spinners would. The one I'm trying to replicate would need to shift each page in the following sequence | / - \ through the whole book. (thinking about it now we would need to set it up to duplicate for 2 pages at a time in order to make the animation work properly on the printed version because of page facing.)
Anyway, is there a function I could use to do this already in the footer or is this something I would need to write a script for. I'm guessing the latter but I thought I would ask before I go through the trouble of writing the script.
This page has a sample of what I'm going for. Showing a Bash Spinner for Long Running Tasks | Louis Marascio « Fixed in the Next Release
Thanks!
steve

You could set up a set of master pages, then use a script to apply them in sequence based on the page number, maybe.

Similar Messages

  • Smartforms- want TEXT content could change at every print page

    Hi Experts,
    I would like to create a smartform to print many accounting document (include BKPF data and BSEG data)
    at page 1 , I  add some SUBWINDOW to put in TEXT ,  so I could move the subwindow to where I want TEXT to show,
    and at MAINWINDOW , I add a TABLE to show BSEG data ,
    then , I copy page 1 to page 2, and make some command ,  and run my program at SE38 ,
    it could print two page while I give two number to parameter ,
    but only the mainwindow content to be changed at diffrernt page , the TEXT content don't  to be changed.......
    Can you help me how to do could let TEXT change content at different page ?
    Or there are other methods could hit my target?
    Thanks a lot in advanced.
    Best Regards,
    Yacoa

    HI,
    Thanks your reply , but I consider you missunderstanding my meaning.
    I put BKPF data at TEXT , not page number , like bkpf-belnr,
    for example: I give two document number to driver program  parameter : 3700000001 , 3700000002
    then I want the report  page 1 to show : 
    accounting number:   3700000001
    report  page 2 to show :
    accounting number:   3700000002

  • Changing text colour in Pages for ios...button missing

    I'm trying to find a way to change text colour in a document, -all available information states that there is a button, with an i on it (info button) to adjust settings such as font colour, that button is mysteriously absent for me.
    The toolbar would need to look like the screenshots in this article for me to follow the instructions to format text colour: http://www.topappreviews101.com/pages-ipad-app-5.html
    My buttons look like the ones in the screenshot here: http://www.ipadou.com/nouveautes-des-applications-apple-apres-la-keynote
    I do have various formatting option with the buttons I have on mine, but not any that will allow me to format the text colour i.e the instructions available to me tell me to press a nonexistent button.
    am I going mad/has something recently change/is there anything I can do about it?!
    Any help would be much appreciated.

    I could not get your links to show me what you were looking for, but I just opened pages and figured out how to change font color.   I am using the most current version of pages for its, so I don't know if this works on older versions.
    If I screw the instructions up, simply open a document in pages, touch the wrench then help, and search for color.  Then look in the style section.
    Anyway.   Highlight the text you want to be in a different color.  Touch the paintbrush looking icon in the tool bar.  The touch style.  Then touch the name of the font. ( or change the font). A color setting will appear.  Pick what you want.

  • JS: CS3-Change text on master pages

    Hello all,
    I am new to JS and I really need help. I have spent hours researching, but without much success. I have written code in VB before but I am totally new to JS so please be patient with me. Here is what I want to do.
    I publish a monthly trade magazine. Every month when it is time to create the next issue, I open the one that was just completed and do a Save As for the next month. I then go in and delete all the articles and just move around the ads. I have about 20 master pages (left and right combined) and I have to go in and do a find/replace to change the issue date on the top. I don't want to do a Replace All in case it is somewhere else in the document.
    For example, I am about to create the April, 2008 issue. The document will be named 2008-04.indd. I will go to the master pages and find 'March, 2008' and replace it with 'April, 2008'. I am thinking I should use Script Labels and name each text frame on each Master Page so I only change those instances.
    Any thoughts, suggestions, ideas...? Any help would be appreciated. Just remember to talk to me like you are dealing with a 5 year old. Scripting with JS in ID is totally new to me.
    TIA,
    Nancy

    You don't need a script. All you need is a couple of text variables, one with the month, the other with the year. Each month you just change the value of these two variables.
    Peter

  • Change text direction in Pages, Chinese style, characters run down the page.

    How so I make it so text in text boxes runs in the traditional chinese style. Characters in text boxes should run down the page instead of across the page.

    The only Apple app which can do this is TextEdit.  Format > Make Layout Vertical
    Other non-Apple apps where it may be possible are MS Word, OpenOffice, iText Pro

  • IDCS3 - Automate task every 4 pages? Possible?

    I'm on Tiger, using InDesign CS3. I have multiple 1000 page (8.5X11) pdf files that upon importing into InDesign I need to make a small change on every 4th page - moving the whole page frame down and to the left. Presently I am manually clicking every fourth page, and typing in the appropriate X/Y coordinates...but this is getting tedious really fast. I don't know how to write scripts, but didn't know if anyone had any creative ideas...thanks in advance.

    Just to chime in that it is hypothetically possible.
    For example, if your PDFs were numbered sequentially and you only wanted to modify names that divided evenly by 4, something like this might work:
    tell application "Adobe InDesign CS2"
    tell active document
      set myLinks to every link whose name begins with "PDF"
      repeat with thisLink in myLinks
       set thisName to name of thisLink
       set thisNum to (((characters -8 thru -5 of thisName) as string) as number)
       if (thisNum mod 4) = 0 then
        set frameList to (every graphic of all page items whose item link = thisLink)
        if length of frameList = 1 then
         set thisFrame to item 1 of frameList
         --define amount to shift by
         set xShift to "-.75" --put in your own value here
         set yShift to "-.75" --put in your own value here
         --Move frame
         set {thisTop, thisLeft, thisBtm, thisRight} to geometric bounds of parent of thisFrame
         set thisTop to thisTop + yShift
         set thisBtm to thisBtm + yShift
         set thisLeft to thisLeft + xShift
         set thisRight to thisRight + xShift
         set geometric bounds of parent of thisFrame to {thisTop, thisLeft, thisBtm, thisRight}
         --Move graphic
         set {thisTop, thisLeft, thisBtm, thisRight} to geometric bounds of thisFrame
         set thisTop to thisTop + yShift
         set thisBtm to thisBtm + yShift
         set thisLeft to thisLeft + xShift
         set thisRight to thisRight + xShift
         set geometric bounds of thisFrame to {thisTop, thisLeft, thisBtm, thisRight}
        end if
       end if
      end repeat
    end tell
    end tell

  • In a document with several sections, in section VIII and IX one cannot select the text of the page foot nor set the pointer in it; so, one cannot write nor change the page foot text. Please help!

    in a document with several sections, in section VIII and IX one cannot select the text of the page foot nor set the pointer in it; so, one cannot write nor change the page foot text. Please help!

    Question already asked and answered several times.
    It's a bug striking in long documents.
    Select a word somewhere higher in the page then use the arrows to reach the wanted insertion point.
    Yvan KOENIG (VALLAURIS, France) mardi 23 août 2011 15:44:24
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please :
    Search for questions similar to your own
    before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • I updated to os x 10.8.5 today and now I cannot publish changes to my web page through iweb.  iweb crashes every time I try to publish

    I updated to os x 10.8.5 today and now I cannot publish changes to my web page through iweb.  iweb crashes every time I try to publish

    First do the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iWeb's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iWeb folder (Snow Leopard and Earlier).
    NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    Next, in Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or Mountain Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file in your Home/Library/Application Support/iWeb folder that you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • How to place a word document that autoflows text boxes onto every other page?

    Is there a way to place a word document into InDesign that autoflows text boxes onto every other page?
    Example
    page 1 from word doc imports to page 1 in indesign,
    page 2 from word doc imports to page 3 in indesign,
    page 3 from word doc imports to page 5 in indesign, etc.
    Than, take a different word doc and import to the even pages of the same indesign document,
    Example
    page 1 from word doc#2 imports to page 2 in indesign,
    page 2 from word doc#2 imports to page 4 in indesign,
    page 3 from word doc#2 imports to page 6 in indesign, etc.
    Thanks

    I don't import Word docs... but I don't think there is a simple 1-click solution.
    You probably need to set up a facing pages document with a master text frame on each.
    Create the pages you need and link the left text frames to each other and the right to each other.
    Importing should work from there however not sure how the page-break works (if you have that set-up in Word).

  • How can I change the text   color in pages

    Hi , how can I change the text color in pages app

    Select the text you want to change.
    Tap the i in the top bar.
    Tap Style in the top bar.
    Tap the Font name/size
    Tap Color then choose the color you want the text.

  • Is there a way to change the default page attributes (font, margins, etc) in Pages or do I have to change them every time I open a new document?

    Is there a way to change the default page attributes (font, margins, etc) in Pages or do I have to change them every time I open a new document?

    I never even thought of that - Word woman that I was!  Thanks so much - I shall give it a go!!

  • Why does login token change on every page reload?

    FYI: I'm using Portal 5.0.2 and developing portlets using JSP/Java on a remote server.
    When printing all the request headers, I notice that "csp-session-token" changes every time I reload the page containing the portlet in which I'm displaying the headers. In the Advanced Settings page of this portlet's web service editor, I checked the box "Send Login token to Portlets" and I specified a login token duration of 30 minutes. What I would like is for this value to stay the same for the 30-minute duration.
    Shouldn't my portlet display the same value for the request header "csp-session-token" for 30 minutes? Why does this header value change on every page/portlet reload? Or perhaps I'm not understanding how the portal uses the "login token duration" value. Can someone please enlighten me?
    Thanks,
    Jose

    Jose,
    The first token will be good for 30 minutes, and the second for 30 minutes as well. Since the time value is encoded in the token, it must change with each request to be good 30 minutes.
    This token is used for, among other things, calling back to the portal and acting as the same user. If you simply want a "session," the portal sustains a session on your app server that stays the same for the whole session. Feel free to set any non-persistent cookie and use it for that purpose.

  • Cmd  brings up dashboard, can I change it? I used to use it to change the text size in Pages

    Upgraded to lion and all is good. However, cmd+ has been hyjacked by the OS to bring up the dashboard. I use cmd+ and cmd- to change the text size in Pages. Is there a way to change the Lion keyboard shortcuts to get the functionality back for Pages? The cmd- still works to reduce text size in Pages, so it's even more frustrating that cmd+ does something else.
    thanks in advance

    Well on my MBP running Lion 10.7.2 Command+ or - does not do anything, and that is using either Command+ or Command(+ shift)+. I do not have pages installed.
    The point is that Command+ and Command- should control the text size in Pages (we're not talking about any othr program, just Pages). Those are hard-set (programmed in the software) keyboard commands for Pages.
    In Pages, Command+ should increase the text size, and not bring up the Dashboard. And that is the OP's problem - that command is bringing up Dashboard, which it should not do. Apparently there is some setting somewhere that is causing Command+ to do the wrong thing - and that's what we're trying to find.
    So at least on my MBP Command+ certainly does not bring up the Dashboard....
    Good - it's not supposed to, nor is that what the OP wants.
    By the way, if you use Safari and/or Mail, you'll find that Command+ and Command- adjust the text size in those programs. Ditto Numbers, TextEdit, Bean, and many other programs - it's a fairly common assignment, hence not one which usually needs to be added via Keyboard Shortcuts.

  • Changing the text size in Pages or Open Office with Automator.

    I have a question about the Automator software. I'm trying to change the size of the text in either Pages or Open Office. Present the text size is 10,5 and I would like to change this to 22. I wanted to ask whether this is possible and how I do this. This programme is very new to me. I have a German system and need to change hundreds of files. Many thanks.

    Whilst in the Preview application, press "Shift - Command - A" (⇧⌘A) simultaneously to show the markup toolbar, or click View, and select "show markup toolbar". There is an icon "A" near the right hand side of the now visible markup toolbar, click this icon to reveal all the font options. 

  • Oh, Apple! Will you pleeease fix the new "Mavericks" so that my poor old eyes don't have to continually hit "Zoom In" or enlarge every time I change to a different page?

    Oh, Apple! Will you pleeease fix the new "Mavericks" so that my poor old eyes don't have to continually hit "Zoom In" or enlarge every time I change to a different page?

    Hi..
    Have you tried a different screen resolution ?
    System Preferences > Displays > Display > Scaled

Maybe you are looking for

  • Trouble updating iWork

    Okay, so I have iWork '09 installed from a dvd I bought few years back. I recently updated my OS to Yosemite, and I was able to update some of the other apps as well (iPhoto for example). My problem is with updating iWork. App Store shows that an upd

  • Copy asm file to different asm

    I need to create a copy of a standby database manged with ASM. How can I copy datafile, controlfile, archive, ecc to new ASM on different server?? thanks a lot Silvio B

  • How to 'save target as' from java?

    pardon for the english and pardon if the post is not in the right place. the idea to open a webpage (url given) that contains links to several pdf files, and to save those files in the hard disk. how can this be done with java? can anybody help?

  • Enable Selection field in datasource

    Hello All, I need to make a selection in InfoPackage for making Initialization of Datasource. When i checked in InfoPackage under data selection tab,i could nt able to see any selection Field i checked the datasource from which this IP is created and

  • Workaround for Hotmail IMAP problems in Mail

    Am a new Mac user, migrating from the windows world, and I would like to share my experience with solving the issue Hotmail has with IMAP. I've been using hotmail for years, migrating from hotmail really is not an option, have too many resumes/accoun