home *** CD-ROM | disk | FTP | other *** search
- function SetHelpText(strText)
- {
- if(!HelpControlInstance.SetDisplayText(strText))
- {
- HelpControlInstance.defaultText = strText;
- }
- }
- function SetHintText(strText)
- {
- if(!HintBoxInstance.SetDisplayText(strText))
- {
- HintBoxInstance.defaultText = strText;
- }
- }
- function ToggleHelp()
- {
- HelpControlInstance.ToggleVisibility();
- }
- function ShowGraphic(mName, XPos, YPos)
- {
- var TempName;
- TempName = mName add "_EXPORT" add CurrentStackingOrder;
- this.attachMovie(mName,TempName,CurrentStackingOrder);
- CurrentStackingOrder++;
- this[TempName]._x = XPos;
- this[TempName]._y = YPos;
- return this[TempName];
- }
- function SetText(strTextID, strText)
- {
- this[strTextID] = strText;
- return true;
- }
- _level0.BackgroundCreationCallback(_target);
- CurrentStackingOrder = 100;
-