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)
- {
- fscommand("SHOWGRAPHIC",mName);
- var TempName;
- TempName = mName add "_EXPORT";
- this.attachMovie(mName,TempName,CurrentStackingOrder);
- CurrentStackingOrder++;
- this[TempName]._x = XPos;
- this[TempName]._y = YPos;
- }
- function ShowTextScroller(ScrollerName, PlaceNumber)
- {
- var NewMClip;
- var TempPlaceHolder;
- NewMClip = ScrollerName add "_EXPORT";
- TempPlaceHolder = ScrollerName add PlaceNumber;
- this.attachMovie(ScrollerName,NewMclip,CurrentStackingOrder);
- CurrentStackingOrder++;
- this.NewMClip._x = TempPlaceHolder._x;
- this.NewMClip._y = TempPlaceHolder._y;
- }
- function SetText(strTextID, strText)
- {
- this[strTextID] = strText;
- return true;
- }
- _level0.BackgroundCreationCallback(_target);
- CurrentStackingOrder = 100;
-