getURL taregt not working ...PLEASE HELP

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default getURL taregt not working ...PLEASE HELP

    Hello,

    I am working on a flash front end for a web based app (ColdFusion is the app server) and I have a "getURL" link with a target. The problem is everytime the button is pressed it launches a new window as opposed to populating the defined window that is already open...

    If someone can help me...

    Thanks


    ramachan webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. I need help please with the getURL() it is not working.
      I was able to make this work in the earler ver. of Flash. But when the movie ends it will not goto the url that I am telling it to goto. Is there...
    2. getURL() not working as expected
      Hello, We have a requirement where homepage of the site will be specific to a country. When a first time user navigates to the site(say,...
    3. getUrl and javascript now working in a frame
      Hey, I have a flash page that uses getUrl to call a javascript function that is on the same html page. When I load this html page all on it's own,...
    4. getURL()
      Hi, I wrote a while ago a problem regarding the getURL(); function with Flash MX 2004, the problem was that i couldn't open pdf files with the...
    5. GETURL ????
      Hi everyone! Could somebody please tell me why this does not work : on (press) { getURL(http://www.site.dk); } And what this means :
  3. #2

    Default Re: getURL taregt not working ...PLEASE HELP

    use:
    getURL("yourtarget","_self");


    kglad webforumsuser@macromedia.com Guest

  4. #3

    Default Re: getURL taregt not working ...PLEASE HELP

    hi,
    example:

    on (press) {
    getURL("http://www.google.com","_top");
    }

    fandango


    jirka krivka webforumsuser@macromedia.com Guest

  5. #4

    Default Re: getURL taregt not working ...PLEASE HELP

    I regret to inform that neither of these suggestions seem to be working....

    I thank everyone for helping, but this is one of the more fustrating things about flash...I took the same code
    from Flash

    on (press) {
    getURL("/tcm/app/cfm/vertical_access_handler.cfm?vertical_code=BSA", "BSA");
    }

    slapped it in HTML via dream weaver

    <a href="/tcm/app/cfm/vertical_access_handler.cfm?vertical_code=BSA" target="bsa"><img name="tst_r2_c2" src="tst_r2_c2.gif" width="106" height="47" border="0" alt=""></a>


    and it works (i.e. when a user on my page hits the link 1, 5 100 times it opens said link in the (already open) window as opposed to what flash is doing, which is opening a nes window each time the link is pressed..

    Please HELP me someone my boos WANTS this in flash I want to throw my mac out a window



    ramachan webforumsuser@macromedia.com Guest

  6. #5

    Default Re: getURL taregt not working ...PLEASE HELP

    your code doesn't look anything like either of the two suggestions made. are you trying to target a frame - "BSA"?


    kglad webforumsuser@macromedia.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139