A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: communication between text fields

  1. #1
    Senior Member
    Join Date
    Dec 2000
    Posts
    240
    I have a percentage preloader...where I have an animated movie clip which has a text field which keeps rotating on the screen..

    How do I transfer the data of the text field which shows the percent loaded to the text field inside the movieclip

  2. #2
    deva_station
    Guest
    use dynamic text fields and give each one a unique variable name; put one of them (percentage) inside the movieclip, the other on the main timeline.

    movieclip code:
    Code:
    onClipEvent(enterframe){
    this.percentage=_root.percent; //percent and percentage are 2 different variable names.
    }
    time line code.

    Code:
    percent=_root.getbytesLoaded;
    ....
    ....
    blah blah

  3. #3
    Senior Member
    Join Date
    Dec 2000
    Posts
    240
    thanks man ....is there anyway u could do this in Flash 4.0

  4. #4
    deva_station
    Guest
    sorry no can do, i am not that fluent in flash 4 action script.

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center