Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default script

    I am looking for a script that will take users clicking on an external
    hyperlink to a page that says "you are now leaving...we are not responsible for
    content included on these pages" and then takes them to their link. Is there
    anything out there without having to create a redirect page for each hyperlink?

    startd6060 Guest

  2. Similar Questions and Discussions

    1. 6.1 script not working on 7.0 server. Script used towork!
      I've a problem with some coldfusion 6.1 scripts running on a server with coldfusion 7. It seems that it isn't accepting the hidden type for the tag...
    2. CF Grid / Java Script / Action Script
      Hi, Does anyone know of a good reference for the attributes CFgrid exposes in a flash form? eg. I would like to select the first row on load. ...
    3. ksh script - Preventing multiple runs of a particular script
      I am having trouble with a ksh script I am writing. I need to make sure that the script is not already running when it is kicked off in cron. ...
    4. Batch Script returns "Could Not Run script - File was not found"
      I need to batch process some images to convert them to jpgs. When I try to set it up I get "Could Not Run script - File was not found". This also...
    5. Execute shell script from a perl script
      Hi, How can I executed a Unix shell script from a Perl script. The shell script is a dump of a oracle table to a file. The perl script is for...
  3. #2

    Default script

    I am looking for a script that will take users clicking on an external
    hyperlink to a page that says "you are now leaving...we are not responsible for
    content included on these pages" and then takes them to their link. Is there
    anything out there without having to create a redirect page for each hyperlink?

    startd6060 Guest

  4. #3

    Default script

    I am looking for a script that will take users clicking on an external
    hyperlink to a page that says "you are now leaving...we are not responsible for
    content included on these pages" and then takes them to their link. Is there
    anything out there without having to create a redirect page for each hyperlink?

    startd6060 Guest

  5. #4

    Default script

    I am looking for a script that will take users clicking on an external
    hyperlink to a page that says "you are now leaving...we are not responsible for
    content included on these pages" and then takes them to their link. Is there
    anything out there without having to create a redirect page for each hyperlink?

    startd6060 Guest

  6. #5

    Default Re: script

    If the page the user is going to is not on your site, you can't control what
    happens when they get there. Send your users to a page you can control that
    will forward them to the page they want to go to. Try something like this (I
    am a table nut, so change the formatting with CSS if you like):

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1" />
    <META HTTP-EQUIV="refresh" CONTENT="30; URL=http://NewURLPath">
    <script language="JavaScript" src="LMC.js" type="text/javascript"></script>
    <title>Leaving XXXX</title>
    <style type="text/css">
    <!--
    body {
    margin-left: 0px;
    margin-top: 0px;
    background-color: #0066CC;
    }
    -->
    </style>
    </head>
    <body>
    <table align="center" width="800" border="1" cellpadding="0" cellspacing="0"
    bgcolor="#FFFFFF">
    <tr>
    <td>
    <table width="100%" border="0" cellspacing="8" cellpadding="0">
    <tr>
    <td align="right"
    class="textSmall"><script>DisplayDate('none');</script></td>
    </tr>
    </table>
    <table width="100%" border="0" cellpadding="6" cellspacing="0">
    <tr>
    <td height="200" align="center" style="padding-left:30px;
    padding-right:30px">
    <p>You are now leaving... we are not responsible for content found on
    non-XXX pages.</p>
    <p align="left">You will automatically be redirected in approx. 30
    seconds.</p>
    <p>&nbsp;</p>
    <p><input name="Close" type="button" id="Close" value="Go to New Site
    Now" onclick="location.href = 'http://NewURLPath';" /></p>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    <p>&nbsp;</p>
    </body>
    </html>

    AVP555 Guest

  7. #6

    Default Re: script

    Say AVP555,

    I took a look at your sample code you provided last night, I found some
    mistakes in your source... wrong xhtml closing tag being impromperly closed in
    a wrong way, and missing quotation marks... and missing link to your js script
    file... are you really sure that you do this correctly, no? Or it is just that
    you were in a big rush and offer this real quick withour realization by any
    means. It happens all the time, I guess. LOL

    But what I found and kinda fix your error here, and if you think I am being
    mistaken, let me know.
    I put the code by attaching it into ATTACH CODE provided by this forum
    program... If you forgot to include that external JS file, you could post it
    sometime tomorrow. I am interested why you didn't provide it last night? Let us
    know and thanks!

    [q]Originally posted by: AVP555
    If the page the user is going to is not on your site, you can't control what
    happens when they get there. Send your users to a page you can control that
    will forward them to the page they want to go to. Try something like this (I
    am a table nut, so change the formatting with CSS if you like):[/q]



    Deaf Web Designer Guest

  8. #7

    Default Re: script

    > I put the code by attaching it into ATTACH CODE provided by this forum
    > program...
    Please don't ever use this. It's broken for those of us on NNTP.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "Deaf Web Designer" <webforumsuser@macromedia.com> wrote in message
    news:efajlu$evi$1@forums.macromedia.com...
    > Say AVP555,
    >
    > I took a look at your sample code you provided last night, I found some
    > mistakes in your source... wrong xhtml closing tag being impromperly
    > closed in
    > a wrong way, and missing quotation marks... and missing link to your js
    > script
    > file... are you really sure that you do this correctly, no? Or it is just
    > that
    > you were in a big rush and offer this real quick withour realization by
    > any
    > means. It happens all the time, I guess. LOL
    >
    > But what I found and kinda fix your error here, and if you think I am
    > being
    > mistaken, let me know.
    > I put the code by attaching it into ATTACH CODE provided by this forum
    > program... If you forgot to include that external JS file, you could post
    > it
    > sometime tomorrow. I am interested why you didn't provide it last night?
    > Let us
    > know and thanks!
    >
    > [q]Originally posted by: AVP555
    > If the page the user is going to is not on your site, you can't control
    > what
    > happens when they get there. Send your users to a page you can control
    > that
    > will forward them to the page they want to go to. Try something like this
    > (I
    > am a table nut, so change the formatting with CSS if you like):[/q]
    >
    >
    >

    Murray *ACE* Guest

  9. #8

    Default Re: script

    Hi Murray,

    I realize that, butI was not sure why it doesn't work well last night. It
    behaved very funny after hitting the button "attach code", then nothing happens
    afterwards. What is going on here when it happened?

    Any idea why it behaved oddly last night? Any explanation?

    [q]Originally posted by: Newsgroup User
    > I put the code by attaching it into ATTACH CODE provided by this forum
    > program...
    Please don't ever use this. It's broken for those of us on NNTP.
    --
    Murray --- ICQ 71997575
    Adobe Community Expert[/q]



    Deaf Web Designer Guest

  10. #9

    Default Re: script

    > Any explanation?

    Cosmic rays and a sh*tty webforum.

    Any chance you could move away from the web interface and begin using NNTP?


    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "Deaf Web Designer" <webforumsuser@macromedia.com> wrote in message
    news:efbvla$df6$1@forums.macromedia.com...
    > Hi Murray,
    >
    > I realize that, butI was not sure why it doesn't work well last night. It
    > behaved very funny after hitting the button "attach code", then nothing
    > happens
    > afterwards. What is going on here when it happened?
    >
    > Any idea why it behaved oddly last night? Any explanation?
    >
    > [q]Originally posted by: Newsgroup User
    > > I put the code by attaching it into ATTACH CODE provided by this forum
    > > program...
    >
    > Please don't ever use this. It's broken for those of us on NNTP.
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert[/q]
    >
    >
    >

    Murray *ACE* 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