Flash website that clients can update

Out of context: Reply #13

  • Started
  • Last post
  • 22 Responses
  • ********
    0

    ////////////////////////////////...
    /////// this is a prototype function - basically it will resize a text box to what is needed
    /////// then it turns of the resizing part so that the rest of the creating can happen /////////
    ////////////////////////////////...
    TextField.prototype.resize = function()
    {
    this.autoSize = true;
    var h = this.textHeight + 100;
    this.autoSize = false;
    this._height = h;
    }
    ////////////////////////////////...
    ////////////////////////////////...
    /**/
    bgsound = new Sound();
    bgsound.attachSound("final_loop...
    bgsound.start(0, 999);
    bgsound.setVolume(70);

    // these are test variables for language dropdown
    languagecount = 3;
    language0="English";
    language1="Spanish";
    language2="German";
    ////////// these are permenent
    _root.where = 0;
    languagestate = 0; // this means its closed
    atsign.stop();
    water.stop();
    ////////// test links and values for the poplinks
    _root.poplinkcount = "3";
    link0 = "http://www.apple.com";
    link1 = "http://www.msn.com";
    link2 = "http://www.cbs.com";
    ////////////////// background lines ////////////////////////////////...
    /////// turn off all background lines ////////////////////////////////...
    function linesoff(){
    for(i=1; i

View thread