Would Any Old Hats Have These Example Projects Laying Around?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • coderanger
    Forum Member
    • Jan 2007
    • 56

    Would Any Old Hats Have These Example Projects Laying Around?

    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:


    Thanks in advance,
    Patrick
  • Worm
    Indigo Rose Customer
    • Jul 2002
    • 3971

    #2
    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.

    Comment

    • coderanger
      Forum Member
      • Jan 2007
      • 56

      #3
      Hi Worm,

      Thanks for the reply..

      Do you mean to add something like an anchor to the URL like:


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

      Thanks for the help,
      Patrick

      Comment

      • Worm
        Indigo Rose Customer
        • Jul 2002
        • 3971

        #4
        Yep, You got it.

        Comment

        • coderanger
          Forum Member
          • Jan 2007
          • 56

          #5
          OK thanks, I appreciate it,
          Patrick

          Comment

          • coderanger
            Forum Member
            • Jan 2007
            • 56

            #6
            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:
            Code:
            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

            Comment

            Working...
            X