Okay, so. I decided I was unhappy with your answer. :P I wanted it, and I was going to have it. lol. And well, I've been working on it nearly non-stop since, well, a few hours before I posted about it. And I -FINALLY- figured it all out. Go me :D
Say you want to have an apple object, that you can click, and go to an "Eat Apple" page. You want to have this option on every page, so long as you have at least one apple.
You have to create an "Eat Apple" page, and then a link to that page from any other page(it doesn't matter which).
Once you have done that, go to your story and click "View this storygame" to play the game. Navigate to the page where that link is. But don't click the link.
Instead, use your broswer to view the source code (On a mac, this is view>view source). Now, scroll down the page until you see the header links. Its not going to be super obvious, but its there in the jumble of it all somewhere.
Underneath that, look at the few lines of code. They'll be spaced far apart so just look for what you named the links, and find the one you want. Copy the line of code that you see there. It should look similar to this:
That code will link to the page you want. There's one problem with it, though. Because in scripting you can't use " you have to switch the " for '. But after that it still won't work because of the ' in the ('FollowLink','9'). It gets all messed up somehow. So you need to switch the ' in there to & # 39, but without spaces. This is a different code for '.
Basically, what you end up with is something like this:
Then you just put that in the pagetext somewhere and voila!
It seems so simple now that I've explained it :( I had so many troubles with this one, but I think it'll be worth it.