I created a page with a list of forms, by Dept in several tables. At the
top of the page, I have interactive buttons linking to each dept (using
bookmarks). After each department I have an interactive button linking back
to the top. I just noticed that on the left hand folder list, I have
approximately 30 buttons listed; button 1, button 2, button 3, button 3A,
etc. Somehow I do not think these buttons belong in my folder list. In the
practice sessions I followed from the MS training web, I do not remember them
being listed in the left folder list. What have I done wrong? Can they be
moved to where ever they belong? Where do they belong? Please help me.
Aurora
In the same folder as the pages that use them
In the root folder
In the Images folder
In the images/buttons folder
The choice of location is yours. Wherever they are located does not
affect the way they work, the location only affects your organisation of
the website files and folders.
You can move the buttons by opening the web site in FrontPage or
Expression Web, then drag the images from the theitr present location to
the folder you wish to store them in.
However, you will then have to open every page in Code View, and change
the JavaScript in the links to point to the new locations. This does
not happen automatically.
For example, when moving buttons from the root folder to the images
folder:
The link
<img border="0" id="img3" src="button2C.gif" height="20" width="110"
alt="IB Home Page" fp-style="fp-btn: Soft Rectangle 10; fp-transparent:
1; fp-proportional: 0" fp-title="IB Home Page"
onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/button2D.gif')"
onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/button2C.gif')"
onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/button2E.gif')"
onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/button2D.gif')"></a>
Will have to be changed to
<img border="0" id="img3" src="images/button2C.gif" height="20"
width="110" alt="IB Home Page" fp-style="fp-btn: Soft Rectangle 10;
fp-transparent: 1; fp-proportional: 0" fp-title="IB Home Page"
onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'images/button2D.gif')"
onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'images/button2C.gif')"
onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'images/button2E.gif')"
onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'images/button2D.gif')"></a>
You may also have to change the links in the <body onload(.... as
well.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
http://www.rxs-enterprises.org/fp
"Aurora" <Aur...@discussions.microsoft.com> wrote in message
news:4FD1F012-20DD-4B2C...@microsoft.com:
Aurora
Aurora
"Rob Giordano (Crash)" wrote:
> probably :-)
>
>
>
> --
> ~~~~~~~~~~~~~~~~~~
> Rob Giordano
> Microsoft MVP Expression
>
>
>
>
>
>
> "Aurora" <Aur...@discussions.microsoft.com> wrote in message
> news:6DF86C99-2193-4AAA...@microsoft.com...
I have not found a Search tutorial - as far as FrontPage is concerned
all you have to do is add the component to the page, and Publish to a
server that supports the extensions.
However, if you are using a Windows Server the Host has some work to do,
namely create a catalogue for your site in Index Service.
Some hosts do not support Index Service since it can be a resource hog,
and without Index Service the search component will fail on Windows
servers (except Windows 2000 and earlier).
On Unix servers there should be no problems with the search component.
What problems are you having (if there is still a problem)?
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
http://www.rxs-enterprises.org/fp
"Aurora" <Aur...@discussions.microsoft.com> wrote in message
news:C969351B-9500-4E57...@microsoft.com:
Aurora
That is how the FrontPage search component works - give it some text to
search for, and it finds every web page with that text on it.
It sounds like the original site used a database application of some
sort to store all the drawing numbers with links to the associated
files, or used server side scripting to look through the filing system
for a particular filename associated with the drawing number.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
http://www.rxs-enterprises.org/fp
"Aurora" <Aur...@discussions.microsoft.com> wrote in message
news:E80C9885-ED8E-4AE0...@microsoft.com: