okay, our co. uses asp.net and I can only put up an image. The co. wants hot spots or links on the graphic - in other words, I don't have access to HTML here to do it.. is there a way I can upload an image with a link/hot spot or whatever on it? Thanks!
It can easily be done through flash, If you're still needing this PM I'll be happily do it for a small fee.
Action script 2 It can be done easily, if the name of the URL is given - // assume the button's instance name is myButton myButton.onRelease = function() { getURL("test.html", "_blank"); }; Code (markup): Action Script 3 // assume the button's name is myButton import flash.events.MouseEvent; import flash.net.*; function openPage(event:MouseEvent):void { var request:URLRequest = new URLRequest("test.html"); navigateToURL(request, "_blank"); } myButton.addEventListener(MouseEvent.CLICK, openPage); Code (markup): Assuming the user’s default browser is Internet Explorer (or a version of Netscape/Mozilla prior to the ones based on Firefox), this works as you would expect it to: the user clicks the button, and the page “test.html†opens in the browser.