Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

justso pics with flash?

Status
Not open for further replies.

OgleBogle

Technical User
Sep 13, 2004
2
GB
Is it possible to link a 'click on' image to a flash file similar to the way justso pics work in dreamweaver?

I am a complete novice with Flash, but I just need to know if it can be done as I have been given some fla files which need to link to jpegs.

Any help greatly appreciated
 
Yes. You must add the button within the Flash file. You can not add an <a href=""> tag "around" a Flash movie in HTML.

Within flash create a button and add a getURL action to it.

Code:
on(release){
   getURL("myImage.jpg","_blank");
}

Hope it helps.

Wow JT that almost looked like you knew what you were doing!
 
Hi - As long as the jpg will appear as a pop up and not in a browser this will be just fine. I now just need to know how to create a button! I will learn that one myself!
Many thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top