ActionScript 2.0 :: LoadMovie Not Working On Server?

Nov 2, 2007

why doesn't loadMovie("folder\file.jp",this); work? Could it be something with folder/file permissions on the server? It works in my computer but when I upload it to the server..it doesn't!I have the folder and the needed file already in the server.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Preloader Not Working But LoadMovie Is?

Sep 19, 2009

I've got a strange problem with my new flash website. I've been able to code a preloader for loading in different .swfs into my main .swf file. This works fine locally and even when I simulate the download in Flash. But when I've uploaded it to my website the preloader no longer works. Basicly the swf file does load into the current swf but without the loading bar and percentage reading.

stop();
_root.homecontent.loadshowreel._xscale = 1;
_root.homecontent.onEnterFrame = function() {

[code]....

View 4 Replies

ActionScript 2.0 :: Loadmovie Preloader Is Not Working

Nov 15, 2009

i tried to load an image into my stage. with clicking a button so i put actionscript for the button as such :on (release)[code]but the loader is not working the % which has to count to 100 then show the picture doesnt work and the picture appears with out loading..

View 5 Replies

ActionScript 1/2 :: LoadMovie Not Working At All (nothing Appears)?

Aug 26, 2009

i know this is a basic procedure but im having problems with loadMovie. Heres my code
 
import mx.transitions.Tween;
import mx.transitions.easing.*; 
this.createEmptyMovieClip("holder_mc", "holder",0);
holder_mc._x = (Stage.width)/2;
holder_mc._y = (Stage.height)/2;

[Code]...
 
Im geussing its a problem with nesting movieclips with code and the solution is to do with something im un aware of because of my lack of experience,

View 7 Replies

Can't Get Swf To LoadMovie When On Server

Jul 2, 2009

I am very new to Flash and have been going around in circles for days trying to figure this out.I can't get swf to loadMovie when on server. I understand I need to use the path relative to the html page.[code]

View 1 Replies

ActionScript 2.0 :: Flash8 Suddenly Not Working In IE - Won't LoadMovie

Nov 10, 2009

I have a photo gallery I developed using AS2 in Flash 8 Pro. You can find it at [URL]. I used a loadMovie to import different swf files into the main swf file when a button is clicked. It works great in Firefox and Safari but suddenly stopped working yesterday in IE. It worked in IE (6, 7 and 8) since last Friday when I uploaded it but stopped yesterday. I am using IE on Windows XP. I did try IE on Vista yesterday when I started having trouble with my XP IE and it seemed to work...however, this morning I can't even get my IE Vista to come up so am not sure it is still working on that version. I removed the preloaders that are in the imported swf files but it didn't help so I put them back in. I am using the following code in my html to embed the flash:

[Code]....

View 8 Replies

ActionScript 2.0 :: LoadMovie, Stop/play Not Working?

Jan 16, 2009

Anyway I am having problems with my flash file. I am calling a movie through actionscript using the loadMovie command into a container (movieclip) on stage. The code i have used is below;

Code:
var MoviePath =Path[slide_count];
loadMovie(MoviePath, loader_mc);;

The movie files are stored externally, and i have set the paths into an array as there is multple movies.

The problem I am having is pausing the actual movie and resuming it when they clicked on a particulr button on stage.

I have used this two codes when they click the pause button. But am not sure why it is not working.

Code:
this.loader_mc.stop();
this.loader_mc.play();

I have traced to see whether the button is working or not and it seems to be responding when i click on the button. Just that the movie is not pausing.

The whole flash file is set on one scene with buttons on the one layer, the actionscript on another, and the movie container (loader_mc) is on its own layer as well.

Any support will be well recieved, as I have wrapped my brain around this and cant seem to solve it. I have tried various combination as well. being,

_root.stop();
_root.loader_mc.stop();
_this.loader_mc.stop();

View 9 Replies

ActionScript 2.0 :: Loadmovie To Target Not Totally Working?

Mar 11, 2003

So I am tring to load a movie into a target. It is loading but all of the scripts are not working (some of the scripts are working). All the scripts work if I load the movie to a level instead of a target. But I need the movies to be in a target because of the motion that I want to apply to the loaded movie

View 1 Replies

ActionScript 2.0 :: Loadmovie - Random Variable Not Working

May 16, 2002

The tutorial in The Best of Kirupa isn't working for me! When I try doing this:

rn = Math.round(Math.random()*1000000);
loadVariablesNum ("flashdata.txt?reload="+rn,0);

I get a debug error: Error opening URL "file:///C|/pathtofolder/flashdata.txt?reload=263757" Where the reload variable is the random number and flashdata.txt is the file that contains the variable I need.

View 9 Replies

ActionScript 2.0 :: LoadMovie With SetTimeout Delay Function Not Working

Aug 16, 2009

I'm trying to load a .swf into a containerMC with a button action. I want it to delay the loadMovie action for 1 second to allow an out animation to finish playing. The buttons (next and back) are in a MC on the main timeline of the swf.

I have this code in 1st frame of main timeline:

_global.nextMC = function() {
_root.containerMC.loadMovie("images/folio/chevron.swf");
};

[Code].....

I feel like I'm close, but probably just am missing something here in my setTimeout syntax.

View 2 Replies

ActionScript 2.0 :: LoadMovie Not Working - Loading Doesn't Load At All?

Sep 15, 2006

I have a movieclip called masterloader in my flash project, and I have

[Code]....

when it actually loads in the movie, yet the movie I am loading doesn't load at all. It's only a one framed picture.

View 4 Replies

ActionScript 2.0 :: Load An JPG Dynamically - Method LoadMovie Isn't Working?

Mar 2, 2004

I need do load an JPG dynamically. The URL is variable pase by Javascript.So... I have do create de variable in the JS e send it fo Flash.I'm getting this variable already. Using swfLiveconnect, and in the javascript the method SetVariable(var,value); I'm changing de value of the var. I can chage textfields, but the method loadMovie isn't working, by putting de URL param as the variable I get from javascript.Here goes the code I'm using:

HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>[code].....

View 3 Replies

ActionScript 2.0 :: LoadMovie Command Not Working In Loop Statement?

Oct 28, 2002

I have the following which works fine just out side of the loop statement:

loadMovie("icons/test.jpg", "pIcon0.Icon");

But inside the loop statement no image shows up.

I need it in the loop statement because eventually the code will call the jpgs out of an array based on the loop variable. And put them in a movieclip number by the variable also.

View 1 Replies

ActionScript 2.0 :: Not Working Contact Form Inside Another Movie (loadMovie)

Jan 24, 2007

I have a working contact form (.swf) that doesnt work inside another movie. Alone it works, but when I call it in main movie with loadMovie it doesn't.

[URL]

I used files from Kirupa's tutorials, made by claudio and senocular.

View 3 Replies

Flash :: LoadMovie Doesn't Work On Server

Apr 30, 2011

I have a flash swf file which I don't want people to be able to download and decompile it . my first solution was to load this swf file in another swf file and put the container swf file in my site . but something's wrong . when I load my swf file in another swf file using : myloader.loadMovie ("myswffile.swf");it works fine in my local computer but when I load these two swf files to my server and try to use them there , it doesn't work .

View 1 Replies

ActionScript 2.0 :: LoadMovie - Got Movie On Server But Doesn't Work

Apr 2, 2004

In frame I got LoadMovie("http://www.adress.com/movie.swf", wheretoload); I got movie on server but dont work anymore to mc "wheretoload"!

View 8 Replies

ActionScript 2.0 :: UTF-8 French Characters Working Locally, But Not Working On Server?

Apr 21, 2009

I missing a file that needs to reside on the server to get this working?

View 1 Replies

ActionScript 3.0 :: Flash - Url Picking Not Working On Server But Working Locally

Mar 17, 2012

i have a "swf" file which is picking url from xml & displaying the image, when i tested it locally it works fine, which means it picks up URL from XML & displaying corresponding image. After i uploaded it on server, it doesn't show anything.

View 2 Replies

Media Server :: Dynamicstream.f4m Not Working From Index File Of New Install Of 4.03 Server?

Oct 17, 2011

I'm doing a test install before we update our old server to 4.03.I've got the server software installed and configured (4.03 server, using iis for web).All the test stuff on the sample index page works, except for the dynamic stream tab.I've eyeballed the .f4m file, and tried putting in a complete url to the samples...but no luck.i just keep getting the stock connection timed out message. 
 
Where do i need to look to start confiriming where this issue may be coming from?I've made made sure I can reach all the test videos by making flash players for them, calling them via rtmp... no problems.It's got to be something dumb with either the f4m file, or the way it's being served   (btw, i have added all the mime types to iis , including .f4m as video/mp4....which is one of two ways I've seen it added).

View 3 Replies

Media Server :: HLS And External Apache HTTP Server Not Working?

Sep 19, 2011

I installed the FMS 4.5 on a debian system already running an apache web server. I configured the httpd.conf as mentioned in d6093a7e2f8312a374a1bde-8000.html but when i call a streaming url e.g. http://<IP>/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 the request is still handled by the old apache, not by the FMS

View 9 Replies

ActionScript 2.0 :: _root - Load Swf Into Another With "loadmovie" With An Empty MC The Pages Stop Working

Nov 14, 2004

Im new in actionsript and I have a problem with _root. I have a swf. with two MC en the main stage: Mc_menu and Mc_pages. The Mc_menu has several buttons with the code "_root.pages=2" which moves the different pages that are in the Mc_pages. If I publish the fla. it works perfectly. Now, when I wanted to load this swf into another with "loadmovie" with an empty MC the pages stop working... I guess is because of the rutes, but i don�t know how to refer them correctly. What I have right now is: in the main stage an empty MC and a button with the code:

[Code]...

View 2 Replies

Media Server :: "Server Rejected An Invalid Flow" - RTMFP Stops Working?

Apr 30, 2011

Sometimes RTMFP stops working on my server, and I have to restart it for RTMFP to work again.Here is what I saw in the error log :

2011-04-29 05:43:17 26120 (i)2631502 The server rejected an invalid flow. -
2011-04-29 05:44:22 26120 (i)2641213 Connection rejected by server. Reason : [ Server.Reject ] : Adaptor: _defaultRoot_, VHost: TheFMSServer, App: Application/_definst_, (onConnect call

[code].....

View 25 Replies

ActionScript 2.0 :: Loadmovie : First Time Not Working, Second Time Does?

Apr 5, 2004

I want to load a external movie (swf) into my current movie. My syntax:

loadMovie("movies/"+itemName+".swf","_root.popup.popup_bg.movieName" );
loadVariables("content/"+itemName+".txt","_root");[code]....

First line: Loading the movie into the instance

Second line: Loading some vars into my scene

third line: make the popup appear with an alpha tween

fourth line: proving the itemName is correct.

Problem: First time running this script results in not showing my movieclip

Second time running this script everything works perfect.why my movie is not loading?

View 3 Replies

ActionScript 2.0 :: Loadmovie: First Time Not Working, Second Time Does

Apr 5, 2004

I want to load a external movie (swf) into my current movie. My syntax:

loadMovie("movies/"+itemName+".swf","_root.popup.popup_bg.movieName" );
loadVariables("content/"+itemName+".txt","_root");
_root.popup.gotoAndPlay(2);
trace(_root.popup.popup_bg.movieName._y);

First line: Loading the movie into the instance Second line: Loading some vars into my scene third line: make the popup appear with an alpha tween fourth line: proving the itemName is correct.

Problem: First time running this script results in not showing my movieclip Second time running this script everything works perfect.

View 3 Replies

Media Server :: Flash Media Server Stopped Working?

Jul 23, 2009

I have a FMS and HTTP server on one machine A and all my swf's were kept there. I had one more machine B in a network, from which I was testing the swf's on Machine A.Everything was running fine, until suddenly I could not access the swfs from Machine B.Moreover, when i checked the Admin console in machine A, there was no cent (referring Machine B) was connected to the FM Development Server.hat could have happened sosuddenly. In the swf that i tried connecting from Machine B, I debugged and found out that the swf was not able to connect to the FMS. (NetConnection.Connect.Failure)

View 3 Replies

ActionScript 3.0 :: SWF In Not Working On My Server?

Apr 22, 2011

I have create a Swf file its working fine in FL CS5 But whenever I uploaded it is show only dots(.....) instead of my Swf.I am unable to resolved it

View 2 Replies

Media Server :: FMS Using A Public Ip (not Working)?

Dec 6, 2011

I was making live streaming using FMLE and FMS but inside a local network,  now my server is using a public ip, and now the FMLE cant connect to the server, im sure i have to change something in the FMS but i dont know where, if i try to work inside my network works, but if i try to do it by my public ip launch an error eerytime i try to connect.for example: inside my network my server ip was 192.168.1.200,  so everytime my FMLE needed the url to stream was something like.. rtmp://192.168.1.200/live. 

lets pretend that my new server ip is 190.15.15.103 so im trying to connect with FMLE to rtmp://1990.15.15.103/live.. and nothing happend, i also tryed using some ports.. like 1935.80.8888.1111 and nothing happened.

View 5 Replies

ActionScript 2.0 :: MP3 Player Not Working In Server?

Jul 25, 2009

I just created a flash audio player.. It running properly in localhost, But if i host it into the server, Its not running when i play MP3s but some of the mp3s running well.

Here I have given the demo link... [URL]

View 2 Replies

ActionScript 3.0 :: XML Parsing Not Working On Server?

Dec 4, 2010

I am trying to migrate some classes to a new project and I am running into a problem. I have a class that loads up XML and is suppose to just present the raw data in a textfield. This works fine on my local machine but when I upload it I get this error:

Code:
[HTTPStatusEvent type="httpStatus" bubbles=false cancelable=false eventPhase=2 status=404]
XML: ioErrorHandler: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032"]
LoadXML class (called from the constructor of my document class):
ActionScript Code:

[Code]...

View 2 Replies

ActionScript 2.0 :: LoadVars On The Server Is Not Working?

Nov 18, 2002

I'm using the LoadVars object to read data from a textfile. Everything works fine when I play my movie locally or on another computer in the network, but when I play it on the server, it does not load any data at all

[Code]...

View 11 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved