Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
startd6060 #1
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.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... -
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. ... -
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. ... -
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... -
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... -
startd6060 #2
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
-
startd6060 #3
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
-
startd6060 #4
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
-
AVP555 #5
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> </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> </p>
</body>
</html>
AVP555 Guest
-
Deaf Web Designer #6
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
-
Murray *ACE* #7
Re: script
> I put the code by attaching it into ATTACH CODE provided by this forum
Please don't ever use this. It's broken for those of us on NNTP.> program...
--
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
-
Deaf Web Designer #8
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 UserPlease don't ever use this. It's broken for those of us on NNTP.> I put the code by attaching it into ATTACH CODE provided by this forum
> program...
--
Murray --- ICQ 71997575
Adobe Community Expert[/q]
Deaf Web Designer Guest
-
Murray *ACE* #9
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



Reply With Quote

