Links on a graphic?

Discussion in 'Graphics & Multimedia' started by keltoid, Jun 25, 2008.

  1. #1
    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!
     
    keltoid, Jun 25, 2008 IP
  2. Sensei.Design

    Sensei.Design Prominent Member

    Messages:
    3,847
    Likes Received:
    162
    Best Answers:
    0
    Trophy Points:
    310
    Digital Goods:
    1
    #2
    no way you will need some code if you wnat a real link
     
    Sensei.Design, Jun 26, 2008 IP
  3. Kerosene

    Kerosene Alpha & Omega™ Staff

    Messages:
    11,366
    Likes Received:
    575
    Best Answers:
    4
    Trophy Points:
    385
    #3
    And they won't let you change the code?

    Tell 'em they're dreaming.
     
    Kerosene, Jun 26, 2008 IP
  4. MangoManiac

    MangoManiac Peon

    Messages:
    46
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Only way is through Flash I assume =/
     
    MangoManiac, Jun 26, 2008 IP
  5. bobzuk

    bobzuk Guest

    Messages:
    85
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #5
    It can easily be done through flash, If you're still needing this PM I'll be happily do it for a small fee.
     
    bobzuk, Jun 26, 2008 IP
  6. Kerosene

    Kerosene Alpha & Omega™ Staff

    Messages:
    11,366
    Likes Received:
    575
    Best Answers:
    4
    Trophy Points:
    385
    #6
    How do you guys think you're going to embed flash without changing the HTML?
     
    Kerosene, Jun 27, 2008 IP
  7. bobzuk

    bobzuk Guest

    Messages:
    85
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #7
    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.
     
    bobzuk, Jul 1, 2008 IP