Flash Q
- Started
- Last post
- 10 Responses
- BrainWare
Anyone have a script for dowloading a power point from the flash environment.
Tried google...all I got was ppt to swf conversion adds.
- dbloc0
you just want to download the file from flash?
- dbloc0
you just want to download the file from flash?
- BrainWare0
yeah. the power point will be in the swf directory but not in the actual swf.
make sense?
- dbloc0
you want it to show the ppt in flash or just dload the file?
- BrainWare0
just download the file.
I've got a java script form actionscript.org, but it doesnt seem to be working for me...
on (release) {
getURL("javascript:popUp1()");
}--- inside HTML use---
function popUp1() {
newWindow = window.open("doc/yourDocument.pd...
};
//------>
- dbloc0
you don't need JS just to dload it.
on(release) {
getURL(thisfile.ppt);
}
- dbloc0
actually you might have to use:
on(release) {
getURL("thisfile.ppt", "_blank") ;
}
- version30
i suggest the latter, some browsers will try to open it in the same window
- dbloc0
yep
- BrainWare0
FOR F*CKS SAKE!
man, I've been using getUrl to download pdf's.
tried getURL to download ppt......ONLY WORKS ONLINE!
I've been struggling with this for the last three hours and it was right there under my nose!
just tried it online and it works fine!
THANKS!