PC Review


Reply
Thread Tools Rate Thread

"Assistance > FrontPage 2003" Link Style

 
 
=?Utf-8?B?SiBBbGFu?=
Guest
Posts: n/a
 
      19th Jul 2005
How do I do this type of bread-crum link in Front Page 2003: "Assistance >
FrontPage 2003 > Links"?
 
Reply With Quote
 
 
 
 
Tom Pepper Willett
Guest
Posts: n/a
 
      19th Jul 2005
You need to Google for breadcrumb scripts ...you'll find many out there.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/off...tid=FX01085802
===
"J Alan" <J (E-Mail Removed)> wrote in message
news:3E50D6A3-D342-4433-983A-(E-Mail Removed)...
| How do I do this type of bread-crum link in Front Page 2003: "Assistance >
| FrontPage 2003 > Links"?


 
Reply With Quote
 
Andrew Murray
Guest
Posts: n/a
 
      20th Jul 2005
try this - it's apparently an addin for FP2002....uses FP extensions though.
http://www.kaosweaver.com/frontpage/

"J Alan" <J (E-Mail Removed)> wrote in message
news:3E50D6A3-D342-4433-983A-(E-Mail Removed)...
> How do I do this type of bread-crum link in Front Page 2003: "Assistance >
> FrontPage 2003 > Links"?



 
Reply With Quote
 
Trevor L.
Guest
Posts: n/a
 
      20th Jul 2005
Andrew,

It works for me (kaosweaver, that is) and my server doesn't have FP
extensions

--
Cheers,
Trevor L., WIP (Web Interested Person)
Website: http://tandcl.homemail.com.au

Andrew Murray wrote:
> try this - it's apparently an addin for FP2002....uses FP extensions
> though. http://www.kaosweaver.com/frontpage/
>
> "J Alan" <J (E-Mail Removed)> wrote in message
> news:3E50D6A3-D342-4433-983A-(E-Mail Removed)...
>> How do I do this type of bread-crum link in Front Page 2003:
>> "Assistance > FrontPage 2003 > Links"?



 
Reply With Quote
 
Trevor L.
Guest
Posts: n/a
 
      20th Jul 2005
Andrew,
My apologies.

I jumped too soon.

You wrote FP extensions, *not* FP *server* extensions.

However, looking at the code, it seems to self contained, and not using FP
extensions

--
Cheers,
Trevor L., WIP (Web Interested Person)
Website: http://tandcl.homemail.com.au

Trevor L. wrote:
> Andrew,
>
> It works for me (kaosweaver, that is) and my server doesn't have FP
> extensions
>
> --
> Cheers,
> Trevor L., WIP (Web Interested Person)
> Website: http://tandcl.homemail.com.au
>
> Andrew Murray wrote:
>> try this - it's apparently an addin for FP2002....uses FP extensions
>> though. http://www.kaosweaver.com/frontpage/
>>
>> "J Alan" <J (E-Mail Removed)> wrote in message
>> news:3E50D6A3-D342-4433-983A-(E-Mail Removed)...
>>> How do I do this type of bread-crum link in Front Page 2003:
>>> "Assistance > FrontPage 2003 > Links"?



 
Reply With Quote
 
Andrew Murray
Guest
Posts: n/a
 
      21st Jul 2005
I meant "frontpage server extensions" - the site link I gave states exactly
that....

"Trevor L." <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Andrew,
> My apologies.
>
> I jumped too soon.
>
> You wrote FP extensions, *not* FP *server* extensions.
>
> However, looking at the code, it seems to self contained, and not using FP
> extensions
>
> --
> Cheers,
> Trevor L., WIP (Web Interested Person)
> Website: http://tandcl.homemail.com.au
>
> Trevor L. wrote:
>> Andrew,
>>
>> It works for me (kaosweaver, that is) and my server doesn't have FP
>> extensions
>>
>> --
>> Cheers,
>> Trevor L., WIP (Web Interested Person)
>> Website: http://tandcl.homemail.com.au
>>
>> Andrew Murray wrote:
>>> try this - it's apparently an addin for FP2002....uses FP extensions
>>> though. http://www.kaosweaver.com/frontpage/
>>>
>>> "J Alan" <J (E-Mail Removed)> wrote in message
>>> news:3E50D6A3-D342-4433-983A-(E-Mail Removed)...
>>>> How do I do this type of bread-crum link in Front Page 2003:
>>>> "Assistance > FrontPage 2003 > Links"?

>
>



 
Reply With Quote
 
Trevor L.
Guest
Posts: n/a
 
      21st Jul 2005
Thanks Andrew,

As a matter of interest, here is the code that Kaosweaver creates:

function breadCrumbs(base,delStr,defp,cStyle,tStyle,dStyle,nl)
{
loc = window.location.toString();
subs= loc.substr(loc.indexOf(base)+base.length+1).split("/");
document.write
( '<a href="' + getLoc(subs.length-1) + defp + '"'
+ ' class="' + cStyle + '">Home</a>'
+ '<span class="' + dStyle + '">' + delStr + '</span>');

a = (loc.indexOf(defp)==-1) ? 1 : 2
for (i=0; i<(subs.length-a); i++)
{ subs[i] = makeCaps(unescape(subs[i]));
document.write
( '<a href="' + getLoc(subs.length-i-2) + defp + '"'
+ ' class="' + cStyle + '">' + subs[i] + '</a>'
+ '<span class="' + dStyle + '">' + delStr + '</span>'); }

if (nl==1) document.write("<br>")
document.write
( '<span class="' + tStyle + '">'
+ document.title + '</span>');
}
function getLoc(c)
{ var d = "";
if (c>0)
for (k=0; k<c; k++)
d = d + "../";
return d;
}
function makeCaps(a)
{ g = a.split(' ');
for (l=0; l<g.length; l++)
g[l]=g[l].toUpperCase().slice(0,1)+g[l].slice(1);
return g.join(" ");
}

It is called by breadCrumbs('tandcl.homemail.com.au' ,'>>' ,'index.html'
,'none' ,'none' ,'none' ,'0') - example parameters for my site.
--
Cheers,
Trevor L., WIP (Web Interested Person)
Website: http://tandcl.homemail.com.au

Andrew Murray wrote:
> I meant "frontpage server extensions" - the site link I gave states
> exactly that....
>
> "Trevor L." <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Andrew,
>> My apologies.
>>
>> I jumped too soon.
>>
>> You wrote FP extensions, *not* FP *server* extensions.
>>
>> However, looking at the code, it seems to self contained, and not
>> using FP extensions
>>
>> --
>> Cheers,
>> Trevor L., WIP (Web Interested Person)
>> Website: http://tandcl.homemail.com.au
>>
>> Trevor L. wrote:
>>> Andrew,
>>>
>>> It works for me (kaosweaver, that is) and my server doesn't have FP
>>> extensions
>>>
>>> --
>>> Cheers,
>>> Trevor L., WIP (Web Interested Person)
>>> Website: http://tandcl.homemail.com.au
>>>
>>> Andrew Murray wrote:
>>>> try this - it's apparently an addin for FP2002....uses FP
>>>> extensions though. http://www.kaosweaver.com/frontpage/
>>>>
>>>> "J Alan" <J (E-Mail Removed)> wrote in message
>>>> news:3E50D6A3-D342-4433-983A-(E-Mail Removed)...
>>>>> How do I do this type of bread-crum link in Front Page 2003:
>>>>> "Assistance > FrontPage 2003 > Links"?



 
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
What is the "link bar" ("/explorer" command line switch)(OL 2003) =?Utf-8?B?SGFucyBUcm9vc3Q=?= Microsoft Outlook Discussion 0 17th Aug 2006 08:51 AM
Link Bar for "Child Pages Under Home" in Frontpage 2003 =?Utf-8?B?TWFyZ2U=?= Microsoft Frontpage 2 14th Aug 2005 09:10 PM
"view your publish log file" link not working (FrontPage 2003) =?Utf-8?B?Q2hhcmxlcw==?= Microsoft Frontpage 5 12th Oct 2004 10:43 PM
"style" grayed out FrontPage 2002 Rick Microsoft Frontpage 1 4th Apr 2004 10:51 PM
View 'Broken hyperlinks' in Frontpage 2003 disregards "../" and "../.." etc Peter J. Veger Microsoft Frontpage 6 17th Mar 2004 05:44 PM


Features
 

Advertising
 

Newsgroups
 


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