|
-
Anchored Images In Falsh?
I am presently in need of anchoring some images in flash.
I have uploaded images in ftp...anchor should give option to view or download.
What is the best method for this operation?
Has to be a simple answer.
-
Not so sure what you mean, but if you are trying to create a button to view an image file, put this AS on the button:
on (release) {
getURL("http://yoursite.com/image.ext", _blank);
}
And for the download:
(zip the file and upload it)
on (release) {
getURL("http://yoursite.com/image.zip", _blank);
}
~Sportzguy933
-
Sportzguy,
Appreciate the help.
Have an evolved similar related question:
get url command, along with _blank _parent _top etc.....will do same commands.
I have a thumbnail page, where when user clicks image, want new window to pop-up with large image....no forced back button...new window.... _blank right?
What when that doesn't work?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|