Results 1 to 6 of 6

Thread: Need 2 tuts/scripts urgent please

  1. #1
    Join Date
    Jun 2005
    Posts
    40
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Need 2 tuts/scripts urgent please

    Hi everyone...

    Im trying to do the following and your help would be greatly appreciated...

    1- see where it says More Numbers in the plate number area, it shifts to the next set of plates when you click it, and if you click a plate then the number would change on the red car...

    http://www.emiratesauction.ae/english/index.html

    any idea how i can do somethign like that?

    2- see the countdown thing: http://www.shannons.com.au/pages/auc...ID6ECCKEUA5A5J, I want to do the same, I saw a script on DD but the it doesnt look as good as the flash one on the site i posted, any idea how i can do something like that?

    thanks a lot in advance and your help is greatly appreciated.

  2. #2
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    Umm...
    Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
    Currently: enjoying the early holidays :)
    Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide

  3. #3
    Join Date
    Jun 2005
    Posts
    40
    Thanks
    3
    Thanked 0 Times in 0 Posts

  4. #4
    Join Date
    Jun 2005
    Posts
    40
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    i found this tutorial, but anyone has any idea how i can make it work with universal timing??

    http://www.kirupa.com/developer/mx/countdown.htm

    thanks in advance...

  5. #5
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    As for your first situation...it's pretty simple really.

    Break it up into two parts.
    1) The horizontal tween when you click "More Numbers"
    For this effect take a look into the Tween class or some other tweening engine (MCTween, Zigo, Fuse etc...).

    Using Flash 8's own Tween class you would need something like this:

    new Tween(NumbersMC, "_x", Regular.easeOut, NumbersMC._x, NumbersMC._x + NUmbersMC._width, 1, true);
    *Make sure to import the tween class


    (2) Changing the number on the car.
    Create a dynamic text field on the license plate of the car. Set the instance name to plateText.

    Then, in the onRelease function of each plate, add the following:

    Code:
    plateText.text = "###"

  6. #6
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Quote Originally Posted by mossawi View Post
    i found this tutorial, but anyone has any idea how i can make it work with universal timing??
    What do you mean by universal timing? Do you mean having the timing server side, instead of based on the viewer's system clock.

    if so, have a look at this:
    http://www.brandspankingnew.net/arch...ctionscri.html

    With a small php script you can turn this into a timer based on a server side clock.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •