ActionScript 3.0 :: Hide Loaded XML File?
Oct 7, 2009
I'm loading data into a Flash application via XML, which is in the same directory as the swf file on the server, and would like to prevent the XML from being viewed in a browser. I was assuming I could set the XML's permissions to allow Owner and Group read and prevent Others from reading (UNIX 770), but when I do that the XML won't load.
I thought about using an .htaccess file but I don't want a password dialog to pop up when the swf requests the XML. Is there a way of doing this via permissions?
View 1 Replies
Similar Posts:
Mar 24, 2009
I am trying to use load movie to pull in an external Flash file. ALl the external file is, is an image with a dynamic text field. My XML is
<feedbackImage xloc="100" yloc="200">feedbackHolder.swf</feedbackImage>
In Flash right after the XML loads I have
imgfeedback = myFeedback[0].firstChild.nodeValue;
feedbackHolder_mc.loadMovie(imgfeedback);
feedbackHolder_mc._visible=false
When Flash runs, the loaded swf shows up inside the holder and I am able to control the functionality of it....except I can't hide it. the _visible wont work. So I tried feedbackHolder_mc.unLoadMovie, which did hide it, but when I went to load again, the text I was trying to pass into the text box didn't show up. Basically I want this loaded and then hidden until a user gets feedback, at which time the loaded swf becomes visible. Hoping I can use the visible property.
View 3 Replies
Oct 6, 2009
I've found lots of answers on making a button visable after a swf has loaded but not a flv. I am preloading an flv, well 20secs of it, then it starts playing. But I have a 'play' button on the stage and it sits there tempting people to hit it whilst the preloading bar works its magic preloading the flv. I want the button to be visable only after the flv has loaded or at least until it starts to play.[code]
View 2 Replies
Jan 8, 2010
I'm trying to hide the progressBar after the video loaded completely. To do that i use this line:
ActionScript Code:
my_FLVPlybk.bufferingBar._visible = false;
trace(my_FLVPlybk.bufferingBar); // outputs undefined
The problem is i can't reach to the reference of the bufferingBar. So i can't hide it.Is there a way to hide the bufferingBar?
View 0 Replies
Jun 22, 2006
how to hid the preloader is the external swf is already loaded...?
View 4 Replies
Apr 15, 2011
Myapp loads an external swf and adds it to MovieClip.External swf movie has elements that are placed outside the stage (they go on the stage during swf playing). But after loading that elements are visible in the main MovieClip.In other words, it looks like the whole space outside the stage is visible as well as the stage.How to hide elements outside the stage of loaded swf?
View 1 Replies
May 27, 2003
On the stage I have a mc called "content"Inside another mc I have a button that loads a swf into "content"
on(release) {
_root.content.loadMovie("file.swf", 0);
On the first frame of the main stage I have this action:
[code]....
View 1 Replies
Aug 31, 2009
I'm loading a dozen or so external .swf movies in the 1st frame of my movie in the timeline which are to be initially hidden and shown to display page content when necessary along the rest of the timeline. My problem is that when I load them in, they all automatically display on the 1st frame. Here's is the code I'm using:
Code:
var keyC:MovieClip = createEmptyMovieClip("keyC", getNextHighestDepth());
keyC = loadMovie("data/Key C.swf", keyC);
keyC._visible = false;
[Code].....
It's as if the _visible commands aren't working in the 1st frame but are in the rest of the timeline. Perhaps I need to use an onLoad method to wait until each MC can be manipulated this way?
View 9 Replies
Jul 15, 2011
is it possible to hide your .swf file so that it can not be taken.Is there a way to protect it?
View 2 Replies
Apr 18, 2010
I really enjoy flashing (I just do it for fun) but I'm very slow (read:dumb) when it comes to scripting.
Currently I want to create a site where in a region (the green textblock) your cursor disappears, gets replaced by an ecliptic mask and instead of the normal textblock, you see another textblock (red in the picture above) with hopefully hilarious changes to the original text with said mask when I'm done. When you move outside of the textblock(picture, whatever) to hit the link at the end of the page, your mousecursor reverts to the one you always have and is not hidden and replaced by the mask anymore.
I got the two textblocks done, it works fine. But for the life of me i don't know how to code that the mouse cursor is ONLY hidden in the region where the text is and not everywhere.
My script looks like this so far:
_root.maskee.setMask(_root.glass.masker);startDrag (glass, true);
Mouse.hide();
View 4 Replies
Oct 18, 2010
I am loading my SWF file onto stage. Later, I want to hide it. For movie clips, I am using the following code:
TAC_mc.visible =false;
But I can't do the same to my SWF file.
Countdown.swf.visible = false;
View 2 Replies
Nov 28, 2011
I used the code fscommand("showmenu", "false");
its woking fine with fp9 as3
but problem with fp10 as3
View 1 Replies
Dec 5, 2009
I'm currently trying to make an application and am rather new with AS3. What I'm trying to do is hide a few elements (buttons, movieclips, etc) when the flash file/swf file loads, or at least set their visible = false untill another button is clicked to turn it visible = true.
View 1 Replies
Jan 31, 2011
We're currently developing a small Flash application to display our company's capabilties. This application will be stored on a small USB thumb drive that we give to our potential clients. When the thumb drive is accessed, users will see two folders "Media" and "Other"; and an SWF file entitled "Start." There is; however, one more file that displays: the interface/skin file that we used for our FLV videos (entitled "SkinUnderPlaySeekStop.swf"). If this file is not included in the same location as the main SWF file, the interface/skin will not display on the video.
We would like only the two folders and the main SWF file to be displayed on the root of the thumb drive. Is there anyway to move the interface/skin file into another folder (for example, the "Other" folder) and call it up from that location within the original FLA file?
View 3 Replies
May 11, 2011
I have a photo gallery with a navigation button that allows for additional photo categories that I don't want to appear. Unfortunately, I can't open the .fla as it appears to have been created with a newer version of Flash. The code in the config.xml file is basically:
<navigation> <menu 1> <content>
</menu 1>
<menu 2> <content>
</menu 2>
etc.
</navigation>
Is there a tag I can add to make the navigation link disappear?
View 5 Replies
Jun 1, 2009
When I use Mouse.hide() function in the actions panel of my fla file it works, but if I use the same function in my class i got 1120: Access of undefined property cursor. error.
View 4 Replies
Sep 12, 2011
I am using AS 3 Flash CS4, WIndows XP SP3. I am unable to use the Mouse.hide(); method in many of my scripts. If I add Mouse.hide() to a preexisting script, I get the following error; line1 1061: Call to a possibly undefined method hide through a reference with static type Class. If I add Mouse.hide():void; to a preexisting script, I get the following error: line1 Label must be a simple identifier Once this has happened, if I then remove ALL lines of script from the file...but leave the Mouse.hide(); [or Mouse.hide():void;], and also remove all objects from the stage, when I run the file, I still get those same errors.
[CODE]...
View 3 Replies
May 10, 2009
I am using a magnifying glass animation for my portfolio and I want he mouse cursor to hide, which I can work out with: Mouse.hide()
But when someone clicks on a section it then loads a swf file above the original movie so I then want the mouse cursor to show but i'm not sure what the code would be for this? Also then once they press on the close button of this swf file with: on (release) unloadMovieNum(1); _level0.enableBtns();}
I want the mouse cursor to hide again becuase they are on the main movie again.
View 3 Replies
Mar 10, 2010
I have a movie that loads several variables from different text files depending on the users selected location.In each location txt file I have set a variable showPDF=false to hide a view PDF button named "pdfBtn" on the main timeline. In the text file the variable is set as follows:
&showPDF=false
on the main timeline the hide AS is as follows:
var showPDF2=showPDF;
[code].....
View 9 Replies
Feb 7, 2005
Is it possible to control one loaded SWF File eg.(MOVIE-1.swf) from another loaded SWF file eg.(MOVIE-0.swf) on a different level? eg. with a syntax like:
onRelease
_MOVIE-1.SWF.gotoAndStop (4)
or:
onRelease
gotoAndStop (MOVIE-1.swf, frame4)
View 1 Replies
Dec 6, 2004
hide movieclip A when a loaded swf B overlaps that movieclip? movieclip A = level0. loaded swf B = level1
View 3 Replies
Jun 21, 2007
I'm building a flash movie for something at work and im loading in some images using an XML file but when i use a preloader it only preloads the XML file (as in just the text inside) and not the images.
This causes the movie to start playing without having the images loaded.Does anyone have any ideas about how i could get it to preload the contents/images being called in the XML file so it doesn't run as soon as the XML file is loaded.
View 1 Replies
Jan 19, 2012
I will try to be as clear as I can. I have an existing swf file that I want to add Play,Pause, FF and Rewind via an externally loaded swf file that has the controls contained in it.I am loading an external swf file that has all of the controls on it via this code:
// Set up the Mouse to use a listener
var mouseListener = new Object();
Mouse.addListener(mouseListener);
[code].....
View 1 Replies
Mar 25, 2012
I have an existing swf file that I want to add Play,Pause, FF and Rewind via an externally loaded swf file that has the controls contained in it.
I am loading an external swf file that has all of the controls on it via this code:
// Set up the Mouse to use a listener
var mouseListener = new Object();
Mouse.addListener(mouseListener);
[Code]....
I am doing this so I can rollover the viewing window and have it appear. I cannot get any code to work to control the timeline (which is broken down into sections with individual MC's in each section.
What I am looking for is the code to apply to the buttons on the external swf file that has the controls to control the playing of the movie.
View 5 Replies
Feb 6, 2010
I have a flash file that is 1.5mb in size. As it takes about 6 minutes for someone on dialup to load this file, I have created a smaller swf file and loaded the larger one from it but I don't want the larger one to begin to play until it's fully downloaded. How do I set this up? I have set up the action script 2 as follows: loadMovieNum("top2.swf", 0);
View 7 Replies
Aug 26, 2011
I load a "cal" swf file in another swf files mdi_window. So the window is moveable inside the application. The issue is with the x y axis for the popups that open up in cal swf. The code for the function that opens popup is:
[CODE]...
The x & y axis of the popup act wired based on the location of the mdi_window in which the Cal.swf is being loaded. The x & y axis work fine if I move the mdi_window all the way on the top left corner of the application. The first image shows how the popup opens when I double-click on the 10:00 AM purple color event on my calendar.
and now when I move my window the popup moves to the side as well. I clicked on the same 10:00Am purple event again here: How can I solve this issue.
View 1 Replies
Feb 19, 2009
I've got a loadVars function, but I want to use the variables from the loaded file elsewhere in the file.[code]
View 1 Replies
Dec 13, 2010
I'm using this code to load a file...
Actionscript Code:
var swfLoader:Loader = new Loader();swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadProdComplete);swfLoader.load("MyNiceFile.swf");function loadProdComplete(e:Event):void {trace("Loaded File: " + ????); // I want to see: "Loaded File: MyNiceFile"}
How do i get the file name that has been loaded? How do i get "MyNiceFile.swf" -- or even better "MyNiceFile" .
I have tried this...e.content.name, but all i see is "instance32" which must be the temp name of the loaded file.
View 1 Replies
Aug 17, 2004
I loaded a swf file in a dreamweaver cs3 and tested it on a browser and works fine. However, after I uploaded everything on my server.. I don't see the swf anymore.. I loaded the scripts AC_RunActiveContent.js.. [URL]
View 5 Replies
Jun 3, 2009
I have a folder containing some images named 01_image_name.jpg, 02_image_name.jpg, 03_image_name.jpg, ... wich I read with a PHP script. Then I loop loading each image and waiting until all are loaded to display them
View 5 Replies