Creating a flip counter

I am looking for a tutorial that would allow me to make the counter found on this page.
I found one a while back that used Photoshop and jquery to create this same counter but I lost the book mark.
I tryed searching the net but I don't know what to search for ... any help
http://www.trapt.com/

Hi,
it is not exactly that what you look for, you could use it as first steps anyway:
http://stackoverflow.com/questions/746353/javascript-flip-counter
http://www.dynamicdrive.com/dynamicindex6/dhtmlcount.htm
Hans-G.

Similar Messages

  • Is there a way to create a flipping book with the flipping 5k adobe software?

    Am I the only one pissed with the f adobe products?
    Is there a way to create a flipping book with the flipping 5k adobe software? Is it Flash, etc?
    Thanks

    Maybe a forum search on "Windows registry" would turn up some useful things. You're not the first to ask this. You might save yourself and everyone else some time if you'd simply do that.

  • How to create a time counter without using Sleep()?

    I want to create a time counter that would count from 120 minutes and down. I thought about using Sleep() but I have found out that Sleep() is not accurate (so maybe the countdown would take 122 minutes instead of 120 minutes!). What other alternatives do
    I have?
    Note that I want to count 1 second at a time, because I want to show the countdown progress to the user in seconds.

    The next experiment still uses Sleep and waits for approximately 12 seconds, displaying the time each second. However it is probably too overcomplicated compared to time polling:
    const
    int SECONDS_TO_WAIT =
    12;
    ULARGE_INTEGER ul_end;
    FILETIME ft;
    GetSystemTimeAsFileTime( &ft );
    ul_end.LowPart = ft.dwLowDateTime;
    ul_end.HighPart = ft.dwHighDateTime;
    ul_end.QuadPart += 10LL *
    1000 *
    1000 * SECONDS_TO_WAIT;
    for( ;; )
    FILETIME ft;
    GetSystemTimeAsFileTime( &ft );
    ULARGE_INTEGER ul;
    ul.LowPart = ft.dwLowDateTime;
    ul.HighPart = ft.dwHighDateTime;
    if( ul.QuadPart >= ul_end.QuadPart )
    break;
    SYSTEMTIME st;
    FileTimeToSystemTime( &ft, &st );
    Sleep( 1000 - st.wMilliseconds );
    GetSystemTime( &st );
    if( st.wMilliseconds >
    500 )
    FILETIME ft;
    SystemTimeToFileTime( &st, &ft );
    ULARGE_INTEGER ul;
    ul.LowPart = ft.dwLowDateTime;
    ul.HighPart = ft.dwHighDateTime;
    ul.QuadPart += 10LL *
    1000 *
    1000;
    ft.dwLowDateTime = ul.LowPart;
    ft.dwHighDateTime = ul.HighPart;
    FileTimeToSystemTime( &ft, &st );
    // show the time
    SystemTimeToTzSpecificLocalTime( NULL, &st, &st );
    printf( "%02i:%02i:%02i\n", st.wHour, st.wMinute, st.wSecond

  • Can I create a flip book in iPhoto to send by email

    can I create a flip book in iPhoto to send by email

    no
    No idea what a Flip book is but any book with multiple photos in it will be too large to email
    LN

  • Unable to create system performance counter SharePoint Disk-Based Cache - SharePoint 2010 SP2 Farm

    Hi,
    I'm getting this in my Trace Logs:
    Performance Counter OS (pdh) call failed with error code PDH_CSTATUS_BAD_COUNTERNAME
    PDH failure on counter <serverName>\Sharepoint Disk-Based Cache\Blob Cache hit ration with Unknown error (0x0000bc0)
    Unable to create system performance counter <ServerName>\SharePoint Disk-Based Cache\\Blob Cache fill ratio
    Unable to create system performance counter <ServerName>\SharePoint Disk-Based Cache\\Total Blob Size
    There are bunch of them from SharePoint Disk-Based Cache counter that its trying to create but they cannot be used.
    I've logged on to the server as a farm admin, which has full farm permissions, local admin and runs OWSTIMER.EXE service, but I was not able to add the counters myself. I've read few posts here on TechNet but no one answered on how to enable/recreate these
    performance counters. I would like to resolve this if its possible.

    I could not find the reason why those SharePoint Performance Counters were not on the WFE servers so I just disabled the "Diagnostic Data Provider: Performance Counters - Web Front Ends" in the Central Admin > Monitoring > Job Definitions.

  • How to create a flip page ebook from a pdf

    I am looking to create an emailable version of a brochure which I currently create in InDesign. I am fairly comfortable with InDesign, Illustrator and Photoshop but new to other CS4 software. What is the best way of creating a flip page ebook and which software will I need? Dreamweaver, Flash ?
    Is there any ready made software out there for converting pdf's to ebooks or any sample code for creating a template?

    With your InDesign document open, go to Export under the File menu. In the dialog which appears, navigate to the location to save the new files and select SWF from the dropdown menu.  You will then be presented with a page of controls, allowing you to set the onscreen page size and other features, including "interactive page curl", which is the page-flipping effect.  If you have previously placed navigation buttons on the master pages of the InDesign document, those buttons will then also be active on the Flash version.
    After you click "OK" you will see a warning about converting the Transparency Blend Space (under the Edit menu) from CMYK to RGB -- unless you remember to do it beforehand.
    You'll see a blue progress bar as the new files are created -- a SWF file and an HTML file.  Presto!

  • How to create Measures for count on Flag colums in FACT with a CONDITON

    I have about 6 flag columns in my fact table and I would like to create measures in my report with count as aggregation on these flag columns with a group by on a condition.
    I am able to do this very easily with SQL query but am really stuck with on how to achieve this in OBIEE.
    Each of my measure should be to do an aggreagation of count on the flag column with a condition such as is flag true/false.
    Eg:
    Measure1 - Select count(INV_ID) from payments_f where Flag 1 = "TRUE" and Flag2 = "FALSE" GROUP_BY (COLUMN1)
    Measure2 - Select count(INV_ID) from payments_f where Flag 2 = "TRUE" and Flag3 = "FALSE" GROUP_BY (COLUMN1)
    similar conditions for all the flag columns.
    I tried to write the where condition in the Content tab of the Logical table but unfortunately it does on the table level - which was not very helpful to me
    I really appreciate if some one can help me on how to achieve this.
    Thanks in Advance

    You need to create a new logical column in your existing logical table. Then you need to set the physical mapping to:
    CASE WHEN FLAG1 = "TRUE" AND FLAG2 = "FALSE" THEN 1 ELSE 0 END.
    Set aggregation rule to Sum.
    Regards,
    Stijn

  • How do I create a custom counter in an etext template?

    I am working on my first EFT template for our EBS R12 upgrade. Within each record I need a counter that indicates how many payments are being made to a particular Payee. Counter starts at 0, increments for each payment and resets at a change in Payee. (This is part of the Royal Bank of Canada-Standard (STD152) for a Basic Payment Record).
    i.e.
    Payee Counter
    Payee A 00 (for payment 1 to Payee A)
    Payee A 01 (for payment 2 to Payee A)
    Payee B 00 (for payment 1 to Payee B)
    Is there anyway to do this in the template itself? Without variables, I can't think of a way to do it.
    The only other option I could think of was to create the counter within the XML by extending one of the functions in IBY_FD_EXTRACT_EXT_PUB, but I am limited to creating elements at specific levels, and none of the available levels are appropriate.
    Any ideas on how this might be accomplished?
    Thanks for reading,
    Tam.
    Edited by: Tam_11 on Jun 1, 2011 4:16 PM

    Thanks for the suggestion...I did read up on the count function, but I don't think it will give me what I want. I need a a counter that increments for each payment made to a supplier, not a total of the number of payments made to that supplier.
    Any other suggestions, please?
    Tam.

  • How do I create a flipping book in Adobe Flash?

    Hello new friends,
    I am a graphic designer with many years of experience in Creative Suite Design Standard software. However I'm just beginning to get into Flash and have a project where I need to create a simple page-flipping brochure. My client has a 3-fold borchure in both SWF and JPEG formats which she wants to turn into a Flash flipping book to post on her website. I have the CS3 Web Premium package but I want to know if I need a third-party page flip plug-in or does my version of Flash (9.0) include the page flip engine? Also where can I find a tutorial to build a flipping book in Flash as this would be very helpful in building one for the first time.
    Many thanks in advance for any help you guy and gals can give me!
    Best,
    .stephen

    Thanks for all the help and suggestions!
    If anyone's interested I did find a site that looks like it has some good information regarding creating flip books (step by step) and they also sell page flip software that seems to work really well (as seen in the demos). Here's the site:  http://www.pageflip.hu/  (PageFlip 3.5)  In the third paragraph of the home page there is a greyed out link "online documentation." Select that link and it will take you to their documentation on how to build a flip file using their software. Fairly simple approach. I will probably purchase this software.
    System requirements for PageFlip 3.5 — Any browser with Adobe Flash player 8 installed; Adobe Flash 8 to edit source files.
    .sbloodsworth

  • Creating objects when count is greater than 1

    Hi
    I'm trying to create a runbook that checks service manager for incidents that have been created in the last 10 minutes of the same category. When the result of this check brings back more than 5 objects I want a problem to be created with the incidents linked
    to the problem. 
    I know a junction will be required somewhere in order to stop the create object running multiple times but when this occurs I cannot address the scobject guids in the create relationship step. I have attached a screenshot of the runbook below.
    Thanks

    Hi,
    Flatten the "Get Object Count" Activity so it triggers only once.
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • How do I create a simple counter in Dreamweaver CC?

    Hello there Dreamweaver community,
    I am a student creating my first website and I NEED HELP!
    My site is live and it's based on the correct spelling of grey.
    www.lefthandedart.com
    Within the site I have a "vote" page that allows users to vote "grey" or "gray" (note: currently links to other pages on the site). What I want to do is have a simple hit counter under each spelling that adds one when users vote for that spelling. I'm having a fit trying to figure out how to program this though.
    Please help.
      Thank you,
    Terry B

    You'll need scripts to do this.   Most polling/voting scripts use server-side programming like PHP and a few other files to display the results.
    http://www.gentlesource.com/poll-voting/
    PS.  In the US, the correct spelling is gray. 
    Nancy O.

  • Creating variable to count or group child subrecords-webi6.5

    Post Author: Tom_S
    CA Forum: WebIntelligence Reporting
    Hello,
    I am using webi 6.5.
    I have data the has parent records and child records where the parent may have many children.  I am trying to identify/count/group the parents into those that have one particular child record and those parents that do not have that child record. However those parents may have other child records.  Below is a simple example of what I want to do.  Any suggestions?
    Data are organized as follows:
    State
    Month Reported
    Actions
    WI
    Feb
    Action1
    WI
    Feb
    Action2
    IL
    Feb
    Action1
    IL
    Feb
    Action3
    MI
    Feb
    Action4
    MI
    Feb
    Action5
    I would like to create a table as follows:
    Month Reported
    States with Action1
    State without Action1
    Total States
    Feb
    2
    1
    3
    So I am using a variable to try to identify the States with Action1 as follows:
    Action variable: = If Action=Action1;u201DAction1u201D; u201CNo Action1u201D
    However this variable displays two records for IL and WI since both States have other Actions in addition to u2018Action1u2019
    If there a variable I can create that display IL and WI only once?

    Post Author: Tom_S
    CA Forum: WebIntelligence Reporting
    Hello,
    I am using webi 6.5.
    I have data the has parent records and child records where the parent may have many children.  I am trying to identify/count/group the parents into those that have one particular child record and those parents that do not have that child record. However those parents may have other child records.  Below is a simple example of what I want to do.  Any suggestions?
    Data are organized as follows:
    State
    Month Reported
    Actions
    WI
    Feb
    Action1
    WI
    Feb
    Action2
    IL
    Feb
    Action1
    IL
    Feb
    Action3
    MI
    Feb
    Action4
    MI
    Feb
    Action5
    I would like to create a table as follows:
    Month Reported
    States with Action1
    State without Action1
    Total States
    Feb
    2
    1
    3
    So I am using a variable to try to identify the States with Action1 as follows:
    Action variable: = If Action=Action1;u201DAction1u201D; u201CNo Action1u201D
    However this variable displays two records for IL and WI since both States have other Actions in addition to u2018Action1u2019
    If there a variable I can create that display IL and WI only once?

  • How to create a time counter

    Hello expertsl,
    I have a new challenge on board.
    I have a form that is automatically popped up. Now on the form, i need to insert a timer that as soon as it pops out, the timer starts and then i have to enter some data in the form and as soon as i press the save button, the timer records the time count and then stores it in a table.
    Any suggestion are the most welcome...
    Thank you

    As Hoek said, this is not a Forms forum.
    However, the problem is not really unique to Forms and a timer itself is not needed.
    A timer is a kernel object that fires at specific intervals and each time around executes a callback routine. This allows one to update or process at specific intervals.
    You do not need a timer as you are interested in time elapsed - which means that on the creation of the form you need to get the current time. When the save button is clicked you again get the current time. The data that you are interested in is the time difference between these two.
    Remember that timers are expensive objects to create ito kernel resources. Some operating systems limit the total number of timers that can be created. In general, it is not a good idea to create a timer unless it is the best technical solution for the problem. And you do not need a timer determine a time elapse. You simply need code in the constructor of the form and code in the save events of the form. Nothing more.

  • How to create formula to count caracters

    dear
    I'am trying to count al the workorders that are still open per week
    does anyone have an idea?
    While searching I found out that crystal reports is only counting numbers?
    Gracia
    Edited by: Pimcia on Aug 6, 2009 5:18 PM

    Slighlty modify your running total.
    Open the running total you created -> Under Evaluate click the X+2 to add a formula -> insert this logic:
    not isnull({wo.opendate})
    This should then only count the wo that are open.
    I hope this helps,
    Regards,
    Zack H.

  • What is the best third party extension or software to create a flip book with zoom and clear text?

    When I export a swf from Indesign with Page curl, the text is hard to read (blurry) and there is no zoom feature or navigation bar. Is there a specific software I should download instead of exporting from Indesign.

    Well there´s plenty of solutions for that, which one is correct depends on what kind of content you wish to have. And you should also note that SWF/Flash based solutions are not compatible with mobile/tablet devices. Anyway if you
    -need a solution for passive print replica content, you will find lot´s of different services and softwares which are able to convert your PDF to Flash/SWF. You can´t usually use any interactive elements or rich media in those cases.
    -need to make your SWF with InDesign and you want to use videos, links, slideshows etc. Then you need a 3rd party finalizer which you can use to wrap your InDesign SWF to better working user interface. One solution is eDocker FLASH! Here´s a sample of InDesign SWF finalized with eDocker: http://old.edocker.com/_demo/edocker-online-demo/index.html
    More info about the product: http://www.edocker.com/edocker/edocker-flash/ or eDocker :: eDocker2 Desktop Publisher®
    I think eDocker FLASH! is in some kind of 50% discount right now.
    -need to make publicaton that works with computer and mobile/tablets. Then you may have to drop Flash and check out HTML5 solutions. Some of the more advanced flip-page services are offering also conversion to HTML5 but be careful if you need interactive elements and/or rich media, most of them are ripping all that off.  At least eDocker and 3dIssue are offering HTML5-solutions with possibility to use interactivity/rich media...
    eDocker CREATE! HTML5 editor & InDesign plugin
    http://www.edocker.com/edocker/edocker-create/
    3Dissue
    Digital Magazine Software | Create Digital Online Publications

Maybe you are looking for