Flash Vista - 首頁
Newest Cool Site
The Two Tales
Site info | Archive
Main Navigation
首頁
新進網站連結
優良評選網站
熱門網站
編輯推薦
搜尋

Flash Tutorials
Flash Resources
Flash News
Flash Templates
Flash Intro Templates
Website Templates
Flash Games
Flash Books
FlashVista Polls
Sitemap


Random Link
English
DONALISIO AUDIO PRODUCTIONS
Site info | Get another
FlashVista
登入
登錄註冊
訂閱電子報

新增網站連結
編修網站連結
個人喜好網站
建議新分類

Advertise with us
Support us
Credits / Thanks
Contact

Flash Templates:

More Templates ...

電子報
使用者

密碼



登錄註冊
忘記密碼?
Partner websites
Free Hit Counter
Free Seo Tools
Free Tutorials
Free Video Tutorials
Forum signatures
Best Free Scripts
Wii Fit
Wii Fit News
Cool Tech Gadgets
Other Resources
推薦
推薦本站給朋友


電子報
狀態: 尚未登入

Traditional Chinese English German French Spanish Italian Portuguese Russian Polish Finnish Dutch Swedish Thai Romanian Traditional Chinese Simplified Chinese
搜尋尚未登入
關鍵字: 搜尋:: 進階搜尋


Checking if a file exists with ActionScript


NEW Flash Tutorials in Video Format - Powered by LearnFlash.com: 45 minutes of flash tutorials now available in streaming format or download. Topics Include flash for beginners, text effects, actionscripting, audio/video, flash 8 and more.


Printer version



by Guy Watson
www.flashguru.co.uk

Sometimes it is necessary to determine if a file exists using actionscript, for example when you have a preloader cue, that loads a series of .jpgs one after another, if one of the files doesnt exist then the cue wouldnt traverse any further, you could of course use a timeout in that scenario but why not just check if the file exists before loading it, so that if necessary you can move onto the next item in the cue almost instantly. It is possible to determine whether a file exists using the success parameter of the onLoad event handler, the problem lies in the fact that the onLoad event handler for movieclips doesnt work, so to check if an .swf file exists, or an image, you will need to use this method...

Here is a little example, that checks to see if a .swf file exists, and if it does, then it loads it into a movieclip.


fileExists=new LoadVars();
fileExits._parent=this;
fileExists.onLoad=function(success)
{
//success is true if the file exists, false if it doesnt
if(success)
{
//the file exists
var nm=this._parent.createEmptyMovieClip("swfHolder",1); //so create a movieclip
nm.loadMovie("myfile.swf"); //and load our .swf file into it
}
}
fileExists.load("myfile.swf") //initiate the test


You can do the same with any file type, even if flash doesnt support the loading of that filetype. You may also be wondering if the above process means you have to load a file twice, the answer is NO. If you are running you flash movie in the browser, then when you check to see if the file exists, the onLoad even handler wont fire until the file has fully downloaded into the browsers cache, but of course the Loadvars object wont do anything with an image file, sound file, or swf file. The next time round, when it comes to actually loading the file to actually display it(swf,image,text) or play it(sound) the file will load almost instantly from the browsers cache. If your flash movie is running on the local machine, then you dont have to worry about loading times anyway, because, as always the loading of a file locally is almost instant.

(登錄日期: 02-18-2004, 點閱人次: 1, 評比積分: 3.68, 票數: 28, 評論篇數: 8)
新增至個人喜好 Suggest to a Friend

評論篇數: (8)

fileExists=new LoadVars();
fileExits._parent=this;
fileExists.onLoad=function(success)
{
//success is true if the file exists, false if it doesnt
if(success)
{
//the file exists
var nm=this._parent.createEmptyMovieClip("swfHolder",1); //so create a movieclip
nm.loadMovie("myfile.swf"); //and load our .swf file into it
}
}
fileExists.load("myfile.swf") //initiate the test

(登錄日期: 02-27-2007 使用者: 訪客)

Doesn't work...I am trying to make the movie do something if the file doesn't exist....And this doesn't work...!
(登錄日期: 12-02-2006 使用者: 訪客)

how about loading a file extension of [*.mp3] ? Does it still work?
(登錄日期: 08-22-2006 使用者: 訪客)

>> fileExists.load("myfile.swf") //initiate the test

But this is not a test, it is a real loading statement. So it is for big files not the best practice.

(登錄日期: 07-24-2006 使用者: 訪客)

but with for or while, it's return infinite bucle, i trying to know if "pi1.jpg" to "pic10.jpg" exist.
(登錄日期: 03-01-2006 使用者: 訪客)

Ah. But it loads the file from the server twice
(登錄日期: 02-24-2006 使用者: 訪客)

This is detecting the image/no image pretty cool, but I can not make it load anything into the empty MC or to an existing one on the stage. Any ideas why?
(登錄日期: 02-17-2006 使用者: 訪客)

Thanks, this worked great. I needed to write a script that determines if an flv exists on the CD. Works perfectly.
(登錄日期: 10-07-2004 使用者: 訪客)


新增評論
Please note:
We review EVERY comment before it appears on the site, so please dont waste your time by posting spam links :)
No URLs allowed, no HTML please.

If you register or login first, your review will contain your nickname


評分



很棒!
非常好