Page 3 of 6 FirstFirst 123456 LastLast
Results 21 to 30 of 57

Thread: Autoviewer and NOF?

  1. #21
    Leroy Schulz
    Guest

    Default 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]
    >>>
    >>>

    >>
    >>
    >>
    >>

    >
    >




  2. #22
    Leroy Schulz
    Guest

    Default 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]



  3. #23
    Leroy Schulz
    Guest

    Default 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]



  4. #24
    Charles Edmonds
    Guest

    Default 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"
    -------------------------------------------------------------------------------------------------------

  5. #25
    Charles Edmonds
    Guest

    Default 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"
    -------------------------------------------------------------------------------------------------------

  6. #26
    Leroy Schulz
    Guest

    Default Re: Autoviewer and NOF?

    > They may be better for the full range of browsers.

    Gracias senor.

    [L]



  7. #27
    Leroy Schulz
    Guest

    Default 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]



  8. #28
    Charles Edmonds
    Guest

    Default 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"
    -------------------------------------------------------------------------------------------------------

  9. #29
    Leroy Schulz
    Guest

    Default 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]



  10. #30
    Charles Edmonds
    Guest

    Default 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"
    -------------------------------------------------------------------------------------------------------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •