-
Autoviewer and NOF?
Have any of you embedded an Autoviewer slideshow onto an NOF page?
http://www.airtightinteractive.com/projects/autoviewer/
I can import the sample HTML page that comes with Autoviewer, but the SWF
doesn't get triggered. I haven't had a chance to think it through.
[L]
-
Re: Autoviewer and NOF?
I use JAlbum (free but they appreciate donations). Lots of skins to choose
from and very customizable. This example uses a Flash version called Banana
Album.
http://alt-web.com/gallery.shtml
I used an Iframe to bring the gallery index page into my main page.
http://alt-web.com/Tutorials/iframes.html
Also look at LightBox
http://www.huddletogether.com/projects/lightbox2/
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"Leroy Schulz" <mail@frostbytes.ca> wrote in message
news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>
> http://www.airtightinteractive.com/projects/autoviewer/
>
> I can import the sample HTML page that comes with Autoviewer, but the SWF
> doesn't get triggered. I haven't had a chance to think it through.
>
> [L]
>
>
-
Re: Autoviewer and NOF?
Hi Nancy,
I'm familiar with both JAlbum and LightBox, but I really prefer the look of
Autoviewer. I'm just looking at how to bring that into NOF so that I can
continuing using masterborders (which contain my logo, Google Analytics
code, etc.) and to help keep things simple.
Iframes aren't a bad idea. I hadn't consider that yet.
Thanks.
[L]
"Nancy O" <nancyoshea1@NOSPAMverizon.net> wrote in message
news:ffohas$p7t3@flsun90netnews01.netobjects.com.. .
>I use JAlbum (free but they appreciate donations). Lots of skins to choose
> from and very customizable. This example uses a Flash version called
> Banana
> Album.
>
> http://alt-web.com/gallery.shtml
>
> I used an Iframe to bring the gallery index page into my main page.
> http://alt-web.com/Tutorials/iframes.html
>
> Also look at LightBox
> http://www.huddletogether.com/projects/lightbox2/
>
>
> --Nancy O.
> Alt-Web Design & Publishing
> www.alt-web.com
>
>
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>
>> http://www.airtightinteractive.com/projects/autoviewer/
>>
>> I can import the sample HTML page that comes with Autoviewer, but the SWF
>> doesn't get triggered. I haven't had a chance to think it through.
>>
>> [L]
>>
>>
>
>
-
Re: Autoviewer and NOF?
Hi Leroy,
Neve used Autoviewer before but was able to add it to my live website in
about 10 minutes.
http://www.mansfieldorchestras.org/temp/temp.html
1) I used the option for the PHP Server Side Script.
http://www.airtightinteractive.com/p..._instruct.html
2) Create your site folder and upload the contents of the Autoview Zip
files to the root (I build by Site Structure), and then add a Sub-Folder
called "images" and upload your image files.
3) Also download the PHP Script and edit with Notepad per instructions to
change frame color, length of display, etc.
4) Upload to the same folder & run this script to generate the XML file
needed for the script.
5) Create your NOF page and put a Text Box where you want your Slide Show.
Double Click & then the "Ctrl T" method to ready the box for pasting code.
...... where do I get the code ?
6) Open the Index.html file with Notepad (found in the Autoview.zip
package). Block and copy the code between the <body> tags, ie:
<div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
Flash.</a> If you have Flash installed, <a
href="index.html?detectflash=false">click to view gallery</a></div>
<script type="text/javascript">
var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
"#181818");
fo.addParam("scale", "noscale");
fo.write("flashcontent");
</script>
....... and paste this in your Text Box.
7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
the Layout Properties dialog. Click on the "Between Head Tabs" tab so you
can paste code.
...... where do I get the code ?
In the same Index.html file you opened with Notepad go to the top of the
file and Block & Copy from the <Script> Tag down to the closing </Style>
Tag.
ie:
<script type="text/javascript" src="flashobject.js"></script>
<style type="text/css">
/* hide from ie on mac \*/
html {
height: 100%;
overflow: hidden;
}
#flashcontent {
height: 100%;
}
/* end hide */
body {
height: 100%;
margin: 0;
padding: 0;
background-color: #181818;
color:#ffffff;
}
</style>
Paste this code in the "Between Head Tag" dialog, close & then compile your
page.
Upload your NOF page to this same directory and you should be set to go.
Hope this helps !
the Other Chuck
"Leroy Schulz" <mail@frostbytes.ca> wrote in message
news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>
> http://www.airtightinteractive.com/projects/autoviewer/
>
> I can import the sample HTML page that comes with Autoviewer, but the SWF
> doesn't get triggered. I haven't had a chance to think it through.
>
> [L]
>
>
-
Re: Autoviewer and NOF?
Apologize for the poor spelling / grammar in my previous post...... fingers
work much too fast and brain much too slow !!
tOC
"the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
news:A921.1193272946.245@gfwebforum.com...
> Hi Leroy,
>
> Neve used Autoviewer before but was able to add it to my live website in
> about 10 minutes.
>
> http://www.mansfieldorchestras.org/temp/temp.html
>
> 1) I used the option for the PHP Server Side Script.
> http://www.airtightinteractive.com/p..._instruct.html
>
> 2) Create your site folder and upload the contents of the Autoview Zip
> files to the root (I build by Site Structure), and then add a Sub-Folder
> called "images" and upload your image files.
>
> 3) Also download the PHP Script and edit with Notepad per instructions to
> change frame color, length of display, etc.
>
> 4) Upload to the same folder & run this script to generate the XML file
> needed for the script.
>
> 5) Create your NOF page and put a Text Box where you want your Slide
> Show. Double Click & then the "Ctrl T" method to ready the box for pasting
> code.
>
> ..... where do I get the code ?
>
> 6) Open the Index.html file with Notepad (found in the Autoview.zip
> package). Block and copy the code between the <body> tags, ie:
>
> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
> Flash.</a> If you have Flash installed, <a
> href="index.html?detectflash=false">click to view gallery</a></div>
> <script type="text/javascript">
> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
> "#181818");
> fo.addParam("scale", "noscale");
> fo.write("flashcontent");
> </script>
>
> ...... and paste this in your Text Box.
>
> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
> the Layout Properties dialog. Click on the "Between Head Tabs" tab so you
> can paste code.
>
> ..... where do I get the code ?
>
> In the same Index.html file you opened with Notepad go to the top of the
> file and Block & Copy from the <Script> Tag down to the closing </Style>
> Tag.
>
> ie:
> <script type="text/javascript" src="flashobject.js"></script>
> <style type="text/css">
> /* hide from ie on mac \*/
> html {
> height: 100%;
> overflow: hidden;
> }
>
> #flashcontent {
> height: 100%;
> }
> /* end hide */
>
> body {
> height: 100%;
> margin: 0;
> padding: 0;
> background-color: #181818;
> color:#ffffff;
> }
> </style>
>
>
> Paste this code in the "Between Head Tag" dialog, close & then compile
> your page.
>
> Upload your NOF page to this same directory and you should be set to go.
>
> Hope this helps !
>
> the Other Chuck
>
>
>
>
>
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>
>> http://www.airtightinteractive.com/projects/autoviewer/
>>
>> I can import the sample HTML page that comes with Autoviewer, but the SWF
>> doesn't get triggered. I haven't had a chance to think it through.
>>
>> [L]
>>
>>
>
>
>
>
-
Re: Autoviewer and NOF?
WOW toC. I'm changing your name to Superman 'cuz you're faster than a
speeding bullet. Great tutorial!
-N
"the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
news:A921.1193272946.245@gfwebforum.com...
> Hi Leroy,
>
> Neve used Autoviewer before but was able to add it to my live website in
> about 10 minutes.
>
> http://www.mansfieldorchestras.org/temp/temp.html
>
> 1) I used the option for the PHP Server Side Script.
>
http://www.airtightinteractive.com/p..._instruct.html
>
> 2) Create your site folder and upload the contents of the Autoview Zip
> files to the root (I build by Site Structure), and then add a Sub-Folder
> called "images" and upload your image files.
>
> 3) Also download the PHP Script and edit with Notepad per instructions to
> change frame color, length of display, etc.
>
> 4) Upload to the same folder & run this script to generate the XML file
> needed for the script.
>
> 5) Create your NOF page and put a Text Box where you want your Slide
Show.
> Double Click & then the "Ctrl T" method to ready the box for pasting code.
>
> ..... where do I get the code ?
>
> 6) Open the Index.html file with Notepad (found in the Autoview.zip
> package). Block and copy the code between the <body> tags, ie:
>
> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
> Flash.</a> If you have Flash installed, <a
> href="index.html?detectflash=false">click to view gallery</a></div>
> <script type="text/javascript">
> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
> "#181818");
> fo.addParam("scale", "noscale");
> fo.write("flashcontent");
> </script>
>
> ...... and paste this in your Text Box.
>
> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
> the Layout Properties dialog. Click on the "Between Head Tabs" tab so you
> can paste code.
>
> ..... where do I get the code ?
>
> In the same Index.html file you opened with Notepad go to the top of the
> file and Block & Copy from the <Script> Tag down to the closing </Style>
> Tag.
>
> ie:
> <script type="text/javascript" src="flashobject.js"></script>
> <style type="text/css">
> /* hide from ie on mac \*/
> html {
> height: 100%;
> overflow: hidden;
> }
>
> #flashcontent {
> height: 100%;
> }
> /* end hide */
>
> body {
> height: 100%;
> margin: 0;
> padding: 0;
> background-color: #181818;
> color:#ffffff;
> }
> </style>
>
>
> Paste this code in the "Between Head Tag" dialog, close & then compile
your
> page.
>
> Upload your NOF page to this same directory and you should be set to go.
>
> Hope this helps !
>
> the Other Chuck
>
>
>
>
>
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
> > Have any of you embedded an Autoviewer slideshow onto an NOF page?
> >
> > http://www.airtightinteractive.com/projects/autoviewer/
> >
> > I can import the sample HTML page that comes with Autoviewer, but the
SWF
> > doesn't get triggered. I haven't had a chance to think it through.
> >
> > [L]
> >
> >
>
>
>
>
-
Re: Autoviewer and NOF?
Thanks Nancy but please don't tell my Wife !!!
I have simple things that have been on my "honey-do" list for months that
probably could have been completed in less time than the tutorial !!
tOC
"Nancy O" <nancyoshea1@NOSPAMverizon.net> wrote in message
news:ffop73$qtf2@flsun90netnews01.netobjects.com.. .
> WOW toC. I'm changing your name to Superman 'cuz you're faster than a
> speeding bullet. Great tutorial!
>
> -N
>
>
> "the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
> news:A921.1193272946.245@gfwebforum.com...
>> Hi Leroy,
>>
>> Neve used Autoviewer before but was able to add it to my live website in
>> about 10 minutes.
>>
>> http://www.mansfieldorchestras.org/temp/temp.html
>>
>> 1) I used the option for the PHP Server Side Script.
>>
> http://www.airtightinteractive.com/p..._instruct.html
>>
>> 2) Create your site folder and upload the contents of the Autoview Zip
>> files to the root (I build by Site Structure), and then add a Sub-Folder
>> called "images" and upload your image files.
>>
>> 3) Also download the PHP Script and edit with Notepad per instructions to
>> change frame color, length of display, etc.
>>
>> 4) Upload to the same folder & run this script to generate the XML file
>> needed for the script.
>>
>> 5) Create your NOF page and put a Text Box where you want your Slide
> Show.
>> Double Click & then the "Ctrl T" method to ready the box for pasting
>> code.
>>
>> ..... where do I get the code ?
>>
>> 6) Open the Index.html file with Notepad (found in the Autoview.zip
>> package). Block and copy the code between the <body> tags, ie:
>>
>> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
>> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
>> Flash.</a> If you have Flash installed, <a
>> href="index.html?detectflash=false">click to view gallery</a></div>
>> <script type="text/javascript">
>> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
>> "#181818");
>> fo.addParam("scale", "noscale");
>> fo.write("flashcontent");
>> </script>
>>
>> ...... and paste this in your Text Box.
>>
>> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
>> the Layout Properties dialog. Click on the "Between Head Tabs" tab so
>> you
>> can paste code.
>>
>> ..... where do I get the code ?
>>
>> In the same Index.html file you opened with Notepad go to the top of the
>> file and Block & Copy from the <Script> Tag down to the closing
>> </Style>
>> Tag.
>>
>> ie:
>> <script type="text/javascript" src="flashobject.js"></script>
>> <style type="text/css">
>> /* hide from ie on mac \*/
>> html {
>> height: 100%;
>> overflow: hidden;
>> }
>>
>> #flashcontent {
>> height: 100%;
>> }
>> /* end hide */
>>
>> body {
>> height: 100%;
>> margin: 0;
>> padding: 0;
>> background-color: #181818;
>> color:#ffffff;
>> }
>> </style>
>>
>>
>> Paste this code in the "Between Head Tag" dialog, close & then compile
> your
>> page.
>>
>> Upload your NOF page to this same directory and you should be set to go.
>>
>> Hope this helps !
>>
>> the Other Chuck
>>
>>
>>
>>
>>
>>
>> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
>> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>> > Have any of you embedded an Autoviewer slideshow onto an NOF page?
>> >
>> > http://www.airtightinteractive.com/projects/autoviewer/
>> >
>> > I can import the sample HTML page that comes with Autoviewer, but the
> SWF
>> > doesn't get triggered. I haven't had a chance to think it through.
>> >
>> > [L]
>> >
>> >
>>
>>
>>
>>
>
>
>
-
Re: Autoviewer and NOF?
Leroy,
I noticed that the page displays in Firefox but not in my copy of Internet
Explorer. May have to dig a little to understand what's going on here but
I'm sure you can get the gist of what needs to be done. I'll look a little
deeper when I get time.
the Other Chuck
"the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
news:A921.1193272946.245@gfwebforum.com...
> Hi Leroy,
>
> Neve used Autoviewer before but was able to add it to my live website in
> about 10 minutes.
>
> http://www.mansfieldorchestras.org/temp/temp.html
>
> 1) I used the option for the PHP Server Side Script.
> http://www.airtightinteractive.com/p..._instruct.html
>
> 2) Create your site folder and upload the contents of the Autoview Zip
> files to the root (I build by Site Structure), and then add a Sub-Folder
> called "images" and upload your image files.
>
> 3) Also download the PHP Script and edit with Notepad per instructions to
> change frame color, length of display, etc.
>
> 4) Upload to the same folder & run this script to generate the XML file
> needed for the script.
>
> 5) Create your NOF page and put a Text Box where you want your Slide
> Show. Double Click & then the "Ctrl T" method to ready the box for pasting
> code.
>
> ..... where do I get the code ?
>
> 6) Open the Index.html file with Notepad (found in the Autoview.zip
> package). Block and copy the code between the <body> tags, ie:
>
> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
> Flash.</a> If you have Flash installed, <a
> href="index.html?detectflash=false">click to view gallery</a></div>
> <script type="text/javascript">
> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
> "#181818");
> fo.addParam("scale", "noscale");
> fo.write("flashcontent");
> </script>
>
> ...... and paste this in your Text Box.
>
> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
> the Layout Properties dialog. Click on the "Between Head Tabs" tab so you
> can paste code.
>
> ..... where do I get the code ?
>
> In the same Index.html file you opened with Notepad go to the top of the
> file and Block & Copy from the <Script> Tag down to the closing </Style>
> Tag.
>
> ie:
> <script type="text/javascript" src="flashobject.js"></script>
> <style type="text/css">
> /* hide from ie on mac \*/
> html {
> height: 100%;
> overflow: hidden;
> }
>
> #flashcontent {
> height: 100%;
> }
> /* end hide */
>
> body {
> height: 100%;
> margin: 0;
> padding: 0;
> background-color: #181818;
> color:#ffffff;
> }
> </style>
>
>
> Paste this code in the "Between Head Tag" dialog, close & then compile
> your page.
>
> Upload your NOF page to this same directory and you should be set to go.
>
> Hope this helps !
>
> the Other Chuck
>
>
>
>
>
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>
>> http://www.airtightinteractive.com/projects/autoviewer/
>>
>> I can import the sample HTML page that comes with Autoviewer, but the SWF
>> doesn't get triggered. I haven't had a chance to think it through.
>>
>> [L]
>>
>>
>
>
>
>
-
Re: Autoviewer and NOF?
Leroy,
Rather than use a Text Box you may want to use a Table instead (no border).
You can then easily size the Table to make sure you have enough room to show
the photos at full size. This seemed to work better.
This also seemed to correct my problem with displaying in IE.
One thing I noticed with this script was that my dhtml menu's displayed
below the flash object. This could be a problem. Typically you can add a
parameter to calling a flash object to push it to the back or make it
transparent so this won't happen. ie: <param name="wmode" value="opaque"> ,
etc. This script seems to make a call to the viewer.swf through a
variable and I'm not sure how to apply the transparency mode to the flash
object to make sure it always displays to the back. This may not be an
issue depending on where it lies on your page. I don't know much about
flash to know if there's a work-around.
the Other Chuck
"the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
news:A921.1193272946.245@gfwebforum.com...
> Hi Leroy,
>
> Neve used Autoviewer before but was able to add it to my live website in
> about 10 minutes.
>
> http://www.mansfieldorchestras.org/temp/temp.html
>
> 1) I used the option for the PHP Server Side Script.
> http://www.airtightinteractive.com/p..._instruct.html
>
> 2) Create your site folder and upload the contents of the Autoview Zip
> files to the root (I build by Site Structure), and then add a Sub-Folder
> called "images" and upload your image files.
>
> 3) Also download the PHP Script and edit with Notepad per instructions to
> change frame color, length of display, etc.
>
> 4) Upload to the same folder & run this script to generate the XML file
> needed for the script.
>
> 5) Create your NOF page and put a Text Box where you want your Slide
> Show. Double Click & then the "Ctrl T" method to ready the box for pasting
> code.
>
> ..... where do I get the code ?
>
> 6) Open the Index.html file with Notepad (found in the Autoview.zip
> package). Block and copy the code between the <body> tags, ie:
>
> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
> Flash.</a> If you have Flash installed, <a
> href="index.html?detectflash=false">click to view gallery</a></div>
> <script type="text/javascript">
> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
> "#181818");
> fo.addParam("scale", "noscale");
> fo.write("flashcontent");
> </script>
>
> ...... and paste this in your Text Box.
>
> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
> the Layout Properties dialog. Click on the "Between Head Tabs" tab so you
> can paste code.
>
> ..... where do I get the code ?
>
> In the same Index.html file you opened with Notepad go to the top of the
> file and Block & Copy from the <Script> Tag down to the closing </Style>
> Tag.
>
> ie:
> <script type="text/javascript" src="flashobject.js"></script>
> <style type="text/css">
> /* hide from ie on mac \*/
> html {
> height: 100%;
> overflow: hidden;
> }
>
> #flashcontent {
> height: 100%;
> }
> /* end hide */
>
> body {
> height: 100%;
> margin: 0;
> padding: 0;
> background-color: #181818;
> color:#ffffff;
> }
> </style>
>
>
> Paste this code in the "Between Head Tag" dialog, close & then compile
> your page.
>
> Upload your NOF page to this same directory and you should be set to go.
>
> Hope this helps !
>
> the Other Chuck
>
>
>
>
>
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>
>> http://www.airtightinteractive.com/projects/autoviewer/
>>
>> I can import the sample HTML page that comes with Autoviewer, but the SWF
>> doesn't get triggered. I haven't had a chance to think it through.
>>
>> [L]
>>
>>
>
>
>
>
-
Re: Autoviewer and NOF?
Hi Chuck,
I am always looking for a cool pic viewer and I liked this one (ty Leroy) So
I did a quick install, and it seems that my Mozilla Firefox 2.0.0.8 will not
display the vertical scroll bar. I did a look at yours and the same...I can
press the scroll button down and get it to "scroll" but not initially. Does
anyone else experience this?
-
I also tried just the sample installation and still the same. Is anyone
else having this issue with FF?
-
Thanks,
Bert
"the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
news:A921.1193272946.245@gfwebforum.com...
> Hi Leroy,
>
> Neve used Autoviewer before but was able to add it to my live website in
> about 10 minutes.
>
> http://www.mansfieldorchestras.org/temp/temp.html
>
> 1) I used the option for the PHP Server Side Script.
> http://www.airtightinteractive.com/p..._instruct.html
>
> 2) Create your site folder and upload the contents of the Autoview Zip
> files to the root (I build by Site Structure), and then add a Sub-Folder
> called "images" and upload your image files.
>
> 3) Also download the PHP Script and edit with Notepad per instructions to
> change frame color, length of display, etc.
>
> 4) Upload to the same folder & run this script to generate the XML file
> needed for the script.
>
> 5) Create your NOF page and put a Text Box where you want your Slide
> Show. Double Click & then the "Ctrl T" method to ready the box for pasting
> code.
>
> ..... where do I get the code ?
>
> 6) Open the Index.html file with Notepad (found in the Autoview.zip
> package). Block and copy the code between the <body> tags, ie:
>
> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
> Flash.</a> If you have Flash installed, <a
> href="index.html?detectflash=false">click to view gallery</a></div>
> <script type="text/javascript">
> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
> "#181818");
> fo.addParam("scale", "noscale");
> fo.write("flashcontent");
> </script>
>
> ...... and paste this in your Text Box.
>
> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
> the Layout Properties dialog. Click on the "Between Head Tabs" tab so you
> can paste code.
>
> ..... where do I get the code ?
>
> In the same Index.html file you opened with Notepad go to the top of the
> file and Block & Copy from the <Script> Tag down to the closing </Style>
> Tag.
>
> ie:
> <script type="text/javascript" src="flashobject.js"></script>
> <style type="text/css">
> /* hide from ie on mac \*/
> html {
> height: 100%;
> overflow: hidden;
> }
>
> #flashcontent {
> height: 100%;
> }
> /* end hide */
>
> body {
> height: 100%;
> margin: 0;
> padding: 0;
> background-color: #181818;
> color:#ffffff;
> }
> </style>
>
>
> Paste this code in the "Between Head Tag" dialog, close & then compile
> your page.
>
> Upload your NOF page to this same directory and you should be set to go.
>
> Hope this helps !
>
> the Other Chuck
>
>
>
>
>
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>
>> http://www.airtightinteractive.com/projects/autoviewer/
>>
>> I can import the sample HTML page that comes with Autoviewer, but the SWF
>> doesn't get triggered. I haven't had a chance to think it through.
>>
>> [L]
>>
>>
>
>
>
>
-
Re: Autoviewer and NOF?
Thanks Chuck! I'm not sure which of your steps I missed when I tried this
on my own, but you got farther than I did.
I have to get through some other client work first, but I'll be giving your
steps a go today.
By the way, in Opera 9.23, your drop-down menus get cut off at the border
with AutoViewer. See attached.
[L]
"the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
news:A921.1193272946.245@gfwebforum.com...
> Hi Leroy,
>
> Neve used Autoviewer before but was able to add it to my live website in
> about 10 minutes.
>
> http://www.mansfieldorchestras.org/temp/temp.html
>
> 1) I used the option for the PHP Server Side Script.
> http://www.airtightinteractive.com/p..._instruct.html
>
> 2) Create your site folder and upload the contents of the Autoview Zip
> files to the root (I build by Site Structure), and then add a Sub-Folder
> called "images" and upload your image files.
>
> 3) Also download the PHP Script and edit with Notepad per instructions to
> change frame color, length of display, etc.
>
> 4) Upload to the same folder & run this script to generate the XML file
> needed for the script.
>
> 5) Create your NOF page and put a Text Box where you want your Slide
> Show.
> Double Click & then the "Ctrl T" method to ready the box for pasting code.
>
> ..... where do I get the code ?
>
> 6) Open the Index.html file with Notepad (found in the Autoview.zip
> package). Block and copy the code between the <body> tags, ie:
>
> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
> Flash.</a> If you have Flash installed, <a
> href="index.html?detectflash=false">click to view gallery</a></div>
> <script type="text/javascript">
> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
> "#181818");
> fo.addParam("scale", "noscale");
> fo.write("flashcontent");
> </script>
>
> ...... and paste this in your Text Box.
>
> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
> the Layout Properties dialog. Click on the "Between Head Tabs" tab so you
> can paste code.
>
> ..... where do I get the code ?
>
> In the same Index.html file you opened with Notepad go to the top of the
> file and Block & Copy from the <Script> Tag down to the closing </Style>
> Tag.
>
> ie:
> <script type="text/javascript" src="flashobject.js"></script>
> <style type="text/css">
> /* hide from ie on mac \*/
> html {
> height: 100%;
> overflow: hidden;
> }
>
> #flashcontent {
> height: 100%;
> }
> /* end hide */
>
> body {
> height: 100%;
> margin: 0;
> padding: 0;
> background-color: #181818;
> color:#ffffff;
> }
> </style>
>
>
> Paste this code in the "Between Head Tag" dialog, close & then compile
> your
> page.
>
> Upload your NOF page to this same directory and you should be set to go.
>
> Hope this helps !
>
> the Other Chuck
>
>
>
>
>
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>
>> http://www.airtightinteractive.com/projects/autoviewer/
>>
>> I can import the sample HTML page that comes with Autoviewer, but the SWF
>> doesn't get triggered. I haven't had a chance to think it through.
>>
>> [L]
>>
>>
>
>
>
>
-
Re: Autoviewer and NOF?
> Apologize for the poor spelling / grammar in my previous post......
> fingers work much too fast and brain much too slow !!
No worries I know that feeling. <g>
[L]
-
Re: Autoviewer and NOF?
Hi Bert,
If you like AutoViewer, see also PostcardViewer:
http://www.airtightinteractive.com/p...ostcardviewer/.
Here's where I'm using it (prior to implementing it in NOF):
http://www.leroyschulz.com/postcards/floresdececile/
http://www.leroyschulz.com/postcards/capeshots/
[L]
"TheBox" <nospam@this.com> wrote in message
news:ffq95d$2k46@flsun90netnews01.netobjects.com.. .
> Hi Chuck,
>
> I am always looking for a cool pic viewer and I liked this one (ty Leroy)
> So I did a quick install, and it seems that my Mozilla Firefox 2.0.0.8
> will not display the vertical scroll bar. I did a look at yours and the
> same...I can press the scroll button down and get it to "scroll" but not
> initially. Does anyone else experience this?
> -
> I also tried just the sample installation and still the same. Is anyone
> else having this issue with FF?
> -
> Thanks,
> Bert
>
> "the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
> news:A921.1193272946.245@gfwebforum.com...
>> Hi Leroy,
>>
>> Neve used Autoviewer before but was able to add it to my live website in
>> about 10 minutes.
>>
>> http://www.mansfieldorchestras.org/temp/temp.html
>>
>> 1) I used the option for the PHP Server Side Script.
>> http://www.airtightinteractive.com/p..._instruct.html
>>
>> 2) Create your site folder and upload the contents of the Autoview Zip
>> files to the root (I build by Site Structure), and then add a Sub-Folder
>> called "images" and upload your image files.
>>
>> 3) Also download the PHP Script and edit with Notepad per instructions to
>> change frame color, length of display, etc.
>>
>> 4) Upload to the same folder & run this script to generate the XML file
>> needed for the script.
>>
>> 5) Create your NOF page and put a Text Box where you want your Slide
>> Show. Double Click & then the "Ctrl T" method to ready the box for
>> pasting code.
>>
>> ..... where do I get the code ?
>>
>> 6) Open the Index.html file with Notepad (found in the Autoview.zip
>> package). Block and copy the code between the <body> tags, ie:
>>
>> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
>> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
>> Flash.</a> If you have Flash installed, <a
>> href="index.html?detectflash=false">click to view gallery</a></div>
>> <script type="text/javascript">
>> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
>> "#181818");
>> fo.addParam("scale", "noscale");
>> fo.write("flashcontent");
>> </script>
>>
>> ...... and paste this in your Text Box.
>>
>> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
>> the Layout Properties dialog. Click on the "Between Head Tabs" tab so
>> you can paste code.
>>
>> ..... where do I get the code ?
>>
>> In the same Index.html file you opened with Notepad go to the top of the
>> file and Block & Copy from the <Script> Tag down to the closing
>> </Style> Tag.
>>
>> ie:
>> <script type="text/javascript" src="flashobject.js"></script>
>> <style type="text/css">
>> /* hide from ie on mac \*/
>> html {
>> height: 100%;
>> overflow: hidden;
>> }
>>
>> #flashcontent {
>> height: 100%;
>> }
>> /* end hide */
>>
>> body {
>> height: 100%;
>> margin: 0;
>> padding: 0;
>> background-color: #181818;
>> color:#ffffff;
>> }
>> </style>
>>
>>
>> Paste this code in the "Between Head Tag" dialog, close & then compile
>> your page.
>>
>> Upload your NOF page to this same directory and you should be set to go.
>>
>> Hope this helps !
>>
>> the Other Chuck
>>
>>
>>
>>
>>
>>
>> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
>> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>>
>>> http://www.airtightinteractive.com/projects/autoviewer/
>>>
>>> I can import the sample HTML page that comes with Autoviewer, but the
>>> SWF doesn't get triggered. I haven't had a chance to think it through.
>>>
>>> [L]
>>>
>>>
>>
>>
>>
>>
>
>
-
Re: Autoviewer and NOF?
> By the way, in Opera 9.23, your drop-down menus get cut off at the border
> with AutoViewer. See attached.
Ah, I see that you're already noticed that with FF.
[L]
-
Re: Autoviewer and NOF?
<This script seems to make a call to the viewer.swf through a variable and
I'm not sure how to apply the transparency mode>
Try this:
<script type="text/javascript">
var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
"#FFFFFF");
fo.addParam("scale", "noscale");fo:addParam("wmode", "transparent");
fo.write("flashcontent");
</script>For details: http://blog.deconcept.com/swfobject/
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
news:A921.1193276001.249@gfwebforum.com...
> Leroy,
>
> Rather than use a Text Box you may want to use a Table instead (no
border).
> You can then easily size the Table to make sure you have enough room to
show
> the photos at full size. This seemed to work better.
>
> This also seemed to correct my problem with displaying in IE.
>
> One thing I noticed with this script was that my dhtml menu's displayed
> below the flash object. This could be a problem. Typically you can add
a
> parameter to calling a flash object to push it to the back or make it
> transparent so this won't happen. ie: <param name="wmode" value="opaque">
,
> etc. This script seems to make a call to the viewer.swf through a
> variable and I'm not sure how to apply the transparency mode to the flash
> object to make sure it always displays to the back. This may not be an
> issue depending on where it lies on your page. I don't know much about
> flash to know if there's a work-around.
>
> the Other Chuck
>
>
>
>
> "the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
> news:A921.1193272946.245@gfwebforum.com...
> > Hi Leroy,
> >
> > Neve used Autoviewer before but was able to add it to my live website in
> > about 10 minutes.
> >
> > http://www.mansfieldorchestras.org/temp/temp.html
> >
> > 1) I used the option for the PHP Server Side Script.
> >
http://www.airtightinteractive.com/p..._instruct.html
> >
> > 2) Create your site folder and upload the contents of the Autoview Zip
> > files to the root (I build by Site Structure), and then add a Sub-Folder
> > called "images" and upload your image files.
> >
> > 3) Also download the PHP Script and edit with Notepad per instructions
to
> > change frame color, length of display, etc.
> >
> > 4) Upload to the same folder & run this script to generate the XML file
> > needed for the script.
> >
> > 5) Create your NOF page and put a Text Box where you want your Slide
> > Show. Double Click & then the "Ctrl T" method to ready the box for
pasting
> > code.
> >
> > ..... where do I get the code ?
> >
> > 6) Open the Index.html file with Notepad (found in the Autoview.zip
> > package). Block and copy the code between the <body> tags, ie:
> >
> > <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
> > href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
> > Flash.</a> If you have Flash installed, <a
> > href="index.html?detectflash=false">click to view gallery</a></div>
> > <script type="text/javascript">
> > var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
> > "#181818");
> > fo.addParam("scale", "noscale");
> > fo.write("flashcontent");
> > </script>
> >
> > ...... and paste this in your Text Box.
> >
> > 7) Go to the your NOF Page Layout (F9) and click on the HTML Button
on
> > the Layout Properties dialog. Click on the "Between Head Tabs" tab so
you
> > can paste code.
> >
> > ..... where do I get the code ?
> >
> > In the same Index.html file you opened with Notepad go to the top of the
> > file and Block & Copy from the <Script> Tag down to the closing
</Style>
> > Tag.
> >
> > ie:
> > <script type="text/javascript" src="flashobject.js"></script>
> > <style type="text/css">
> > /* hide from ie on mac \*/
> > html {
> > height: 100%;
> > overflow: hidden;
> > }
> >
> > #flashcontent {
> > height: 100%;
> > }
> > /* end hide */
> >
> > body {
> > height: 100%;
> > margin: 0;
> > padding: 0;
> > background-color: #181818;
> > color:#ffffff;
> > }
> > </style>
> >
> >
> > Paste this code in the "Between Head Tag" dialog, close & then compile
> > your page.
> >
> > Upload your NOF page to this same directory and you should be set to go.
> >
> > Hope this helps !
> >
> > the Other Chuck
> >
> >
> >
> >
> >
> >
> > "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> > news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
> >> Have any of you embedded an Autoviewer slideshow onto an NOF page?
> >>
> >> http://www.airtightinteractive.com/projects/autoviewer/
> >>
> >> I can import the sample HTML page that comes with Autoviewer, but the
SWF
> >> doesn't get triggered. I haven't had a chance to think it through.
> >>
> >> [L]
> >>
> >>
> >
> >
> >
> >
>
>
>
>
-
Re: Autoviewer and NOF?
Still kills my scroll bar in FF. I guess I am the only one?
-
Bert
"Leroy Schulz" <mail@frostbytes.ca> wrote in message
news:ffqgm6$2k49@flsun90netnews01.netobjects.com.. .
> Hi Bert,
>
> If you like AutoViewer, see also PostcardViewer:
> http://www.airtightinteractive.com/p...ostcardviewer/.
>
> Here's where I'm using it (prior to implementing it in NOF):
>
> http://www.leroyschulz.com/postcards/floresdececile/
> http://www.leroyschulz.com/postcards/capeshots/
>
> [L]
>
>
>
>
> "TheBox" <nospam@this.com> wrote in message
> news:ffq95d$2k46@flsun90netnews01.netobjects.com.. .
>> Hi Chuck,
>>
>> I am always looking for a cool pic viewer and I liked this one (ty Leroy)
>> So I did a quick install, and it seems that my Mozilla Firefox 2.0.0.8
>> will not display the vertical scroll bar. I did a look at yours and the
>> same...I can press the scroll button down and get it to "scroll" but not
>> initially. Does anyone else experience this?
>> -
>> I also tried just the sample installation and still the same. Is anyone
>> else having this issue with FF?
>> -
>> Thanks,
>> Bert
>>
>> "the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
>> news:A921.1193272946.245@gfwebforum.com...
>>> Hi Leroy,
>>>
>>> Neve used Autoviewer before but was able to add it to my live website in
>>> about 10 minutes.
>>>
>>> http://www.mansfieldorchestras.org/temp/temp.html
>>>
>>> 1) I used the option for the PHP Server Side Script.
>>> http://www.airtightinteractive.com/p..._instruct.html
>>>
>>> 2) Create your site folder and upload the contents of the Autoview Zip
>>> files to the root (I build by Site Structure), and then add a Sub-Folder
>>> called "images" and upload your image files.
>>>
>>> 3) Also download the PHP Script and edit with Notepad per instructions
>>> to change frame color, length of display, etc.
>>>
>>> 4) Upload to the same folder & run this script to generate the XML file
>>> needed for the script.
>>>
>>> 5) Create your NOF page and put a Text Box where you want your Slide
>>> Show. Double Click & then the "Ctrl T" method to ready the box for
>>> pasting code.
>>>
>>> ..... where do I get the code ?
>>>
>>> 6) Open the Index.html file with Notepad (found in the Autoview.zip
>>> package). Block and copy the code between the <body> tags, ie:
>>>
>>> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
>>> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
>>> Flash.</a> If you have Flash installed, <a
>>> href="index.html?detectflash=false">click to view gallery</a></div>
>>> <script type="text/javascript">
>>> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
>>> "#181818");
>>> fo.addParam("scale", "noscale");
>>> fo.write("flashcontent");
>>> </script>
>>>
>>> ...... and paste this in your Text Box.
>>>
>>> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button
>>> on the Layout Properties dialog. Click on the "Between Head Tabs" tab
>>> so you can paste code.
>>>
>>> ..... where do I get the code ?
>>>
>>> In the same Index.html file you opened with Notepad go to the top of the
>>> file and Block & Copy from the <Script> Tag down to the closing
>>> </Style> Tag.
>>>
>>> ie:
>>> <script type="text/javascript" src="flashobject.js"></script>
>>> <style type="text/css">
>>> /* hide from ie on mac \*/
>>> html {
>>> height: 100%;
>>> overflow: hidden;
>>> }
>>>
>>> #flashcontent {
>>> height: 100%;
>>> }
>>> /* end hide */
>>>
>>> body {
>>> height: 100%;
>>> margin: 0;
>>> padding: 0;
>>> background-color: #181818;
>>> color:#ffffff;
>>> }
>>> </style>
>>>
>>>
>>> Paste this code in the "Between Head Tag" dialog, close & then compile
>>> your page.
>>>
>>> Upload your NOF page to this same directory and you should be set to go.
>>>
>>> Hope this helps !
>>>
>>> the Other Chuck
>>>
>>>
>>>
>>>
>>>
>>>
>>> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
>>> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>>>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>>>
>>>> http://www.airtightinteractive.com/projects/autoviewer/
>>>>
>>>> I can import the sample HTML page that comes with Autoviewer, but the
>>>> SWF doesn't get triggered. I haven't had a chance to think it through.
>>>>
>>>> [L]
>>>>
>>>>
>>>
>>>
>>>
>>>
>>
>>
>
>
-
Re: Autoviewer and NOF?
Yesterday I quickly tried these steps to add Autoviewer to my site. It
didn't work. (The Flash object doesn't display, just the text blurb about
Flash being required.)
Today I made a test site out of your steps and it worked.
Now back to my original site to figure out what I did wrong.
[L]
"the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
news:A921.1193272946.245@gfwebforum.com...
> Hi Leroy,
>
> Neve used Autoviewer before but was able to add it to my live website in
> about 10 minutes.
>
> http://www.mansfieldorchestras.org/temp/temp.html
>
> 1) I used the option for the PHP Server Side Script.
> http://www.airtightinteractive.com/p..._instruct.html
>
> 2) Create your site folder and upload the contents of the Autoview Zip
> files to the root (I build by Site Structure), and then add a Sub-Folder
> called "images" and upload your image files.
>
> 3) Also download the PHP Script and edit with Notepad per instructions to
> change frame color, length of display, etc.
>
> 4) Upload to the same folder & run this script to generate the XML file
> needed for the script.
>
> 5) Create your NOF page and put a Text Box where you want your Slide
> Show. Double Click & then the "Ctrl T" method to ready the box for pasting
> code.
>
> ..... where do I get the code ?
>
> 6) Open the Index.html file with Notepad (found in the Autoview.zip
> package). Block and copy the code between the <body> tags, ie:
>
> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
> Flash.</a> If you have Flash installed, <a
> href="index.html?detectflash=false">click to view gallery</a></div>
> <script type="text/javascript">
> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
> "#181818");
> fo.addParam("scale", "noscale");
> fo.write("flashcontent");
> </script>
>
> ...... and paste this in your Text Box.
>
> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
> the Layout Properties dialog. Click on the "Between Head Tabs" tab so you
> can paste code.
>
> ..... where do I get the code ?
>
> In the same Index.html file you opened with Notepad go to the top of the
> file and Block & Copy from the <Script> Tag down to the closing </Style>
> Tag.
>
> ie:
> <script type="text/javascript" src="flashobject.js"></script>
> <style type="text/css">
> /* hide from ie on mac \*/
> html {
> height: 100%;
> overflow: hidden;
> }
>
> #flashcontent {
> height: 100%;
> }
> /* end hide */
>
> body {
> height: 100%;
> margin: 0;
> padding: 0;
> background-color: #181818;
> color:#ffffff;
> }
> </style>
>
>
> Paste this code in the "Between Head Tag" dialog, close & then compile
> your page.
>
> Upload your NOF page to this same directory and you should be set to go.
>
> Hope this helps !
>
> the Other Chuck
>
>
>
>
>
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>
>> http://www.airtightinteractive.com/projects/autoviewer/
>>
>> I can import the sample HTML page that comes with Autoviewer, but the SWF
>> doesn't get triggered. I haven't had a chance to think it through.
>>
>> [L]
>>
>>
>
>
>
>
-
Re: Autoviewer and NOF?
Look at it in FF...are there any scroll bars?
-
Bert
"Leroy Schulz" <mail@frostbytes.ca> wrote in message
news:fft82t$dn91@flsun90netnews01.netobjects.com.. .
> Yesterday I quickly tried these steps to add Autoviewer to my site. It
> didn't work. (The Flash object doesn't display, just the text blurb about
> Flash being required.)
>
> Today I made a test site out of your steps and it worked.
>
> Now back to my original site to figure out what I did wrong.
>
> [L]
>
>
>
> "the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
> news:A921.1193272946.245@gfwebforum.com...
>> Hi Leroy,
>>
>> Neve used Autoviewer before but was able to add it to my live website in
>> about 10 minutes.
>>
>> http://www.mansfieldorchestras.org/temp/temp.html
>>
>> 1) I used the option for the PHP Server Side Script.
>> http://www.airtightinteractive.com/p..._instruct.html
>>
>> 2) Create your site folder and upload the contents of the Autoview Zip
>> files to the root (I build by Site Structure), and then add a Sub-Folder
>> called "images" and upload your image files.
>>
>> 3) Also download the PHP Script and edit with Notepad per instructions to
>> change frame color, length of display, etc.
>>
>> 4) Upload to the same folder & run this script to generate the XML file
>> needed for the script.
>>
>> 5) Create your NOF page and put a Text Box where you want your Slide
>> Show. Double Click & then the "Ctrl T" method to ready the box for
>> pasting code.
>>
>> ..... where do I get the code ?
>>
>> 6) Open the Index.html file with Notepad (found in the Autoview.zip
>> package). Block and copy the code between the <body> tags, ie:
>>
>> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
>> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
>> Flash.</a> If you have Flash installed, <a
>> href="index.html?detectflash=false">click to view gallery</a></div>
>> <script type="text/javascript">
>> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
>> "#181818");
>> fo.addParam("scale", "noscale");
>> fo.write("flashcontent");
>> </script>
>>
>> ...... and paste this in your Text Box.
>>
>> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
>> the Layout Properties dialog. Click on the "Between Head Tabs" tab so
>> you can paste code.
>>
>> ..... where do I get the code ?
>>
>> In the same Index.html file you opened with Notepad go to the top of the
>> file and Block & Copy from the <Script> Tag down to the closing
>> </Style> Tag.
>>
>> ie:
>> <script type="text/javascript" src="flashobject.js"></script>
>> <style type="text/css">
>> /* hide from ie on mac \*/
>> html {
>> height: 100%;
>> overflow: hidden;
>> }
>>
>> #flashcontent {
>> height: 100%;
>> }
>> /* end hide */
>>
>> body {
>> height: 100%;
>> margin: 0;
>> padding: 0;
>> background-color: #181818;
>> color:#ffffff;
>> }
>> </style>
>>
>>
>> Paste this code in the "Between Head Tag" dialog, close & then compile
>> your page.
>>
>> Upload your NOF page to this same directory and you should be set to go.
>>
>> Hope this helps !
>>
>> the Other Chuck
>>
>>
>>
>>
>>
>>
>> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
>> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>>
>>> http://www.airtightinteractive.com/projects/autoviewer/
>>>
>>> I can import the sample HTML page that comes with Autoviewer, but the
>>> SWF doesn't get triggered. I haven't had a chance to think it through.
>>>
>>> [L]
>>>
>>>
>>
>>
>>
>>
>
>
-
Re: Autoviewer and NOF?
Bert,
You're right, it doesn't allow the scroll bars to work in FF. I even
tried making an extra long page and no luck. Maybe someone has the time to
investigate.
tOC
"TheBox" <nospam@this.com> wrote in message
news:fftba0$cov3@flsun90netnews01.netobjects.com.. .
> Look at it in FF...are there any scroll bars?
> -
> Bert
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:fft82t$dn91@flsun90netnews01.netobjects.com.. .
>> Yesterday I quickly tried these steps to add Autoviewer to my site. It
>> didn't work. (The Flash object doesn't display, just the text blurb
>> about Flash being required.)
>>
>> Today I made a test site out of your steps and it worked.
>>
>> Now back to my original site to figure out what I did wrong.
>>
>> [L]
>>
>>
>>
>> "the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
>> news:A921.1193272946.245@gfwebforum.com...
>>> Hi Leroy,
>>>
>>> Neve used Autoviewer before but was able to add it to my live website in
>>> about 10 minutes.
>>>
>>> http://www.mansfieldorchestras.org/temp/temp.html
>>>
>>> 1) I used the option for the PHP Server Side Script.
>>> http://www.airtightinteractive.com/p..._instruct.html
>>>
>>> 2) Create your site folder and upload the contents of the Autoview Zip
>>> files to the root (I build by Site Structure), and then add a Sub-Folder
>>> called "images" and upload your image files.
>>>
>>> 3) Also download the PHP Script and edit with Notepad per instructions
>>> to change frame color, length of display, etc.
>>>
>>> 4) Upload to the same folder & run this script to generate the XML file
>>> needed for the script.
>>>
>>> 5) Create your NOF page and put a Text Box where you want your Slide
>>> Show. Double Click & then the "Ctrl T" method to ready the box for
>>> pasting code.
>>>
>>> ..... where do I get the code ?
>>>
>>> 6) Open the Index.html file with Notepad (found in the Autoview.zip
>>> package). Block and copy the code between the <body> tags, ie:
>>>
>>> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
>>> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
>>> Flash.</a> If you have Flash installed, <a
>>> href="index.html?detectflash=false">click to view gallery</a></div>
>>> <script type="text/javascript">
>>> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
>>> "#181818");
>>> fo.addParam("scale", "noscale");
>>> fo.write("flashcontent");
>>> </script>
>>>
>>> ...... and paste this in your Text Box.
>>>
>>> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button
>>> on the Layout Properties dialog. Click on the "Between Head Tabs" tab
>>> so you can paste code.
>>>
>>> ..... where do I get the code ?
>>>
>>> In the same Index.html file you opened with Notepad go to the top of the
>>> file and Block & Copy from the <Script> Tag down to the closing
>>> </Style> Tag.
>>>
>>> ie:
>>> <script type="text/javascript" src="flashobject.js"></script>
>>> <style type="text/css">
>>> /* hide from ie on mac \*/
>>> html {
>>> height: 100%;
>>> overflow: hidden;
>>> }
>>>
>>> #flashcontent {
>>> height: 100%;
>>> }
>>> /* end hide */
>>>
>>> body {
>>> height: 100%;
>>> margin: 0;
>>> padding: 0;
>>> background-color: #181818;
>>> color:#ffffff;
>>> }
>>> </style>
>>>
>>>
>>> Paste this code in the "Between Head Tag" dialog, close & then compile
>>> your page.
>>>
>>> Upload your NOF page to this same directory and you should be set to go.
>>>
>>> Hope this helps !
>>>
>>> the Other Chuck
>>>
>>>
>>>
>>>
>>>
>>>
>>> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
>>> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>>>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>>>
>>>> http://www.airtightinteractive.com/projects/autoviewer/
>>>>
>>>> I can import the sample HTML page that comes with Autoviewer, but the
>>>> SWF doesn't get triggered. I haven't had a chance to think it through.
>>>>
>>>> [L]
>>>>
>>>>
>>>
>>>
>>>
>>>
>>
>>
>
>
>
-
Re: Autoviewer and NOF?
On 26 Oct 2007 21:15:17 -0600, the other Chuck wrote:
> You're right, it doesn't allow the scroll bars to work in FF. I even
> tried making an extra long page and no luck. Maybe someone has the time to
> investigate.
IIRC - by default Firefox does not show scrollbars unless there is
overflow.
The HTML section of the CSS style block (in the demo page) has this:
overflow: hidden;
Try changing it to this:
overflow: -moz-scrollbars-vertical;
HTH,
Charles
--
-------------------------------------------------------------------------------------------------------
Charles Edmonds
cje_ByteMeSpammers_@lansrad.com (remove the _ByteMeSpammers_ to email me)
www.clarionproseries.com - "Serious imaging tools for Clarion Developers"
www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
and Forms!"
www.lansrad.com - "Intelligent Solutions for Universal Problems"
www.fotokiss.com - "World's Best Auction Photo Editor"
-------------------------------------------------------------------------------------------------------
-
Re: Autoviewer and NOF?
I got it working. I think I didn't have the Autoviewer files in the right
paths when I tried before posting here.
Thanks Chuck!
http://www.leroyschulz.com/html/7th_...rt_series.html
[L]
"Leroy Schulz" <mail@frostbytes.ca> wrote in message
news:fft82t$dn91@flsun90netnews01.netobjects.com.. .
> Yesterday I quickly tried these steps to add Autoviewer to my site. It
> didn't work. (The Flash object doesn't display, just the text blurb about
> Flash being required.)
>
> Today I made a test site out of your steps and it worked.
>
> Now back to my original site to figure out what I did wrong.
>
> [L]
>
>
>
> "the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
> news:A921.1193272946.245@gfwebforum.com...
>> Hi Leroy,
>>
>> Neve used Autoviewer before but was able to add it to my live website in
>> about 10 minutes.
>>
>> http://www.mansfieldorchestras.org/temp/temp.html
>>
>> 1) I used the option for the PHP Server Side Script.
>> http://www.airtightinteractive.com/p..._instruct.html
>>
>> 2) Create your site folder and upload the contents of the Autoview Zip
>> files to the root (I build by Site Structure), and then add a Sub-Folder
>> called "images" and upload your image files.
>>
>> 3) Also download the PHP Script and edit with Notepad per instructions to
>> change frame color, length of display, etc.
>>
>> 4) Upload to the same folder & run this script to generate the XML file
>> needed for the script.
>>
>> 5) Create your NOF page and put a Text Box where you want your Slide
>> Show. Double Click & then the "Ctrl T" method to ready the box for
>> pasting code.
>>
>> ..... where do I get the code ?
>>
>> 6) Open the Index.html file with Notepad (found in the Autoview.zip
>> package). Block and copy the code between the <body> tags, ie:
>>
>> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
>> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
>> Flash.</a> If you have Flash installed, <a
>> href="index.html?detectflash=false">click to view gallery</a></div>
>> <script type="text/javascript">
>> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
>> "#181818");
>> fo.addParam("scale", "noscale");
>> fo.write("flashcontent");
>> </script>
>>
>> ...... and paste this in your Text Box.
>>
>> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button on
>> the Layout Properties dialog. Click on the "Between Head Tabs" tab so
>> you can paste code.
>>
>> ..... where do I get the code ?
>>
>> In the same Index.html file you opened with Notepad go to the top of the
>> file and Block & Copy from the <Script> Tag down to the closing
>> </Style> Tag.
>>
>> ie:
>> <script type="text/javascript" src="flashobject.js"></script>
>> <style type="text/css">
>> /* hide from ie on mac \*/
>> html {
>> height: 100%;
>> overflow: hidden;
>> }
>>
>> #flashcontent {
>> height: 100%;
>> }
>> /* end hide */
>>
>> body {
>> height: 100%;
>> margin: 0;
>> padding: 0;
>> background-color: #181818;
>> color:#ffffff;
>> }
>> </style>
>>
>>
>> Paste this code in the "Between Head Tag" dialog, close & then compile
>> your page.
>>
>> Upload your NOF page to this same directory and you should be set to go.
>>
>> Hope this helps !
>>
>> the Other Chuck
>>
>>
>>
>>
>>
>>
>> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
>> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>>
>>> http://www.airtightinteractive.com/projects/autoviewer/
>>>
>>> I can import the sample HTML page that comes with Autoviewer, but the
>>> SWF doesn't get triggered. I haven't had a chance to think it through.
>>>
>>> [L]
>>>
>>>
>>
>>
>>
>>
>
>
-
Re: Autoviewer and NOF?
> Look at it in FF...are there any scroll bars?
Nope.
No vertical scroll bars in Opera 9.23 either.
They show up fine in IE7.
[L]
-
Re: Autoviewer and NOF?
> Try changing it to this:
> overflow: -moz-scrollbars-vertical;
Yessir, that worked. Scrollbars now appear in both FF and Opera.
http://www.leroyschulz.com/7thstreet...red_deers.html
Thanks Charles!
[L]
-
Re: Autoviewer and NOF?
On Fri, 26 Oct 2007 23:07:04 -0600, Leroy Schulz wrote:
>> Look at it in FF...are there any scroll bars?
> No vertical scroll bars in Opera 9.23 either.
> They show up fine in IE7.
Leroy,
See my other post.
Try changing this:
html {
height: 100%;
overflow: hidden;
}
to this:
html {
height: 100%;
overflow-y: scroll;
}
That will give you the bars on FF and Opera too I think.
HTH,
Charles
--
-------------------------------------------------------------------------------------------------------
Charles Edmonds
cje_ByteMeSpammers_@lansrad.com (remove the _ByteMeSpammers_ to email me)
www.clarionproseries.com - "Serious imaging tools for Clarion Developers"
www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
and Forms!"
www.lansrad.com - "Intelligent Solutions for Universal Problems"
www.fotokiss.com - "World's Best Auction Photo Editor"
-------------------------------------------------------------------------------------------------------
-
Re: Autoviewer and NOF?
On Fri, 26 Oct 2007 23:23:49 -0600, Leroy Schulz wrote:
>> Try changing it to this:
>> overflow: -moz-scrollbars-vertical;
>
> Yessir, that worked. Scrollbars now appear in both FF and Opera.
>
> http://www.leroyschulz.com/7thstreet...red_deers.html
>
> Thanks Charles!
Glad to help!
You may want to try the settings in my other post and see if you prefer
them. They may be better for the full range of browsers.
;-)
Charles
--
-------------------------------------------------------------------------------------------------------
Charles Edmonds
cje_ByteMeSpammers_@lansrad.com (remove the _ByteMeSpammers_ to email me)
www.clarionproseries.com - "Serious imaging tools for Clarion Developers"
www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
and Forms!"
www.lansrad.com - "Intelligent Solutions for Universal Problems"
www.fotokiss.com - "World's Best Auction Photo Editor"
-------------------------------------------------------------------------------------------------------
-
Re: Autoviewer and NOF?
> They may be better for the full range of browsers.
Gracias senor.
[L]
-
Re: Autoviewer and NOF?
> That will give you the bars on FF and Opera too I think.
What would be the benefit of this method over your original?
[L]
-
Re: Autoviewer and NOF?
On Fri, 26 Oct 2007 23:47:26 -0600, Leroy Schulz wrote:
>> That will give you the bars on FF and Opera too I think.
> What would be the benefit of this method over your original?
The first one was a Mozilla specific fix (FF and Opera).
The other should make sure that they appear on older IE and maybe on the
Mac/Safari, etc.
Not tested - but that is the theory<g>
;-)
Charles
--
-------------------------------------------------------------------------------------------------------
Charles Edmonds
cje_ByteMeSpammers_@lansrad.com (remove the _ByteMeSpammers_ to email me)
www.clarionproseries.com - "Serious imaging tools for Clarion Developers"
www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
and Forms!"
www.lansrad.com - "Intelligent Solutions for Universal Problems"
www.fotokiss.com - "World's Best Auction Photo Editor"
-------------------------------------------------------------------------------------------------------
-
Re: Autoviewer and NOF?
> The other should make sure that they appear on older IE and maybe on the
> Mac/Safari, etc.
> Not tested - but that is the theory<g>
Thanks. I'll have to hit up an ex-friend for access to her Mac. <g>
[L]
-
Re: Autoviewer and NOF?
On Sat, 27 Oct 2007 00:06:27 -0600, Leroy Schulz wrote:
> Thanks. I'll have to hit up an ex-friend for access to her Mac. <g>
Hey - that is as good an excuse as any<g>
;-)
Charles
--
-------------------------------------------------------------------------------------------------------
Charles Edmonds
cje_ByteMeSpammers_@lansrad.com (remove the _ByteMeSpammers_ to email me)
www.clarionproseries.com - "Serious imaging tools for Clarion Developers"
www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
and Forms!"
www.lansrad.com - "Intelligent Solutions for Universal Problems"
www.fotokiss.com - "World's Best Auction Photo Editor"
-------------------------------------------------------------------------------------------------------
-
Re: Autoviewer and NOF?
That did it Charles. Thank you.
-
Bert
"Charles Edmonds" <cje_ByteMeSpammers_@lansrad.com> wrote in message
news:19ht89m8leio2$.1n3w6wkc3hshs$.dlg@40tude.net. ..
> On Fri, 26 Oct 2007 23:07:04 -0600, Leroy Schulz wrote:
>
>>> Look at it in FF...are there any scroll bars?
>> No vertical scroll bars in Opera 9.23 either.
>> They show up fine in IE7.
>
> Leroy,
>
> See my other post.
>
> Try changing this:
>
> html {
> height: 100%;
> overflow: hidden;
> }
>
> to this:
>
> html {
> height: 100%;
> overflow-y: scroll;
> }
>
>
> That will give you the bars on FF and Opera too I think.
>
> HTH,
>
> Charles
>
>
>
> --
> -------------------------------------------------------------------------------------------------------
> Charles Edmonds
> cje_ByteMeSpammers_@lansrad.com (remove the _ByteMeSpammers_ to email me)
>
> www.clarionproseries.com - "Serious imaging tools for Clarion Developers"
> www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
> and Forms!"
> www.lansrad.com - "Intelligent Solutions for Universal Problems"
> www.fotokiss.com - "World's Best Auction Photo Editor"
> -------------------------------------------------------------------------------------------------------
-
Re: Autoviewer and NOF?
On Sat, 27 Oct 2007 04:14:31 -0400, TheBox wrote:
> That did it Charles. Thank you.
That's great Bert,
Glad to have helped.
;-)
Charles
--
-------------------------------------------------------------------------------------------------------
Charles Edmonds
cje_ByteMeSpammers_@lansrad.com (remove the _ByteMeSpammers_ to email me)
www.clarionproseries.com - "Serious imaging tools for Clarion Developers"
www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
and Forms!"
www.lansrad.com - "Intelligent Solutions for Universal Problems"
www.fotokiss.com - "World's Best Auction Photo Editor"
-------------------------------------------------------------------------------------------------------
-
Re: Autoviewer and NOF?
Leroy,
Glad it all worked out.
Real nice site by the way. Slideshow goes well with your site !
Have a good day.
the Other Chuck
"Leroy Schulz" <mail@frostbytes.ca> wrote in message
news:ffuh0l$gfn3@flsun90netnews01.netobjects.com.. .
>I got it working. I think I didn't have the Autoviewer files in the right
>paths when I tried before posting here.
>
> Thanks Chuck!
>
> http://www.leroyschulz.com/html/7th_...rt_series.html
>
> [L]
>
>
>
>
> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
> news:fft82t$dn91@flsun90netnews01.netobjects.com.. .
>> Yesterday I quickly tried these steps to add Autoviewer to my site. It
>> didn't work. (The Flash object doesn't display, just the text blurb
>> about Flash being required.)
>>
>> Today I made a test site out of your steps and it worked.
>>
>> Now back to my original site to figure out what I did wrong.
>>
>> [L]
>>
>>
>>
>> "the other Chuck" <chuckv@NOSPAMvalentinetool.com> wrote in message
>> news:A921.1193272946.245@gfwebforum.com...
>>> Hi Leroy,
>>>
>>> Neve used Autoviewer before but was able to add it to my live website in
>>> about 10 minutes.
>>>
>>> http://www.mansfieldorchestras.org/temp/temp.html
>>>
>>> 1) I used the option for the PHP Server Side Script.
>>> http://www.airtightinteractive.com/p..._instruct.html
>>>
>>> 2) Create your site folder and upload the contents of the Autoview Zip
>>> files to the root (I build by Site Structure), and then add a Sub-Folder
>>> called "images" and upload your image files.
>>>
>>> 3) Also download the PHP Script and edit with Notepad per instructions
>>> to change frame color, length of display, etc.
>>>
>>> 4) Upload to the same folder & run this script to generate the XML file
>>> needed for the script.
>>>
>>> 5) Create your NOF page and put a Text Box where you want your Slide
>>> Show. Double Click & then the "Ctrl T" method to ready the box for
>>> pasting code.
>>>
>>> ..... where do I get the code ?
>>>
>>> 6) Open the Index.html file with Notepad (found in the Autoview.zip
>>> package). Block and copy the code between the <body> tags, ie:
>>>
>>> <div id="flashcontent">SimpleViewer requires Macromedia Flash. <a
>>> href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia
>>> Flash.</a> If you have Flash installed, <a
>>> href="index.html?detectflash=false">click to view gallery</a></div>
>>> <script type="text/javascript">
>>> var fo = new FlashObject("viewer.swf", "viewer", "100%", "100%", "8",
>>> "#181818");
>>> fo.addParam("scale", "noscale");
>>> fo.write("flashcontent");
>>> </script>
>>>
>>> ...... and paste this in your Text Box.
>>>
>>> 7) Go to the your NOF Page Layout (F9) and click on the HTML Button
>>> on the Layout Properties dialog. Click on the "Between Head Tabs" tab
>>> so you can paste code.
>>>
>>> ..... where do I get the code ?
>>>
>>> In the same Index.html file you opened with Notepad go to the top of the
>>> file and Block & Copy from the <Script> Tag down to the closing
>>> </Style> Tag.
>>>
>>> ie:
>>> <script type="text/javascript" src="flashobject.js"></script>
>>> <style type="text/css">
>>> /* hide from ie on mac \*/
>>> html {
>>> height: 100%;
>>> overflow: hidden;
>>> }
>>>
>>> #flashcontent {
>>> height: 100%;
>>> }
>>> /* end hide */
>>>
>>> body {
>>> height: 100%;
>>> margin: 0;
>>> padding: 0;
>>> background-color: #181818;
>>> color:#ffffff;
>>> }
>>> </style>
>>>
>>>
>>> Paste this code in the "Between Head Tag" dialog, close & then compile
>>> your page.
>>>
>>> Upload your NOF page to this same directory and you should be set to go.
>>>
>>> Hope this helps !
>>>
>>> the Other Chuck
>>>
>>>
>>>
>>>
>>>
>>>
>>> "Leroy Schulz" <mail@frostbytes.ca> wrote in message
>>> news:ffog2b$p7t2@flsun90netnews01.netobjects.com.. .
>>>> Have any of you embedded an Autoviewer slideshow onto an NOF page?
>>>>
>>>> http://www.airtightinteractive.com/projects/autoviewer/
>>>>
>>>> I can import the sample HTML page that comes with Autoviewer, but the
>>>> SWF doesn't get triggered. I haven't had a chance to think it through.
>>>>
>>>> [L]
>>>>
>>>>
>>>
>>>
>>>
>>>
>>
>>
>
>
>
-
Re: Autoviewer and NOF?
> Hey - that is as good an excuse as any<g>
Danger Will Robinson, danger! <g>
[L]
-
Re: Autoviewer and NOF?
> Real nice site by the way. Slideshow goes well with your site !
Thank you. It's due for a revamp. If only paying clients would leave me
alone. <g>
[L]
-
Re: Autoviewer and NOF?
> That did it Charles. Thank you.
Have you tested that change against Safari?
[L]
-
Re: Autoviewer and NOF?
On Sat, 27 Oct 2007 07:58:50 -0600, Leroy Schulz wrote:
> Have you tested that change against Safari?
Not yet.
Safari PC does not allow the loading of a local URL (file) and I have not
had time to publish an example with that change in place yet.
Since we're trying to wrap up for the PageSnip release that test will have
to go onto my 'round tuit list.
;-)
Charles
--
-------------------------------------------------------------------------------------------------------
Charles Edmonds
cje_ByteMeSpammers_@lansrad.com (remove the _ByteMeSpammers_ to email me)
www.clarionproseries.com - "Serious imaging tools for Clarion Developers"
www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
and Forms!"
www.lansrad.com - "Intelligent Solutions for Universal Problems"
www.fotokiss.com - "World's Best Auction Photo Editor"
-------------------------------------------------------------------------------------------------------
-
Re: Autoviewer and NOF?
> Safari PC does not allow the loading of a local URL (file)
That's interesting.
Is PC version safe to install? I've grown to be hesitate about what I
install.
[L]
-
Re: Autoviewer and NOF?
To test sites locally, I open in default browser, copy and paste url into
Safari for Windows. It works fine, providing you don't use spaces in your
url, or if you do, replace those spaces with %20 (which FF does
automatically).
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"Charles Edmonds" <cje_ByteMeSpammers_@lansrad.com> wrote in message
news:6cofuh6210ej$.snuvlhkb6qu0$.dlg@40tude.net...
> On Sat, 27 Oct 2007 07:58:50 -0600, Leroy Schulz wrote:
>
> > Have you tested that change against Safari?
>
> Not yet.
>
> Safari PC does not allow the loading of a local URL (file) and I have not
> had time to publish an example with that change in place yet.
>
> Since we're trying to wrap up for the PageSnip release that test will have
> to go onto my 'round tuit list.
>
> ;-)
>
> Charles
>
>
> --
> --------------------------------------------------------------------------
-----------------------------
> Charles Edmonds
> cje_ByteMeSpammers_@lansrad.com (remove the _ByteMeSpammers_ to email me)
>
> www.clarionproseries.com - "Serious imaging tools for Clarion Developers"
> www.ezround.com - "Round Corner HTML tables with matching Banners, Buttons
> and Forms!"
> www.lansrad.com - "Intelligent Solutions for Universal Problems"
> www.fotokiss.com - "World's Best Auction Photo Editor"
> --------------------------------------------------------------------------
-----------------------------
-
Re: Autoviewer and NOF?
<Is PC version safe to install?>
Sure. Updates have corrected early release issues. I don't use Safari as
my default browser (prefer FF) but it's fine for site testing.
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"Leroy Schulz" <mail@frostbytes.ca> wrote in message
news:fg039h$nuj1@flsun90netnews01.netobjects.com.. .
> > Safari PC does not allow the loading of a local URL (file)
>
> That's interesting.
>
> I've grown to be hesitate about what I
> install.
>
> [L]
>
>