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

  1. #1

    Default Banner Ad Problem

    I know how to create a banner and was able to create the code so when someone
    clicks on it, it will go to the target page.

    target="_blank" When you click on the banner, a pop up window appears and goes
    to the targetted page. I was successful in doing that. I do not want to have a
    pop up window, so I changed the code to "_self". Here is the problem: When the
    code is target="_blank" the link works. However, when I changed it to _"self"
    it did not work. I just want it to go to the next page without a pop up window.
    It won't go the the targetted page. What am I doing wrong? Will somebody please
    help?

    afuserwork Guest

  2. Similar Questions and Discussions

    1. Problem with my banner ad in flash
      Hi All I would like help with an error happen when I want to modifiy a banner ad made in flash mx 2004. He wsnt keep the same fonts and special...
    2. Ad banner
      I might not know how to explain this. But I will try. I will like to do an advertisment banner which it will run out and running on the screen when...
    3. xml and banner
      Hello every one, I am creating a banner in flash, this flash moive reads the images that it needs to load from xml file here is where the problem...
    4. Has anyone seen the "Mad Mad House" banner or the Pizza Hut banner? [video]
      Has anyone seen these two banners anyplace? I've run into both of them on Yahoo and am desperately seeking a tutorial or any resources on how these...
    5. Help with Web Banner
      Hi! I need some help getting started with a web banner. I want the banner to include 2-3 images and some text. How do I insert images into the...
  3. #2

    Default Re: Banner Ad Problem

    onClick()
    {
    getURL("amr.htm", target="_self");
    }
    goodamr Guest

  4. #3

    Default Re: Banner Ad Problem

    In Flash 9 they changed the security behavior for getURL so that you need to
    have allowScriptAccess set to always for _self to work correctly.

    Here is the technote on it:

    [url]http://kb.adobe.com/selfservice/viewContent.do?externalId=50c1cf38&sliceId=1[/url]

    flashParadigm 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