Item Selection
If you have a non-framed site and reload TabStrip in every page, you can specify that a particular tab/button combination is selected when the applet starts using a simpler method than PageSync. In each page that includes TabStrip, just add a small amount of extra code to the applet's HTML.

The additional code is this:

&SelectedTab=2&SelectedButton=3
Change 2 to the number of the tab that should be selected, and 3 to the number of the button that should be selected. (If no button should be selected, use 0 in place of the 3.)

In your HTML code, you'll find a FlashVars parameter which appears twice. Add the text to the end of both instances of that parameter, immediately before its closing " sign, like this:

<PARAM name="flashvars" value="Copyright=(c) Cool Focus [www.coolfocus.com]&SelectedTab=2&SelectedButton=3">
...
flashvars="Copyright=(c) Cool Focus [www.coolfocus.com]&SelectedTab=2&SelectedButton=3"

Important: Make sure you don't change the Copyright text in the FlashVars parameters, just add the new text onto the end of it.