PC Review


Reply
Thread Tools Rate Thread

Add to Favourites

 
 
=?Utf-8?B?UGlwZQ==?=
Guest
Posts: n/a
 
      16th Nov 2004
Hi,
Can I use a interactive button in fp03 to open my "add to favourites"
control panel tryed but I dont seem to get it to work..
Any idea's?

thxs
 
Reply With Quote
 
 
 
 
Mark Fitzpatrick
Guest
Posts: n/a
 
      16th Nov 2004
There are lots of JavaScripts out there to do this. Try
javascript.internet.com or www.dynamicdrive.com. Here is one script that
looks pretty good:
http://javascript.internet.com/cooki...-reminder.html

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage

"Pipe" <(E-Mail Removed)> wrote in message
news:FA1803FE-B84F-4472-AB94-(E-Mail Removed)...
> Hi,
> Can I use a interactive button in fp03 to open my "add to favourites"
> control panel tryed but I dont seem to get it to work..
> Any idea's?
>
> thxs



 
Reply With Quote
 
=?Utf-8?B?UGlwZQ==?=
Guest
Posts: n/a
 
      17th Nov 2004
Hi,
Yes I have already been down them roads, I have the sript for usung a form
button and using justa line of text ie "add to favorites" I need to be able
to use an *INTERACTIVE* button, I cant find or write the script for this (

any help wud be good

"Mark Fitzpatrick" wrote:

> There are lots of JavaScripts out there to do this. Try
> javascript.internet.com or www.dynamicdrive.com. Here is one script that
> looks pretty good:
> http://javascript.internet.com/cooki...-reminder.html
>
> Hope this helps,
> Mark Fitzpatrick
> Microsoft MVP - FrontPage
>
> "Pipe" <(E-Mail Removed)> wrote in message
> news:FA1803FE-B84F-4472-AB94-(E-Mail Removed)...
> > Hi,
> > Can I use a interactive button in fp03 to open my "add to favourites"
> > control panel tryed but I dont seem to get it to work..
> > Any idea's?
> >
> > thxs

>
>
>

 
Reply With Quote
 
Stefan B Rusynko
Guest
Posts: n/a
 
      17th Nov 2004
IB are just images with hyperlinks and onmouse over/out/down events attached to them (using Javascript)

Just call your add to favorites script for the hyperlink

<a href="javascript:yourfunctioname();" ....>
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"Pipe" <(E-Mail Removed)> wrote in message news:1D344DF0-7A5F-485A-A128-(E-Mail Removed)...
| Hi,
| Yes I have already been down them roads, I have the sript for usung a form
| button and using justa line of text ie "add to favorites" I need to be able
| to use an *INTERACTIVE* button, I cant find or write the script for this (
|
| any help wud be good
|
| "Mark Fitzpatrick" wrote:
|
| > There are lots of JavaScripts out there to do this. Try
| > javascript.internet.com or www.dynamicdrive.com. Here is one script that
| > looks pretty good:
| > http://javascript.internet.com/cooki...-reminder.html
| >
| > Hope this helps,
| > Mark Fitzpatrick
| > Microsoft MVP - FrontPage
| >
| > "Pipe" <(E-Mail Removed)> wrote in message
| > news:FA1803FE-B84F-4472-AB94-(E-Mail Removed)...
| > > Hi,
| > > Can I use a interactive button in fp03 to open my "add to favourites"
| > > control panel tryed but I dont seem to get it to work..
| > > Any idea's?
| > >
| > > thxs
| >
| >
| >


 
Reply With Quote
 
=?Utf-8?B?UGlwZQ==?=
Guest
Posts: n/a
 
      17th Nov 2004
Hi,
I was using this script..

<script language="JavaScript" type="Text/Javascript"><!--
// Hide script from older browsers
// script by http://www.hypergurl.com
var urlAddress = "http://www.cuteclothing.co.uk";
var pageName = "Cute Clothing for Children";

function addToFavorites()
{
if (window.external)
{
window.external.AddFavorite(urlAddress,pageName)
}
else
{
alert("Sorry! Your browser doesn't support this function.");
}
}
// --></script>

WHERE DO I PLACE THIS PART OF THE SCRIPT WITHIN MY IB CODE???

href="javascript:addToFavorites()

IB CODE

<img border="0" id="img22" src="images/addto3.gif" height="17" width="166"
alt="Add Cute to Favourites" fp-style="fp-btn: Soft Tab 7; fp-font: Century
Gothic; fp-font-color-normal: #C84C85; fp-font-color-hover: #993366;
fp-font-color-press: #666699; fp-transparent: 1; fp-proportional: 0"
fp-title="Add Cute to Favourites" align="right"
onmouseover="FP_swapImg(1,0,/*id*/'img22',/*url*/'images/addto1.gif')"
onmouseout="FP_swapImg(0,0,/*id*/'img22',/*url*/'images/addto3.gif')"
onmousedown="FP_swapImg(1,0,/*id*/'img22',/*url*/'images/addto2.gif')"
onmouseup="FP_swapImg(0,0,/*id*/'img22',/*url*/'images/addto1.gif')">


Hope this helps

 
Reply With Quote
 
Stefan B Rusynko
Guest
Posts: n/a
 
      18th Nov 2004
You need to wrap the whole image tag in a hyperlink

<a href="javascript:addToFavorites();" title="Add Cute to Favourites">
<img border="0" id="img22" src="images/addto3.gif" height="17" width="166"
alt="Add Cute to Favourites" fp-style="fp-btn: Soft Tab 7; fp-font: Century
Gothic; fp-font-color-normal: #C84C85; fp-font-color-hover: #993366;
fp-font-color-press: #666699; fp-transparent: 1; fp-proportional: 0"
fp-title="Add Cute to Favourites" align="right"
onmouseover="FP_swapImg(1,0,/*id*/'img22',/*url*/'images/addto1.gif')"
onmouseout="FP_swapImg(0,0,/*id*/'img22',/*url*/'images/addto3.gif')"
onmousedown="FP_swapImg(1,0,/*id*/'img22',/*url*/'images/addto2.gif')"
onmouseup="FP_swapImg(0,0,/*id*/'img22',/*url*/'images/addto1.gif')">
</a>

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"Pipe" <(E-Mail Removed)> wrote in message news:C3E7C138-98D5-4A0A-BF55-(E-Mail Removed)...
| Hi,
| I was using this script..
|
| <script language="JavaScript" type="Text/Javascript"><!--
| // Hide script from older browsers
| // script by http://www.hypergurl.com
| var urlAddress = "http://www.cuteclothing.co.uk";
| var pageName = "Cute Clothing for Children";
|
| function addToFavorites()
| {
| if (window.external)
| {
| window.external.AddFavorite(urlAddress,pageName)
| }
| else
| {
| alert("Sorry! Your browser doesn't support this function.");
| }
| }
| // --></script>
|
| WHERE DO I PLACE THIS PART OF THE SCRIPT WITHIN MY IB CODE???
|
| href="javascript:addToFavorites()
|
| IB CODE
|
| <img border="0" id="img22" src="images/addto3.gif" height="17" width="166"
| alt="Add Cute to Favourites" fp-style="fp-btn: Soft Tab 7; fp-font: Century
| Gothic; fp-font-color-normal: #C84C85; fp-font-color-hover: #993366;
| fp-font-color-press: #666699; fp-transparent: 1; fp-proportional: 0"
| fp-title="Add Cute to Favourites" align="right"
| onmouseover="FP_swapImg(1,0,/*id*/'img22',/*url*/'images/addto1.gif')"
| onmouseout="FP_swapImg(0,0,/*id*/'img22',/*url*/'images/addto3.gif')"
| onmousedown="FP_swapImg(1,0,/*id*/'img22',/*url*/'images/addto2.gif')"
| onmouseup="FP_swapImg(0,0,/*id*/'img22',/*url*/'images/addto1.gif')">
|
|
| Hope this helps
|


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Favourites are not in alphabetic order with "Add to favourites" Volker Windows XP Internet Explorer 7 23rd May 2008 08:54 AM
IE Favourites Angelo Campitelli Microsoft Windows 2000 Group Policy 1 10th Aug 2004 02:30 PM
Favourites Jan W. de-Kulik Microsoft Outlook Discussion 2 8th Jan 2004 02:08 PM
Favourites Windows XP Internet Explorer 1 2nd Nov 2003 12:46 PM
Favourites point to NT folder not Favourites folder Hamish Kuzminski Windows XP Internet Explorer 1 10th Sep 2003 07:14 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:42 PM.