Adding a counter

I would like to add a counter in the corner of my video clip. Is there anyway to do this with FCP or do I have to import one from somewhere?

Well there's one builtin in FCP when you Edit to tape. I took that, recaptured it and modified it to suit my countdown needs. The academy leader is available online for download many places - go to google images and type in Academy Leader.
Or see this project in Motion and modify it to suit your needs:
Fun With Counters...
Patrick

Similar Messages

  • [CCM 5.0/perfmon] Adding a counter for a none-existing instance

    Hello,
    I'm having the following issue with perfmon when adding a counter to a session (with perfmonAddCounter) :
    I'm trying to add this counter "\\ccm1\Thread(test)\% Processor Time" BUT the instance "test" does not exist on the server. I would expect to receive an error (like under CCM 4.2) but it's not the same behavior.
    And even worse : When I use perfmonCollectSessionData to collect the data, I'm getting an entry for this "gost" counter and its value is 0 and maked as good.
    The only way to workaround this is list all instances before adding the counter to check if the instance exists or not.
    Have you seen the same behavior ? Is it a bug ?
    Thanks
    Seb

    Try bug - CSCsb01541

  • I added a counter and other html to my non .mac site

    I added a counter and other html to my non .mac site by simply adding the code to the index.html page after I published to folder.
    http://www.the-scrap-yard.net/photorestoration/

    Also, I would suggest requesting a change in your credit card number that was
    used for that transaction just to be safe.
    Also, since they actually got access to your computer, if you have any other
    financial account info on your computer, you will need to monitor those accounts
    quite closely for any fraudulent activity.  There is no knowing what they might have
    accessed.  They quite possibly may have downloaded your whole life.

  • How do I stop a synced iPad from adding play counts to my iTunes?

    I organise my parents' iPad 3 with iTunes, they're playing music on it and their plays are automatically added to my iTunes play count. For several reasons, I don't want this to happen. I can't find any setting to disable it though. Can anyone help?
    OS: Windows 7
    iTunes version: 10.6.3.25
    The new iPad, iOS 5.1.1
    Thanks!

    My girfriend and I used to share a desktop. What we had to remind ourselves to do, was to make sure the correct AppleID is being used when we'd each sync. In other words, this was the best way to keep our music seperate.
    Now, for your play counts...
    Get on the desktop with your AppleID being used on iTunes. Right-click on each song your parents have 'overplayed' (or just which songs you don't want reflected as your plays)... scroll down on that right-click menu to "Reset Plays". This will set the songs recent play count to zero.
    Once you've done this to all the songs necessary, sync your device with your AppleID.
    Now, from now on... DO NOT let your parents sync their iPad on your AppleID. Make sure they use their own.
    If your parents are anything like mine... but its best to keep our music libraries segregated.

  • Adding a counter that keeps track of the total number of times a loop has run, even if LabVIEW has been restarted.

    Hi all,
    I am writing a VI for measuring data and inserting it into a database. The measurements are controlled by a loop that runs once every minute. I want to give each measurement a unique id number and store this too in the database.
    To do this, I want to add a counter to this loop so that I can count the number of times the loop has executed in total. This is, even if the VI, LabVIEW or even th PC is restarted, I want the counter to keep track of the number of executions. If say, the loope executes two times and then the VI is stopped and restarted, I want the following number on the counter to be three.
    Does anyone have an idea about how to do this? I am gratefule for any help!
    Clara
    Message Edited by Clara G on 05-11-2010 08:21 AM
    Solved!
    Go to Solution.

    Not allowed to give away code but I can describe one of my "Totalizers" used to keep track of how much stuff has passed through a fliter so we know when to change it.
    THe Total izer is implemented as an Action Engine.
    It has three actions (methods)
    1) Init - Opens an ini file and reads the last values read and cahces these in shift registers. It also inits a timer so we now how long since the last file I/O.
    2) Update - Uses the data passed by the caller to update the totals. It also checks how long since the last save and if more than one minute it writes to the ini file (forced write).
    3) Read - returns the totals for display and evealuating if a an alarm should be triggered to change the filter.
    Note:
    THe pre-LV 8.6 version of the ini file exposed methods to allow writing to the file. The new ini functions do not expose that functionality and require closing the file.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Adding a counter to a filename that resets daily

    Dear,
    I'm trying to add a counter to a filename, but I want it to reset daily.
    So on monday if I send three files I want file_1, file_2 and file_3. On tuesday it should once again be file_1, file_2, etc.
    I'm using the Counter option in the File Receiver Communication Channel but I don't see the optino to reset it daily. Is this an option, or will I have to work with a Z-table on the PI machine, fill up my counter dynamically in the Message Mapping and then use dynamic variables?
    Kind regards,
    Frederik-Jan.

    Hi,
    I think this caanot be done as the file counter variable is stored in memory. Whenever a j2ee engine restart happen it get reset. Check this note:
    >>Note 821267 - FAQ: XI 3.0 / PI 7.0/ PI 7.1 File Adapter
    It is stated there that
         Q: After configuring a File Adapter receiver channel with the File Construction Mode set to "Add Counter", I noticed that the counter gets reset each time I restart the J2EE engine.
         A: This behavior is by design. The current counter value is not persisted, but only kept in memory. It is intended to generate distinct file names, but not strictly increasing numbers. After a J2EE restart, the File Adapter will start writing messages beginning with the smallest free counter number (skipping existing larger numbers).
    I would suggest you to try handling this in Message Mapping. Then you need to create the file name and overwrite using Dynamic Configuration. There you can see whether the day is Monday and reset the value!!!
    Regards
    Suraj

  • Adding a Counter to Spry Repeat List

    Hi, this might seem like a relatively simple problem but after spending some time, I haven't yet arrived at an appropriate solution.
    1. I have spry repeat list.
    2. I want add a counter (required by a javascript function nested within the repeat list).
    I have tried ds2.getCurrentRowID and that failed.
    One simple way of thinking of the problem is: how would you modify a spry repeat list to display each row, numbered 1 through n down the left-hand column?
                <tr spry:repeat="ds2" spry:odd="evenRowVenue" spry:even="oddRowVenue" spry:hover="hoverVenue" onClick="MM_callJS('GEvent.trigger(venue_list[INCREMENTING COUNTER HERE],\'click\');')">
                  <td align="left"><a href="venue_show.php?vid={@vid}">{@name}</a></td>
                  <td align="left">{@street1}</td>
                  <td align="left">{@city_suburb}</td>
                  <td align="left">{@state}</td>
                  <td align="left">{@country}</td>
                  <td align="left">{@rating}</td>
                </tr>

    secondliver wrote:
    Hi, this might seem like a relatively simple problem but after spending some time, I haven't yet arrived at an appropriate solution.
    1. I have spry repeat list.
    2. I want add a counter (required by a javascript function nested within the repeat list).
    I have tried ds2.getCurrentRowID and that failed.
    One simple way of thinking of the problem is: how would you modify a spry repeat list to display each row, numbered 1 through n down the left-hand column?
                <tr spry:repeat="ds2" spry:odd="evenRowVenue" spry:even="oddRowVenue" spry:hover="hoverVenue" onClick="MM_callJS('GEvent.trigger(venue_list[INCREMENTING COUNTER HERE],\'click\');')">
                  <td align="left"><a href="venue_show.php?vid={@vid}">{@name}</a></td>
                  <td align="left">{@street1}</td>
                  <td align="left">{@city_suburb}</td>
                  <td align="left">{@state}</td>
                  <td align="left">{@country}</td>
                  <td align="left">{@rating}</td>
                </tr>
    {ds_RowNumber} is what you are looking for.
    So in you case:
    onClick="MM_callJS('GEvent.trigger(venue_list[{ds_RowNumber}],\'click\');')">

  • Adding a "Counter" to an old version of CS3

    I am working with an old version of Adobe Contribute CS3 (v 4.1).  Is there a way I can put a "counter" to show how many hits my website receives?  I've looked everywhere in the software, but can't find what I am looking for...Any suggestions would be greatly appreciated! 

    In the menu choose  - Insert -> HTML Snippet
    Copy paste your code.
    Note - if this menu is disabled ask the Administrator of the web site to enable it.

  • Adding 2 counts

    Hi,
    How can i sum each count, the final result being count(*) + count(*)?
    like:
    select count(*) from table_1
    +
    select count(*) from table_2
    The result should be the sum of the two counts.
    Thanks

    SQL> ed
    Wrote file afiedt.buf
      1   select sum(cnt) from
      2   (select count(*) cnt from user_objects
      3   union all
      4   select count(*) cnt from all_objects
      5*  )
    SQL> /
      SUM(CNT)
         18707or
    SQL> ed
    Wrote file afiedt.buf
      1* select (select count(*) from all_objects) + (select count(*) from user_objects) cnt from dual
    SQL> /
           CNT
         18707

  • Move itunes library from one computer to another while keeping data (e.g date added, play counts etc.)

    Hi guys,
    I'm really sorry if this question has been asked before but I just upgraded my computer and I want to move all of my itunes library from my old one while keeping all of my info.
    I tried copying the xml files but my new computer has a different location for the songs so they wont show up in the library.
    Thanks

    The following article(s) may help you.
    Moving your iTunes library to a new computer

  • Adding a guest book to an iweb created site and problems with counter

    Hi, can anyone tell me if it's possible to add a guest book to a website created on iweb? I can find the html to insert, but can't find out how to insert it on the page.
    Also, I have tried adding the counter to see how many visitors I have, but it does not show up when the site is published.
    Thanks very much, in advance.

    You might have better luck asking in the iWeb forums here:
    http://discussions.apple.com/category.jspa?categoryID=188

  • When we update an existing pdf file occurence of " /Count"  increases.

    We have one pdf file with 20 pages and when we open this file in editplus to see its content it shows "<</Count 20".
    But when we add new page to it or insert from other pdf file the "<</Count" is shown two times with the values 20 and the added page count, i.e. "<</Count 20", "<</Count 22" (if we added to new pages to it.)
    Please confirm why this happening?

    None of this is unusual or unexpected. Read about incremental updates, and object streams.

  • Percentage and Count side by side

    Hi,
    I have a crosstab which shows data broken out over 10 years, is there a way to show count and percentage side by side meaning
    year1 year1 year2 year2
    count percentage count percentage
    Item
    Is there a way to do that.
    Also is there a way to have in percentage when I drill down the percentage sum up to 100 for that drill down for example
    2006 2007 2008
    item1 -> Gender-> Female 50% 50% 50%
    Item1 -> Gender-> Male 50% 50% 50%
    I know you can select calculate based on change in item but if I do that it works at one level but if I drill down further it will not work
    Any suggestions
    Thanks
    Nimesh

    Hi,
    You should be able to do this by adding the count as the data item in the crostab and then creating a percentage for the crosstab using 'a grand total for each column' option.
    The percentage and the count will then based on what has been included in the crosstab.
    Rod West

  • New Mac, how to keep Date Added info in new iTunes

    Yesterday I bought a new iMac, replacing my older one.
    I have 66GB of iTunes Music & Videos which I saved on an external hard drive. I copied the "iTunes" folder from my Mac onto the hard drive.
    I know I can just drag the folder into iTunes on my new Mac, but I would lose all the "date added" and "play count" information. I see that in the iTunes folder I saved, there is an "Album Artwork" folder, an "iTunes Library database file", an "iTunes 4 Music Library database file", an "iPod Games Library database file", and an "iPod Games" folder.
    Does the iTunes Library database file contain all the information? Because I tried to replace that file with the current one on my new Mac, and when I opened iTunes, all my songs, playlists, and data added information was there, but all the songs had an exclamation mark beside them. So then I dragged the iTunes folder into iTunes but then I had doubles of each thing.
    So my question is, how can I import my music by keeping the Date Added, Play Count, and playlist information?

    Normally if you want a trouble free move, all your music files must be in the iTunes Music folder as designated in the preferences.
    However if you music is on an external drive and the full path to the music files will NOT change, this is no essential. iTunes cannot tolerate any change to the path to music files that are not in the iTunes Music folder. If the files are in the iTunes music folder, it can tolerate changes to the path above the level of the iTunes Music folder.
    All the data on playlists, count, ratings is in iTunes Library.itl which by default is in ...My Music\iTunes assuming you haven't moved it. This iTunes folder also contains your album artwork, so you need to save the whole folder.
    When you have iTunes installed and working and before you add any more music, you will need to replace the iTunes folder created by the new installation of iTunes with your original iTunes folder and ensure the path for the iTunes Music folder is correctly set in the preferences.
    Because it sounds as though you have a somewhat non standard arrangemnt, I can't be sure that what I have said is exactly right but I hope I have given you neough to sort it out.

  • Add New Item in WM Cycle Count - LI11N

    Can someone tell me the purpose of the new item button in transaction LI11N.  I thought it would be for adding items NOT on the invenory document while entering count results, but that does not appear to be the case.  When I select the new item button to add new items, I receive error "XXX storage bin does not belong to inventgory number."  However if I add an item that already exists on the inventory docuemnt it allows the addition.  That doesn't make sense to me because that's not an addition, its' really just a funciton of adding the counts for an existing item.  Perhaps I'm missing something in my configuration or settings for WM or my materials and that's why this does not allow additions of items NOT on the document.
    Thanks in advance for your response
    Kathleen Phillips
    Edited by: Kathleen Phillips on Jul 17, 2009 7:23 PM

    Thank you for your response Sarita,
    Just before I received your message I found some documentation that explained further the use of the "add item" button.  You  are correct, the add item button is only for entering counts for bins already listed on the inventory document, but it allows the addition of different materials for that bin - in the event that the bin is a "mixed" bin. 
    Thank you!
    Kathleen Phillips

Maybe you are looking for