How to number pages in a movie?

Hi there,
i would need to know how I can number the pages of a movie. I've done the following but it doesn't work, could you help me please??
1) created a text member called "slideNumber"
2) created a Movie Script:
global gMarkerList
on startMovie
  gMarkerList =  _movie.markerList
  vCount = gMarkerList.count
  repeat with ii = 1 to vCount
    ii = i + 1
   put value (ii) into member("slideNumber")
  end repeat
end startMovie
Whenever i run it, what i always see in member "slideNumber" is 108 (which is the total number of markers). I would like to see 1, 2, 3...and so, on each page
Thank you.
Marta

You need to run some code every frame under a marker that displays the current page/slide number:
on beginSprite me
  bFound = 0
  mList = _movie.markerList
  tMarker = marker(0)
  repeat with ind = 1 to count(mList)
    if mList.getPropAt(ind) = tMarker then
      bFound = 1
      exit repeat
    end if
  end repeat
  if bFound then member("slideNumber").text = string(ind)
end
on exitFrame me
  go to the frame
end

Similar Messages

  • How to number pages by 2,4,6 (evenly)?

    I want to know how to number pages by 2,4,6 (evenly)?
    I have a 30 pages document and the pages need to be number evenly (by 2), I would to star with the page number 78 so 80 , 82 get it.
    thank you for you help

    You need to run some code every frame under a marker that displays the current page/slide number:
    on beginSprite me
      bFound = 0
      mList = _movie.markerList
      tMarker = marker(0)
      repeat with ind = 1 to count(mList)
        if mList.getPropAt(ind) = tMarker then
          bFound = 1
          exit repeat
        end if
      end repeat
      if bFound then member("slideNumber").text = string(ind)
    end
    on exitFrame me
      go to the frame
    end

  • How to number pages after beginning project

    how do you number "pages" after the project has been started with a pages template?

    gickster,
    Place the Text Insertion pointer (cursor) where you want the page number to go, and
    Insert > Page Number
    If you do it in a Header Field or Footer Field or Master Object, your numbers will appear on all pages in the Section.
    Jerry

  • How to number pages

    HI;
    how do I number my pages on pages?  I found under the inspector, layout-section, selected section and got what looked like a way to tell it to put page numbers in but didn't work for me.  I selected start at and put the number 1 in the box.  Back to my paper and every time I tried to type the page number in at the bottom, first I got the header box and then it would only put the same number for each page.
    HELP please,
    Thanks,
    I will stay calm!

    Any text (including a number) that you place into a Header or Footer will repeat on each page.
    The settings in the Inspector control the numbers applied to each page in a section, but don't cause those numbers to be displayed on the page.
    To get the number onto a page, yuo need to go to the Insert menu and choose Page Number.
    You'll find a more detailed explanation (and a wealth of other information about using Pages) in the Pages '09 User Guide. Page numbering is discussed in the article Adding Page Numbers and Other Changeable Values, in Chapter 5, Working with Text. Search 'page number' for related discussion.
    You can download the Pages '09 User Guide via the Help menu in Pages '09.
    Regards,
    Barry

  • How to? Pages document with movie embeded to pdf

    Hi,
    I have a pages document ('09 version 4.3) with a movie (mp4) embeded.
    But when I export it to a pdf the movie changes to a still.
    But pdf supports movies right? So, does anybody know how to export the pages document into a pdf and still have a working movie?
    Thanks in advance!

    MV,
    That's a Preview/PDF problem, more than a Pages one. I believe that you will be able to add an embedded movie using Acrobat Pro.
    Jerry

  • How to number pages on bottom left and right corners

    Hi,
    i am creating a magazine and am trying to number the pages so the first page will have 'page 1' in the bottom left hand corner and the second will have it in the bottom right, i can get the numbering to work but they are all in the bottom left so on the opposite page the number is next to the spine (of the mag), i also need to miss out the front cover
    any help would be much appreciated
    richard

    In order to do mirrored layout elements you need to be sure that you've set up your document as facing pages. Put the page number markers on opposite corners on each page of the two-page master spread.

  • I installed my new Apple TV and successfully completed the configuration (Wireless network, Apple ID, and others) yet I am always in the Computers and Setting page- can't move to the main page – any idea on what and how, please?

    Hello, I installed my new Apple TV and successfully completed the configuration (Wireless network, Apple ID, and others) yet I am always in the Computers and Setting page… can’t move to the main page – any idea on what and how, please?

    Welcome to the Apple Community.
    Unfortunately, a number of users appear to have encountered this problem. Some of these users have reported that the problem just disappears the following day or shortly after. Other users have found various other solutions to this problem.
    Firstly, are you receiving any date and time errors when you turn on your Apple TV?
    Check that you are properly connected to the Internet, by ensuring that you have a proper IP address and not one starting with 169. Also check that your location for the iTunes Store is set correctly, if so you might try changing it and then changing it back.
    If the problem persists try restarting the Apple TV by removing ALL the cables for 30 seconds, or resetting it using the reset option under general. You should also try restarting your router, or if this doesn't work you might like to try a restore.

  • How to insert page number on each page for Cross-Tab report?

    Hi,
    I have created a Cross-Tab in the section Report Header via Crystal Reports 11.
    Now, I want to created more Cross-Tabs, and each page has one Cross-Tab.
    So, I insert Report Headers to contain Cross-Tabs. But, the report only shows the page number at the last page.
    How to insert page number on each page?
    Thanks in advance.

    Hi,
    Well, the easiest solution is to place the Cross-tab in the Report Footer, Of course, ONLY if the report contains this single object which I'm assuming is not the case.
    If you do not wish to place the cros-tab in the Report Footer, here's what you need to do:
    1) Create a formula;
    whilereadingrecords;
    2) Create a group on this formula. If the report already contains groups, move this formula to the top of the grouping list. It won't affect the other groups or records in any way.
    3) Move the Cross-tab from the Report Header to the Group Header1 and suppress Group Footer1
    4) Add the Page Number field to the Page Footer
    Let me know how this goes!
    -Abhilash

  • How to set page number & current date in sqlplus result

    how to set page number & current date in sqlplus result

    Hi,
    Use the TTITLE command. For example:
    SET     PAGESIZE     15
    TTITLE     LEFT  &_date     RIGHT  "Page:" FORMAT 999 sql.pno     SKIP 2
    SELECT     ROWNUM
    ,     ename
    FROM     scott.emp
    ;Output:
    12-Jan-2011                    Page:   1
        ROWNUM ENAME
             1 SMITH
             2 ALLEN
             3 WARD
             4 JONES
             5 MARTIN
             6 BLAKE
             7 CLARK
             8 SCOTT
             9 KING
            10 TURNER
    12-Jan-2011                    Page:   2
        ROWNUM ENAME
            11 ADAMS
            12 JAMES
            13 FORD
            14 MILLER 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and the results you want from that data. If your question is based on commonly available tables, like those in the scott schema, then you don't have to post any sample data: just post the output.
    Explain how you get those results from that data.
    Always say what version of Oracle (and other relevant softward, SQL*Plus in this case) you're using.

  • How can i insert to word number pages after 6 pages but considering the pages before

    how can i insert to word number pages after 6 pages but considering the pages before.

    I assume this is Microsoft Word, and you want the first six pages to have no footer, subsequent pages to have a footer showing the page number.
    1. Insert a section break after the first six pages.
    2. Insert page numbers. This will add a footer with page numbers to both sections.
    3. Unlink the section 2 footer from the section 1 footer. [Click in the footer area, uncheck Link to Previous in the Header and Footer toolbar.]
    4. Delete the page number from the section 1 footer.
    Your document will now show page numbering on all pages starting with section 2.

  • How to number spreads, as opposed to numbering pages?

    Can anyone help with a method to number spreads, rather than pages? I have hunted thoroughly on forums and in plug-ins, but the only thing I have found a few scripts that either don't work or don't exist any more.
    First, "why would anyone want to do that?" Answer: flashcards. I professionally publish flashcard decks. Each card needs to be numbered, but only one number per card, not two numbers, like front and back. The cards are printed 8-up, duplexed, and cut. Thus, InDesign's view of the press-ready file is that the front of the flashcards is the left side of the spread and the back of the flash cards is right side of the spread. The cards might be numbered on the face, on the back, or both (same number, both sides). A deck of playing cards is 52 cards, not 104. This is not a tough concept, but people have trouble with anything that doesn't look like a bound book ...
    Also, just as a note ... LOTS of books, like workbooks, teacher manuals, two-language books ... need to have only one side of a page consecutively numbered. I can't imagine how supposedly the best layout program on the planet is incapable of printing a deck of cards.
    Yes, there are scripts that can import a file full of blank lines, number the empty paragraphs, and pretend that these are card numbers. OK, except TOTALLY UNMAINTAINABLE. Because once you do this, it is dead. Try to insert a new card, or delete one. The numbers are all wrong and there is no way to fix that problem. You can't "re-run" any scripts, so far as I can tell. Anyone know how to fix this ?? These are academic flashcards. New editions come out every few months. Don't tell me to renumber by hand. I have decks with over 700 cards (over 1400 pages for people who insist on using pages). Isn't why we have computers?
    What is wrong with a simple variable? Even (God help us) Word has variables. Why can't I define my own variable, increment it in a one-line script, and place the value into a box on every card (every spread, actually). Why is InDesign less capable than print programs I used in 1975 that ran in BASIC on timesharing system??
    I could renumber tombstones easier. At least then, the file format wouldn't become obsolete every couple of years.
    Anyone?

    Thanks for the complement.
    My biggest problem is "maintenance," which means adding, deleting, and moving cards around. In all cases, the deck has to then be renumbered, so that a fresh printing produces a cohesive, in-order deck. Just like other textbooks, the information that used to be on page 33 in one edition now appears on page 37. The cards do not have all the same layout. I usually have about five major layouts per deck. Thus, there is no way I know of to "flow" text from a textfile into a set of templates to build an entire deck.
    Imagine that you produced textbooks, including indexes, internal references and TOC. But ... the software you used had no way to number pages. And if you decided to hand number pages in, say, Thailand, those page numbers were dead text strings and could not be used to auto-generated a TOC or Index. What would you do?

  • How do I number pages consecutively starting with a number other than 1?

    In Pages, how do I number pages consecutively starting with a number other than 1?

    Inspector > Document > Section > Page Numbering:     click on the dropdown menu

  • How to hide page number in the table of content

    Hi,
    I'd like to know how to hide page number in the ToC. They show automatically, but at least for the headings of third ad fourth order I'd like to suppress/omit them.
    Thanks for any advice!

    You have in the Inpspector > Document tab > TOC > uncheck button for #'s

  • How to order pages to follow page number?

    Hi!
    I haven't found any thing in documentation how to order pages automatically or manually. I would like to arrange my page numbers but couldn't. Please see in attached file.
    Could you guys please me resolve this problem?

    Make yourself familiar with the concepts of "Sections" and "Imposition".
    Ask the user about their intention.
    Tell them imposition should not be done via the pages panel.
    Dirk

  • How do I import a quicktime movie?

    Hi,
    I think this is a super simple question, How do I import a
    quicktime movie onto my page? I presume you go to
    insert>media>? not to sure what comes next though? Is it
    shockwave,applet,active x or plugin?
    Thanks,
    Beth H

    There's not a default insert behavior for this built into
    Dreamweaver, but a
    quick search on the Exchange show that there is an extension
    for this,
    although I've not used it. Do a search for "quicktime" here:
    http://www.adobe.com/cfusion/exchange/index.cfm?view=sn120#loc=en_us&view=sn105&viewName=E xchange%20Search
    Make sure you set the program dropdown to Dreamweaver to
    minimize the number
    of hits. Should be the second one on the list: "Insert a
    QuickTime Movie,
    V1.0.1".
    Hope this works for you. There is some additional information
    about the
    extension on the detail page that you might want to look at
    to ensure
    everything works properly.
    Best regards,
    Chris
    "befh" <[email protected]> wrote in message
    news:eoao6c$84t$[email protected]..
    > Hi,
    >
    > I think this is a super simple question, How do I import
    a quicktime movie
    > onto my page? I presume you go to insert>media>?
    not to sure what comes
    > next
    > though? Is it shockwave,applet,active x or plugin?
    >
    > Thanks,
    >
    > Beth H
    >

Maybe you are looking for

  • How can I determine VMArgs at runtime?

    Is there any way at runtime to list off all of the VM Args that were used to start up the JVM?

  • How to use sqlplus with utf8 on windows command line

    I expected sqlplus to work interactively with the following settings: - Lucida Console font for command window - chcp 65001 (UTF8-Windows-Codepage) - set NLS_LANG=.AL32UTF8 But it turned out that 1) sqlplus apparently does not use WIN32-API function

  • Failed DMP Deployment

    Failed DMP deployment of a video presentation containing 3 videos less than 50mb total. DMM 5.2.2 DMP 4400  5.2.2.1 Error Message: Not able to set FTP permissions.  Exception message is The IFMS DMP MIB utility could not connect to the DMP to  fetch

  • Memleak cannot work when start the management server by ctrlhandler.act

    Hi, all I use ctrlhandler.act to start a management server on running system. when start the memleak detector, i got the error message on server output: [JRockit] ManagementServer started trend analysis java.lang.NullPointerException Continuing ... j

  • Migrating from Excel to Numbers '09

    I've recently converted from Excel, but there are a couple of features that I can't find in Numbers. 1. It looks like Numbers doesn't have Pivot Tables. Categories looks like a partial substitute, but how do I create a formula in one table to referen