Flash Page - Post ID 212568

User 122279 Photo


Senior Advisor
14,615 posts
Online Now

No problem ;)
Ha en riktig god dag!
Inger, Norway

My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com


User 464893 Photo


Ambassador
1,611 posts

I seem to recall that you can have a meta command to redirect to another page after a few seconds. I will look it up. An On load instruction or something.
The Guy from OZ


User 122279 Photo


Senior Advisor
14,615 posts
Online Now

<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html">

This is what I have used if a site has got a new location.
Ha en riktig god dag!
Inger, Norway

My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com


User 1931310 Photo


Registered User
37 posts

Thank you for your help. Where do I find the place that I add the code? I am sorry but I need step-by-step. I looked under "Tools" checked "add HTML" but no indication if that is the right place or where to go from it having a check mark. I have not messed with my website in 5 years I don't even remember how I did it.
User 187934 Photo


Senior Advisor
20,266 posts
Online Now

Which code are you trying to add?
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 1931310 Photo


Registered User
37 posts

I need to try to add a "non-flash" image beneath my "flash" for iPad users. I do not have a clue how to go about it. And is there a "slide show" in VSD that is not flash?
User 187934 Photo


Senior Advisor
20,266 posts
Online Now

1. Dbl click the html box that contains your flash element.
2. Now copy the code below and paste it below the flash code you see in the html box on the body html tab.
<div id="nonflash" style="display:none">
<img src="http://mydomain.com/nonflash_image.jpg">
</div>

<div id="flash" style="display:block">

********---Flash code goes here---*******

</div>

<script language="javascript">
if ((navigator.userAgent.match(/iPad/i) != null) || (navigator.userAgent.match(/iPhone/i) != null) || (navigator.userAgent.match(/iPod/i) != null)) { document.getElementById("nonflash").style.display = "block"; document.getElementById("flash").style.display = "none"; }
</script>


3. Now select and cut the flash code that was already in the html box.
4. Next select the text that says ********---Flash code goes here---******* and paste the code you just cut. This will place you flash code in the proper position.
5. Use the add files tool and add the replacement image you'll be using into your site. Ctrl + alt + f
make sure the image you use is the same size as your flash element.
6. Now change the code I provided where it says <img src="http://mydomain.com/nonflash_image.jpg"> to the actual name of your domain and image name.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 1931310 Photo


Registered User
37 posts

THANK YOU!
User 187934 Photo


Senior Advisor
20,266 posts
Online Now

Your welcome. Have fun with VSD.:)
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.