onloadMovie problem....HELP!!

This is a discussion on "onloadMovie problem....HELP!!" within the Flash & Multimedia Forum section. This forum, and the thread "onloadMovie problem....HELP!! are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 6th, 2007, 05:52
New Member
Join Date: Sep 2007
Location: Malaysia
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
onloadMovie problem....HELP!!

hello im a flash beginner i got a stupid Q
hope u guys can help me solve it out.

i've created a slider which when user move the slider bar, the movie clip above it will change...i got 3 movie clips. when i move the bar between number 1-25 first movie clip will appears. then the second movie clip will appear when i move the bar from 26-50 and so on..it supposely to be like what i have say but its not working.

here is my coding:
Code: Select all
this.onEnterFrame = function() {
sliderValue.text = slider.perc;
var y:String= sliderValue.text;
 
if (y>=1 && y<=25) {
var x:String = "mc1";
write(x);
}
 
else{
var x:String = "mc2";
write(x);
}
};
 
function write(x:String):Void {
switch (x) {
case "mc1" :
this.createEmptyMovieClip("mc", 2);
this.mc.loadMovie("mc2.swf");
mc._x = 73;
mc._y = 73;
break;
 
case "mc2" :
this.mc.attachMovie("mc",1);
_root.createEmptyMovieClip("mc", 1);
_root.mc.loadMovie("mc1.swf");
mc._x = 73;
mc._y = 73;
break;
 
default :
trace("default");
 
 
}
}
is there any wrong with my codes?could anyone help me to solve it..

Last edited by karinne; Sep 6th, 2007 at 14:45. Reason: Please use [ code ]...[ /code ] tags when displaying code.
Reply With Quote

Reply

Tags
load movie clip

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
First image problem and inline list problem konnor5092 Web Page Design 8 Dec 1st, 2007 09:08


All times are GMT. The time now is 01:44.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43