See Related Forum Messages: Follow the Links Below to View Complete Thread
[F8] Movie Clip Actions Inside Main Movie Not Working
I know this HAS to have been answered somewhere here before... I've been doing Flash on and off since it's creation, but it's been a while since I used it. I have Flash8 running on this dev machine and I am adding a little accordion to an old project. I have tried calling the accordion swf from the main movie and loading it in, but this is not working for me.
So, I tried copying all of the frames form the external SWF accordion (it's small), along with it's actionscript to a MC inside the main movie and placed that MC on the timeline in the main file. The MC shows up fine, but the action associated with it is not functioning.... basically I want the text button to pop up the accordion MC and allow interaction by the user to click through the slides within it.
A little definition:
KSB_MC = the container MC on the main timeline that displays the first frame of the MC which is: KSBbutton_MC
KSBbutton_MC = the text MC visible from the main timeline that should launch the KSBanimation_MC (which is the accordion)
This is the AS I have so far that is in the MC I placed on the main timeline:
//first we stop both animations inside KSB_MC from running
KSB_MC.KSBbutton_MC.stop();
KSB_MC.KSBanimation_MC.stop();
//then we make conditional, the button action so that if the button_MC is pressed, the button goes to frame 2 and the animation_MC plays or else stop both animations
KSB_MC.KSBbutton_MC.onPress = function(){
if(KSB_MC.KSBbutton_MC._currentFrame ==1){
this.gotoAndStop(2);
KSB_MC.KSBanimation_MC.play();
}
else{
this.gotoAndStop(1);
KSB_MC.KSBanimation_MC.stop();
}
}
.......first of all, the KSBbutton_MC on hover shows a finger cursor as it should, but does not activate when pressed. Nothing happens after that. I get no errors in the AS checker....
my problem is with layering or something st00pyd. Feelin kinda n00bysh.
Help a brothah out will ya guys?
Importing Movie To Movie Not Working On Host
Hi.
Im having a problem with my flash movie.
Its a window importing other flashmovies when pressing buttons.
It works on my pc and on my webhost but not on the host I want to put it.
I contacted their support but they cant help me!!!
Does anyone know what to do?
Load Movie, But Old Movie Is Still Working Underneath
I am using script to load a index.swf from page4.swf
I am using this script in a button: -
loadMovie("index.swf",1);
And this loads index.swf ontop of the current movie.
The problem is that after index.swf loads ontop of page4.swf, the buttons from page4.swf are still active, even though they are directly underneath index.swf.
Does anybody know how to fix this?
Loading Movie Into Another Loaded Movie Not Working...
So...I'm making a sort of web page which contains about 4 different sections. I've got the main movie "Loader.swf" which is pulling in 4 different movies using the createmptyMovieClip method. I've given them their own Levels and movie clip names.
Now, I'm trying to get one standard "Pop Up" window that any of those pieces can launch. The "Pop Up" window will be on Level 10 so it will always be on top of everything and if you should click another "Pop Up" window on the menu, it SHOULD replace that "Pop Up" with the new content because it's the same level.
Now, the problem I have is that in one of the sections movie, when I test it on it's own, the "Pop Up" loads just fine. When I run the "Loader.swf" movie, nothing happens. So I'm thinking the reference is getting screwed up somewhere...or the Level is getting jacked...I'm not sure. Any ideas.
Loader.swf code:
ActionScript Code:
this.createEmptyMovieClip("empty_mc3", 4);
empty_mc3.loadMovie("CustEx_Announ.swf");
CustEx_Announ.swf code: It's got a tabbed menu, so I'm running a function on the root level that SHOULD get called when a button is pressed. So here's the root level code:
stop();
ActionScript Code:
function LoadPop() {
createEmptyMovieClip("empty_mc5", 10);
empty_mc5.loadMovie("CustEx_EmpCounc.swf");
trace("I got loaded");
}
So...in that movie CustEx_Announc.swf, in the tabbed menu...there's a button to launch the "Pop Up":
ActionScript Code:
readMore.onRelease = function() {
_root.LoadPop();
}
Any help is appreciated.
AS 2 Loading Movie Into Another Loaded Movie Not Working...
So...I'm making a sort of web page which contains about 4 different sections. I've got the main movie "Loader.swf" which is pulling in 4 different movies using the createmptyMovieClip method. I've given them their own Levels and movie clip names.
Now, I'm trying to get one standard "Pop Up" window that any of those pieces can launch. The "Pop Up" window will be on Level 10 so it will always be on top of everything and if you should click another "Pop Up" window on the menu, it SHOULD replace that "Pop Up" with the new content because it's the same level.
Now, the problem I have is that in one of the sections movie, when I test it on it's own, the "Pop Up" loads just fine. When I run the "Loader.swf" movie, nothing happens. So I'm thinking the reference is getting screwed up somewhere...or the Level is getting jacked...I'm not sure. Any ideas.
Loader.swf code:
ActionScript Code:
this.createEmptyMovieClip("empty_mc3", 4);empty_mc3.loadMovie("CustEx_Announ.swf");
CustEx_Announ.swf code: It's got a tabbed menu, so I'm running a function on the root level that SHOULD get called when a button is pressed. So here's the root level code:
stop();
ActionScript Code:
function LoadPop() { createEmptyMovieClip("empty_mc5", 10); empty_mc5.loadMovie("CustEx_EmpCounc.swf"); trace("I got loaded");}
So...in that movie CustEx_Announc.swf, in the tabbed menu...there's a button to launch the "Pop Up":
ActionScript Code:
readMore.onRelease = function() { _root.LoadPop();}
Any help is appreciated.
.asp Not Working With A Movie Inside A Movie.
I have a guestbook which calls on an .asp file that works when it is loaded by its self. However, when I try to load the movie into my main movie with this AS
on (release) {
loadMovie ("./gb/guestbook.swf", "mainmovie");
}
it does not work. "mainmovie" it the target empty movie that I am loading the movie into. The path is correct, because the movie starts to load and then hangs. Here are the AS's. These are in the movie that I am loading into the movie.
--------------------------------
Frame 1
--------------------------------
fscommand ("allowscale", "false");
ifFrameLoaded (1) {
}
loadVariablesNum ("guest_flash_read.asp", 0, "POST");
-----------------------------------------------------
Frame 5
--------------------------------
if (varTotal == null) {
gotoAndPlay (2);
} else {
gotoAndPlay ("loaded");
}
--------------------------------
Frame 10 (Also labled "loaded"
--------------------------------
i = 1;
function fillOutBook (i) {
_root.mc_book.varDate = "on: "+_root["varDate"+i];
_root.mc_book.varName = "posted by: "+_root["varName"+i];
_root.mc_book.varEmail = "mailto:"+_root["varEmail"+i];
_root.mc_book.varFeedback = "<b>"+_root["varFeedback"+i]+"</b>";
_root.mc_book.varViewing = i+" of "+_root.varTotal;
}
fillOutBook(1);
stop ();
-------------------------------------
And here is the .asp file for reading the entries from the data base. This path is also correct.
-------------------------------------
<%@LANGUAGE="VBSCRIPT"%>
<%
set rsGuestbook = Server.CreateObject("ADODB.Recordset")
rsGuestbook.ActiveConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= " & Server.Mappath("../db/guestbook.mdb")
rsGuestbook.Source = "SELECT * FROM guestbook ORDER BY GuestID DESC"
rsGuestbook.CursorType = 0
rsGuestbook.CursorLocation = 2
rsGuestbook.LockType = 3
rsGuestbook.Open
rsGuestbook_numRows = 0
%>
<%
rsGuestbook_total=0
While (NOT rsGuestbook.EOF)
Response.Write "varName"&(rsGuestbook_total + 1)&"="&Server.URLEncode(rsGuestbook("GuestName")) _
&"&varEmail"&(rsGuestbook_total + 1)&"="&Server.URLEncode(rsGuestbook("GuestEmail")) _
&"&varFeedback"&(rsGuestbook_total + 1)&"="&Server.URLEncode(rsGuestbook("GuestFeedback "))_
&"&varDate"&(rsGuestbook_total + 1)&"="&Server.URLEncode(rsGuestbook("GuestDate"))& "&"
rsGuestbook_total = rsGuestbook_total + 1
rsGuestbook.MoveNext
Wend
Response.Write "varTotal="&rsGuestbook_Total
rsGuestbook.Close
Set rsGuestbook=Nothing
%>
-------------------------------------------------
I believe that the problem is with the action scripting but I can not figure out what it is. Like I said, this works when you load the movie by itself, but when it is loaded inside of another movie, it will not run. Anybody know the answer to this?
Thanks,
Working With A Movie Clip Within A Movie
I have made a movie clip and brought another movie into it. however i need to see the imported movie clips frame 20 in order to line up items for the animation. but i cant see its frame 20.
What can i do?
thanks
Movie Within Movie Button Not Working?
Hello,
Is this script stopping my button from working?
I have this action script on a movie instance on my main timeline:
Code:
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.nextFrame();
} else {
this.prevFrame();
}
}
on (release) {gotoAndPlay("infoStart");
}
What this does (as I'm sure you'll know) is slide my movie into view when the mouse rolls over it, and off again when the mouse rolls off it.
This is great.
My problem is, I have a button in a movie within that movie and it just doesn't work!!
Would this script be stopping any action script from working?
Thanks.
Why Is The Movie Not Working
I am using a Mac with OSX and Flash MX. I have a .fla with four scenes in it. I have a first scene with a movie and some interaction stuff that links to three other scenes. I have movies in all three scenes and two of them work great and one we can not get to work at all. I have imported the film again, we tried to synk the frames and not sync them and nothing is woking. The clip is 2 min long and has all the same code as the other scenes but it just will not work. Any thoughts. It goes to the scene but will not play it.
Working With Movie
hello.
ok, i'd like to apply changes in code to movie object, not an instance of a movie object.
i'd like to change properties of several instances with single command. is that possible?
i want to address movie object
thanks
byeeeeee
Unload Movie, Not Working The Way I Want
Ok, i know i already posted my troubles, but i kinda really need to know, and the book just ain't cutt'n it.
Have a movie that loads external .swfs from the main timeline.(.swfs are targeted to a blank MC on the main timeline). Heres the trouble, I want my main movie to be my homepage. I put my "home" MC on the main timeline but when i click the "products" button, it loads the movie on top, then when i want to go back home, it doesn't do anything.
I tried unloadmovie, but I'm not really sure how to use that.
How can i have content display from my main movie, when the user tries to click back there? Please help me?
HELP - Load Movie Not Working
I've loaded a separate movie in the level above the base movie with a relative path. All .swf's are in the same directory. When I test movie it works fine in the player. When I place the .swf in my HTML and view it, it doesn't work. Need help, I'm in a bind - Thanks!
HELP - Load Movie Not Working
I've loaded a separate movie in the level above the base movie with a relative path. All .swf's are in the same directory. When I test movie it works fine in the player. When I place the .swf in my HTML and view it, it doesn't work. Need help, I'm in a bind - Thanks!
SetProperty Not Working In Movie
hi friends
I have created a movie symbol with instance name "a"(blue color in link) in that movie symbol there is one more movie symbol with instance name "c"(sky blue color in link)
movie symbol is on main time line (instance name "a")
http://www.geocities.com/romio3k/property.swf
http://www.geocities.com/romio3k/property.zip
ive given action on button (pink)
____________
on (release) {
setProperty ("_root.a.c", _width, "45");
}
_____________
after pressing the button the movie "c" get the property but it stops moving
I think it should be moving with the new property with given width ..
so what should i do to keep it moving?
Unload Movie Not Working. :(
hey all, i am using this code to load/unload movies when i click on buttons and it properly loads the movie, but it doesn't unload the previous one which is causing probs because the buttons on the "supposed to be inactive" movies are still functioning and they shouldn't be.
here's how it is now...
when they click on the about button...
on (release) {
unloadMovieNum(1);
}
on (release) {
loadMovieNum("img/about.swf", 2);
}
where...
main MC = 1 (bottom.swf)
about MC = 2 (about.swf)
portfolio MC = 3 (portfolio.swf)
contact MC = 4 (contact.swf)
any help, anyone have any ideas?
thanks a lot mates!
Scripting Not Working Within Another Movie
Well I am pretty sure I have just screwed up the source path or something but I have created a calendar with xml scripting to access info, and it works just fine. But when I try to put it into another flash project some of the actionscripting doesn't work. I really appreciate any suggestions.
Thanks,
Eric Ehle
www.idesigntech.com/calendar.zip
Load Movie Working Sometimes
Using FlashMX, on a MAC.
I have a movie that loads another movie. It works on the mac and the pc when they are in the same folder together using flash player.
OK, now for the problem...
I have the main.swf movie embedded in an html page, and when I click on my link in flash that has the load movie script in it nothing happens. I have the main.swf movie set at level 0 and floor.swf set at level 10.
What is the difference between the flash player and an html page?
Any thoughts?????
Movie Clips Not Working
These work just fine until I add them to the library and place them in separate frames. Could anyone help? This is the layout I have to use.
Desperate
CK
Load Movie Not Working In XP
I posted a variation on this yesterday, with no responses.
I've got a main swf that loads other swfs into different levels. On Windows 98 machines with IE 5.5, they play as expected. But on XP machines with IE 6, only the swf in level 1 and 0 load. The other ones don't. Does anyone have any ideas what would cause this? Or how I can fix it?
Flash MX, with the most recent Flash plug-in.
Flash Movie Not Working On Mac's
Hello,
I'm hoping one of you might be able to help me with this...
I recently made a flash movie (.swf) with Flash MX and I posted it on my website and it looks fine for me, but a friend of mine emailed me saying it's not working on Mac's or in Mozilla. Any suggestions of what I did wrong or how I could fix it?
Movie Not Working On MACs
Hello Everyone, I designed a flash movie with a scroll bar in flash 5.0 and it shows up on MACs but it doesn't scroll. It works fine on PCs.
This is the site: www.waltzaudio.com and click on 'Portfolio'
Any ideas or answers will be greatly appreciated.
Thanks!
Trying To Set _x After Loading A Movie... Not Working
I'm loading an image into my movie clip, and I set the _x and _y after its loaded so that I can center it based on the size of the image that I'm loading. The only problem is it doesn't seem to change the _x. If I click the button again, THEN it will center it, but otherwise it just starts off loaded into the top left-hand corner.
Also, if I load two differnt sized images, then the second one loaded will end up having the same _x and _y as the first one.
BASICALLY all I'm saying is that my code isn't changing the _x or _y right away, and I dunno why. It usually works for me.
Code:
on(release)
{
loadMovie("images/image.jpg", _parent.mainpl);
_parent.mainpl._x = 120 - (_parent.mainpl._width / 2);
_parent.mainpl._y = 0 - (_parent.mainpl._height / 2);
}
Random Movie Not Working
My first post here I have been around here, especially looking at the tutorials for things I'm not good at. Just recently I discovered the forum...
My problem is the following:
I have three swf's:
inside1.swf
inside2.swf
inside3.swf
There's a movie inside.swf that's calling out one file randomly 1, 2 or 3 on every reload of the HTML page. My problem is the following:
inside.swf works great on both local computer and when called in browser (i.e. http://www.mysite.com/flash/inside.swf).
But when the HTML page index.htm that has inside.swf in it loads, I see just the background color of the flash file. It doesn't look like it's calling out inside1, 2 or 3.
Need help on what might be happening.
MANY THANKS
and keep this great forum up.
Mediterrano
Not Working Load Movie
This is a bit hard to explain so I have attached the movie.
What I want it to do is when you roll over it the movie pops out from underneath which it does but for some reason it doesn't work after that.
Also I can't get it to load any of the other Mov eg Mov 5, Mov 4 into the blank mc it only loads in Mov 1 not sure whats going on there.
Its sounds a bit confusing I know I'm not a regular user of Flash.
Cheers.
Font Not Working In Movie?
I created an mp3 player in Flash MX - the font looks fine on my pc but when I view the page on other computers (same browser - IE 6), the font only appears correctly in some parts but not all. The font should be Bank Gothic - like the movie to the left. I created the movie on the left using Swishmax.
Any ideas why this would happen?
http://www.inkmusic.net/newsite2004/Movie1.html <---mp3 player is on the right hand side.
Movie Freezes, Next Not Working?
1st if this has been addressed before I appoligize, the boss doesn't like to see me not coding
my problem:
I have to create a flash presentation to be distributed on cd. I kind of know the basics, and I was able to put something together. My problem is that when i compile the movie together with all the scenes, some simple do not work. the time line navigation is consistantly the same though the movie so I am at a loss as to why it freezes on some scenes and works fine on others. If i compile each scene idividually they work as intended.
I would love some help on this.. and it's for a non-profit human services organization; so you can feel like you are making a difference
Zip file is below in MX
ZIP FILE
Problem 1st appears in scene 12
Load Movie Not Working
I have a problem and I have no idea what is causing it. I have a movie which has some buttons on the first few frames which call to gotoandplay a frame label (in the same timeline) "aboveframe." This frame loads another .swf into a blank movie clip on the stage. The code on the frame is this:
stop();
e_mc.loadMovie("above.swf");
Where e_mc is my empty clip, and "above" is my (single frame) .swf (which has a "stop" code on the first frame of it). I'm finding that after a few seconds, though, the movie repeats to the first one or two frames of the original movie, and "bugs out," by which I mean it just shuffles between those two frames. I do have pauses set on both of those (shuffling) frames, but when the movie repeats back to them, the pauses aren't even obeyed. Does anyone have an idea about what might be causing this? Thanks very much for your time.
Movie As A Button Not Working
Hi I'm new to flash and am havng a problem with my movie button
i put all the script in the right places [stop() & play()] in an action layer and have a labels layer using [_up,_over,_down]
but my buttons still does do anything when i roll my mouse over it or click it.
Is there something else u have to do after u put it on the stage?
Thxs in advance.
Working With Movie Clips
I have 3 movie clips that I would like to play concecutively. No user interaction. How do I do that? I'm pretty new to Flash.
[F8] Movie Clips Not Working
Hello all,
This is my first post on flashkit boards..and I have rummaged around here looking for some answers..but I am stuck..so here I go.
I have this movieclip here that has 4 links to it..I want these links to go to a certain web site, but they don't work. The aboutus movieclip has 4 links when you rollover it, and the text that comes down is a movie clip itself..My goal is to have 6 of these movie clips with rollover(withtext) and rollout for my website..I just can't get these urls to work with my code..I think its because you can't have a movie clip inside a movie clip..Here is my code for my main movie clip you see here.. My movie clip that doesnt work
aboutus_mc.onRollOver = function() {
aboutus_mc.gotoAndPlay(2);
}
aboutus_mc.onRollOut = function() {
aboutus_mc.gotoAndPlay(15);
}
That code up there is for the rollover and rollout animations on the aboutus movieclip...Now what do I set the text to and how do I get it work so that when I click on the text it goes to a url..?
Anybody out there that could help me? I would really appreciate it.
[F8] URL Not Working On Buttons In Movie
When I try to assign a URL to a button, I get errors and only one of the five buttons work. See http://llhdirect.com/mos/08
Here's the error I keep getting:
**Error** Scene=Scene 1, layer=17seedsclick, frame=2:Line 1: Mouse events are permitted only for button instances
on (release) {
**Error** Scene=Scene 1, layer=17seedsclick, frame=2:Line 1: Syntax error.
17seedsclick.onRelease = function() {
**Error** Scene=Scene 1, layer=elimcfclick, frame=16:Line 1: Mouse events are permitted only for button instances
on (release) {
**Error** Scene=Scene 1, layer=llhclick, frame=30:Line 1: Mouse events are permitted only for button instances
on (release) {
**Error** Scene=Scene 1, layer=rcotrclick, frame=45:Line 1: Mouse events are permitted only for button instances
on (release) {
**Error** Scene=Scene 1, layer=warrpdaclick, frame=61:Line 1: Mouse events are permitted only for button instances
on (release) {
Total ActionScript Errors: 6 Reported Errors: 6
The each of the five web addresses in the movie are overlaid with a semi-transparent button. And to each button, I've applied this actionscript ..
on (release) {
getURL("the URL", "_blank");
}
Attach Movie Not Working
ActionScript Code:
function attachProblem(Array1, subArray, xx, yy) {
trace(Array1[subArray][2]) // returns problem3
//Array1[subArray][2]) is defined as "problem"+c
// Attach Movie
problem = Array1[subArray][0];
tempName = Array1[subArray][2];
_root.attachMovie("problem", tempName, d++, {_x:xx, _y:yy});
// Text Handleler
this.tempName.createTextField("problem", 5, 0, 0, 1, 1);
var myFormat:TextFormat = new TextFormat();
this.tempName.problem.type = "dynamic";
this.tempName.problem.border = false;
this.tempName.problem.selectable = false;
this.tempName.problem.text = "enemyText";
this.tempName.problem.autoSize = true;
myFormat.italic = false;
myFormat.underline = true;
myFormat.size = 12;
myFormat.color = 0xff0000;
myFormat.bold = true;
myFormat.align = "left";
this.tempName.problem.setNewTextFormat(myFormat);
// Box Handeler
//this.tempName.maskMc._height = this.tempName.problem._height;
//this.tempName.maskMc._width = this.tempName.problem._width;
this.tempName.explosionMc._height = this.tempName.problem._height;
this.tempName.explosionMc._width = this.tempName.problem._width;
this.tempName.maskMc._alpha = 100;
// Increment
c++;
}
As you can see the above code is sopposed to attach a movie from the library, but for some reason it does not seem to work. Can anyone help me debug this?
Thanks for your time
~Gabor
Mask Not Working In Movie...
Well actually its working for me. My client says the mask isn't working correctly when he plays the movie. He said it plays fine on other people's computers in his office. Any idea why it wouldn't work on a certain computer? I was thinking maybe his flash player was an older version, but the movie is a executable (.exe) file...it also plays full screen using fscommand if that matters at all.
Just thought of one more thing, it is not a dynamic mask, all objects are on the stage already.
Movie Loaded Not Working... HELP
Kinda new to Actionscripting so i'll do my best to explain.
On my main movie I have a series of buttons and one handler mc for my external movie to load when a certain button is pressed. When I press this certain button on my main movie it load the external movie on to stage. Now this external movie is an animated menu sider.
When i press this button on the main movie it loads the external swf fine but it doesnt function at all. Its just sitting there. When i move my mouse over it, it should animate but doesnt.
Here is the code i used on the button in the main movie to load the external movie on the stage.
on (release) {gotoAndStop(18);
_root.container.loadMovie("movie2.swf");{
}
SWF Not Working In Flash Movie
Hi,
I've a little problem... I have a main Movie where I want to load a second one, a swf. There's no problem in doing that - I've created an empty movie clip, gave it an instance name, add it to a new layer in the timeline and placed the _root.Name_of_instance.loadMovie("movie.swf") expression to load it. In fact it loads.
Just one problem: if I integrate the swf in a php page, for example, it runs and works; if I place it inside the Main Movie, it doesn't...
Any ideas?
Kind regards,
Kepler
Movie Positioning Not Working
I have written a script that is suppose to attach the 100*100 movieclip "box" "p" number of times in rows of three. Each instance of "box" is named using a variable "i" which is where I believe this script goes wrong. The first instance always goes to (5,5) and all others are suppose to use the x and y of the previous instance to calculate its position. However, after the first instance, they all go to (0,0). PLEASE HELP!
ActionScript Code:
p = 7;
i = 1;
while (p>0) {
content.attachMovie("box", "box"+i, i);
if (i=1) {
setProperty("content.box1", _x, 5);
setProperty("content.box1", _y, 5);
} else {
if (lastX>300) {
setProperty("content['box'+i]", _x, 5);
setProperty("content['box'+i]", _x, lastY+110);
} else {
setProperty("content['box'+i]", _x, lastX+110);
setProperty("content['box'+i]", _y, 5);
}
}
lastX = getProperty(content['box'+i], _x);
lastY = getProperty(content['box'+i], _y);
i++;
p--;
}
Test Movie Not Working
I have put together a flash document 1 page , with submit button ,text areas , combo box etc.. Saved file as - to local folder for site,set all parameters,published file ,yet when I test movie nothing works ,cursor shows that all components are assigned an action yet get nothing.
Unload Movie Not Working
hi guys!
I wonder why the following code doesnt work using _level1.unloadMovie() nor even unloadMovie(_level1);
function checkSubMenu(checkLevel){
if (levelNo==checkLevel){
unloadSubMenu(levelNo);
}
}
function unloadSubMenu(unloadLevel){
//unloadMovie("_level1") was not working mabe a bug
// to overcome that I created a empty movie at the same level
_root.createEmptyMovieClip("empty",unloadLevel);
}
I could be doing something wrong but I cud not figure it out so I created an empty movie clip on the level where I want to remove the movie. Not the best way.
Any ideas
External Movie Not Working
Well i dont know if this has been answered before but i'm using the the flash email form from this site and when i use it(load it) within another movie it doesnt work.But it works by it self.Whats wrongs?
Not working(loaded within movie....click contact button)
www.pimp-set.com
Working(movie by it self)
www.pimp-set.com/email
thank you
Movie Clips Not Working
i have an external swf that is loaded into a blank movie clip and the external swf has a movie clip in it, when i load it without a preloader the clip works fine, but when i add the preloader the movie clips and button in the external swf no longer function. any help would be appreciated.
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._xscale = getPercent*100;
this.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}
thats the preloader code im using in frame one.
Loaded Movie Not Working
I am trying to load a swf from my main movie. That external file is a scripted magnifying lens going through a map... the magnifying lens function doesn't work when loaded as an external file, and in fact most of my actionscripted swf don't! ... They all work perfectly loaded as level, but not on target. (and it has to be on target)
Is there anything I can do?
Thanks!
Loading Movie Not Working
Hi all,
I have this file (infinite.fla) that has an infinite menu. Basically, when the user click on the button, it is suppose to load an external movie into a container in the infinite.fla file.
the container name is containermc
and here is my button that i am asking it to load to
on (release) {
loadMovie("intro.swf", "containermc");
}
nothing appears when i click on the button... please help!
thanks
Test Movie Not Working
hello
I am just doing a simple fading text, -->convert text into symbol, movie clip, change alpha.. This all works in the timeline, BUT does NOT work in "test movie" nor does it work when published. (Other actions do work)
Can anyone help me? Thank you in advance.
Movie Not Working After Loading
Hi
I got this problem, that if i load a movie by ckliking on a button it doesnt work but if it is on its owne it works just fine...
Here are examples: (button-> Tutorials)
http://www.asus13.pri.ee/fla/menu2.html
on its own: http://www.asus13.pri.ee/fla/tutsisu.html
button code
PHP Code:
on(release){ if(cont_loaded = !cont_loaded){ _root.insis.loadMovie("tutsisu.swf"); }else{ _root.insis.unloadMovie(); } }
movie code
PHP Code:
on(change){if ( this.selectedItem.label == "tut1" ){loadText = new LoadVars();loadText.load("sisu.txt");loadText.onLoad = function() {_root.scroller.text = this.sisutext;}; }else if ( this.selectedItem.label == "web" ){getURL("http://www.kirupa.com","_blank");}}
i would be wery happy if some one would tell me what i am doing wrong
Why Isnt This Movie Working?
Hi can anyone tell me why the second movie wont appear in my flash file when I rollover the box ?
any help appreciated....
Why This Load Movie Is Not Working ?
im just drivyng crazy
when i load a swf in a level i use this simple acs
loadMovieNum("swf/acercade.swf", 1);
but, if i wanna load in a target i sue this: (it load the same external swf)
loadMovie("swf/acercade.swf", "this.load1");
the problem is that the level method is working (the load is succesfull), but when i load via a target method is not working, and its not a problem that the swf is not in the right place, coss the first methos it load, but i just dont get it why this is happening. the movie target is at the stage, it has a name and all that.
i do this millions of times and i really dont know why is not working.
help.
Working With Movie Clips
Hi,
I'm trying to get a movie clip to play, which is on the stage, from a button. The movie clip has a stop(); AS in the first line, so it doesn't play when the .swf file loads. But I want the viewer to be able to play the movie clip from the button.
How do I write the code for the button?
thanks
Unload Movie Not Working
hi guys!
I wonder why the following code doesnt work using _level1.unloadMovie() nor even unloadMovie(_level1);
function checkSubMenu(checkLevel){
if (levelNo==checkLevel){
unloadSubMenu(levelNo);
}
}
function unloadSubMenu(unloadLevel){
//unloadMovie("_level1") was not working mabe a bug
// to overcome that I created a empty movie at the same level
_root.createEmptyMovieClip("empty",unloadLevel);
}
I could be doing something wrong but I cud not figure it out so I created an empty movie clip on the level where I want to remove the movie. Not the best way.
Any ideas
|