• Home
  • Preloader help

  • Please how can I use preloader component in Flash 8?
    Can I use ProgressBar component for preloading?
    Thank you for explanation.
    Any tutorial for this component?


  • I have it for Flash doc

    /**
    Requires:
    - ProgressBar on Stage (instance name: my_pb)
    */
    var my_pb:mx.controls.ProgressBar;
    //Set progress bar mode
    my_pb.mode = "manual";
    my_pb.label = "%1 out of %2 loaded";
    //minimum numerical value before progress bar increments
    my_pb.minimum = 0;
    //maximum value of progress bar before it stops
    my_pb.maximum = 100;
    var increment_num:Number = my_pb.minimum;
    this.onEnterFrame = function() {
    if (increment_num increment_num++;
    //update progress of number incrementing
    my_pb.setProgress(increment_num, my_pb.maximum);
    trace(increment_num);
    } else {
    gotoAndStop(2);

    delete this.onEnterFrame;
    }
    };
    stop();

    Please how can I use preloader component in Flash 8?
    Can I use ProgressBar component for preloading?
    Thank you for explanation.
    Any tutorial for this component?







  • #If you have any other info about this subject , Please add it free.#
    Your name:
    E-mail:
    Telphone:

    Your comments:


    If you have any other info about Preloader help , Please add it free.