PDA

View Full Version : Would Any Old Hats Have These Example Projects Laying Around?


coderanger
02-13-2007, 02:38 PM
Hi Gang,

I was doing some more research today, and found what I was looking for, only
the thread is so old, the example apps from Corey and Brett are no longer
available in the system for download.

I was wondering if any of the old hats around here might have these on your
systems, and would be willing to supply a download link for the rest of us
trying to figure out these issues?

Here's the link to the old thread:
http://www.indigorose.com/forums/showthread.php?t=1330&highlight=react+web+button

Thanks in advance,
Patrick

Worm
02-13-2007, 05:23 PM
I don't have the projects, but if memory serves me, bookmarks (#GotoNewPage) were used, and you used the On Navigate action to look for that particular bookmark.

coderanger
02-14-2007, 02:15 AM
Hi Worm,

Thanks for the reply..

Do you mean to add something like an anchor to the URL like:
http://www.domain.com/page.php#bookmark1

..and then read that in through the get URL function via the
On Navigate code section?

Thanks for the help,
Patrick

Worm
02-14-2007, 05:43 AM
Yep, You got it.

coderanger
02-15-2007, 01:12 PM
OK thanks, I appreciate it,
Patrick

coderanger
02-15-2007, 02:08 PM
Just a note, I actually had to place my code in the "On Loaded" tab
otherwise it wouldn't unload my label object.

In "On Loaded" Tab:
result = Web.GetURL("Web1");
result = String.Right(result, 6);
result = String.Compare("editor", result);
if result == 0 then
Label.SetVisible("Label6", true);
else
Label.SetVisible("Label6", false);
end

Patrick