Viewing Google Chrome not showing as Preview Option in EverWeb
Google Chrome not showing as Preview Option in EverWeb
|
User: Steve M. 12 years ago
|
|
| I reported this before when I first purchased the program and now I've done a fresh reinstall of Snow Leopard and I'm having the same problem. I thought at first it might be my 2011 imac, but now I see it's not a problem on my end. How do I get Chrome to show as a Preview option and HOW do I get the Site Publishing Settings Section to stop reverting back to the folder option when I've saved it as FTP. 2011 imac, Snow Leopard 10.6.8. | |
|
User: Paul-RAGESW 12 years ago
|
|
|
Do you have a computer that is running 10.8 or higher that you can test to see if this works properly for you?
------------------------------- Paul EverWeb Developer |
|
|
User: Steve M. 12 years ago
|
|
|
Quote: Paul-RAGESW - 07/04/2014 8:24:27 Do you have a computer that is running 10.8 or higher that you can test to see if this works properly for you? No, and I'm not updating my operating system. Ever. Are you unable to test it yourself and see if it works on 10.6.8? |
|
|
User: Steve M. 12 years ago
|
|
|
Quote: Paul-RAGESW - 07/04/2014 8:24:27 Do you have a computer that is running 10.8 or higher that you can test to see if this works properly for you? Would appreciate a response to this, as it is a concern. Also, I'm having an issue with using a javascript in EverWeb that I used in iWeb without any issues. I have two of the following image pushing javascripts which bring up random images when the page is reloaded. If I have one on the page everything loads fine as expected, if I place another one, it breaks the other and it does not display. Below are the scripts. You can create a blank page in EverWeb and create two HTML snippets and paste them in (one in each) and test for yourself. I would like to know how to get this to work correctly. Script #1: <center><img id='imageholder' src='' ></img></center> <script type='text/javascript'> images = new Array(); images.push('http://www.amazingrobie.com/graphics/frontdog-001.png'); // frontdog-001.png images.push('http://www.amazingrobie.com/graphics/frontdog-002.png'); // frontdog-002.png image_index = Math.round(Math.random() * (images.length - 1)); document.getElementById('imageholder').src = images[image_index]; </script> Script #2: <center><img id='imageholder' src='' ></img></center> <script type='text/javascript'> images = new Array(); images.push('http://www.amazingrobie.com/graphics/pollo-01.png'); // pollo-01.png images.push('http://www.amazingrobie.com/graphics/pollo-02.png'); // pollo-02.png image_index = Math.round(Math.random() * (images.length - 1)); document.getElementById('imageholder').src = images[image_index]; </script> If for whatever reason the forum does not publish the code when I hit the 'Post Reply' button, which I suspect will be the case, if you give me an email I can mail it to you. |
|
|
User: Steve M. 12 years ago
|
|
| You can view the scripts by right clicking and viewing the page source, I just tried and was able to. You can search for the script by using the keywords, 'pollo' and 'frontdog'. | |
|
User: Roddy 12 years ago
|
|
|
To show code, use this website to convert it… http://www.freebits.co.uk/convert-html-code-to-text.html ------------------------------- Roddy Website: http://everwebwidgets.com Contact: http://everwebwidgets.com/ewWidgets-home/contact.html NOTE: I am an EverWeb user and NOT affiliated with EverWeb! Any opinions expressed in this forum are my own. |
|
|
User: Steve M. 12 years ago
|
|
|
Double post.
Last edit 12 years ago |
|
|
User: Steve M. 12 years ago
|
|
|
Script #1: <center><img id='imageholder' src='' ></img></center><br /> <script type='text/javascript'><br /> images = new Array();<br /> images.push('http://www.amazingrobie.com/graphics/pollo-01.png'); // pollo-01.png<br /> images.push('http://www.amazingrobie.com/graphics/pollo-02.png'); // pollo-02.png<br /> <br /> image_index = Math.round(Math.random() * (images.length - 1));<br /> document.getElementById('imageholder').src = images[image_index];<br /> </script><br /> Script #2: <br /> <center><img id='imageholder' src='' ></img></center><br /> <script type='text/javascript'><br /> images = new Array();<br /> images.push('http://www.amazingrobie.com/graphics/frontdog-001.png'); // frontdog-001.png<br /> images.push('http://www.amazingrobie.com/graphics/frontdog-002.png'); // frontdog-002.png<br /> <br /> image_index = Math.round(Math.random() * (images.length - 1));<br /> document.getElementById('imageholder').src = images[image_index];<br /> </script> |
|
|
User: Jumbo T. 12 years ago
|
|
|
You have two scripts using the same id and variables. These interfere with each other. Use : id="imageholder" and id="imageholder1", images = new Array(); and images1 = new Array(); image_index and image1_index Why not learn some html, css and javascript. |
|
|
User: Roddy 12 years ago
|
|
|
They both work OK. You just can't have both on the same page. You need to remember that iWeb creates a new HTML doc for each snippet whereas EverWeb inserts everything into the page doc. ------------------------------- Roddy Website: http://everwebwidgets.com Contact: http://everwebwidgets.com/ewWidgets-home/contact.html NOTE: I am an EverWeb user and NOT affiliated with EverWeb! Any opinions expressed in this forum are my own. |
|
|
User: Steve M. 12 years ago
|
|
|
[quote name=Jumbo T. time=10/04/2014 10:55:57]You have two scripts using the same id and variables. These interfere with each other. Use : id="imageholder" and id="imageholder1", images = new Array(); and images1 = new Array(); image_index and image1_index Why not learn some html, css and javascript. I pick up what I can off the internet when I can. I know HTML for the most part, but javascript and CSS, all of the logic/language is hard for me to grasp. I'm more of a visual person, not really that technical. I don't really like computers, but I appreciate your help very much as what you listed worked and has solved my dilemma. So thanks for that. Now if I could just get the Google not showing up in the preview selections for EverWeb solved, I might find my way back to appreciate this application for what it is. When something is my fault, like this code issue, I'll admit it and can accept that, however, like I said I've reinstalled my operating system and Google still doesn't show up in the Preview options within EverWeb. I'm never going to be updating this computer to anything higher than 10.6.8 so I need to resolve that issue. |
|
|
User: Jumbo T. 12 years ago
|
|
|
Make a detour. Open both Safari and Chrome. Do a preview in Safari and then drag the link to Chrome. |
|
|
User: Steve M. 12 years ago
|
|
|
[quote name=Jumbo T. time=10/04/2014 12:04:25]Make a detour. Open both Safari and Chrome. Do a preview in Safari and then drag the link to Chrome. That's what I've been doing. Thanks for the code earlier. |
|
|
User: Steve 12 years ago
|
|
|
Interesting... I thought I was the only person having this problem! Since back in the Beta days, I've had the problem. I also am running 10.6.8 mostly because I'm fine with it. When I finally get a new computer I'm sure I'll be upgraded. The Chrome preview doesn't with 10.7.X either... I just ended up dealing with it... If I want to check my site, I just do it manually, paste the preview url in Chrome. There are still some other things that former iWeb users bitch about regarding Everweb, but all in all it's a very usable app.! It's funny that the few things people whine about seen to be stupid little things that we assume could be fixed easily. Steve S quote name=Steve M. time=06/04/2014 20:07:05]I reported this before when I first purchased the program and now I've done a fresh reinstall of Snow Leopard and I'm having the same problem. I thought at first it might be my 2011 imac, but now I see it's not a problem on my end. How do I get Chrome to show as a Preview option and HOW do I get the Site Publishing Settings Section to stop reverting back to the folder option when I've saved it as FTP. 2011 imac, Snow Leopard 10.6.8. ------------------------------- MacBook Pro 15in Retina 10.14.6 Nevada, U.S.A Apple since OS 7.1 LE II (pizza box) |
|
| Post Reply |
| You must login or signup to post. |
