home *** CD-ROM | disk | FTP | other *** search
- function displayTip(text)
- {
- var mytip = this.content.tipField;
- mytip.text.field = text;
- mytip.scroller.init();
- }
- function displayTitle(text)
- {
- var mytip = this.content.tipField;
- mytip.text.title = text;
- }
- function displayImage(contents)
- {
- tip_gfx.loadMovie(contents[0]);
- this.displayTitle(contents[1]);
- var n = 2;
- var text;
- while(n < contents.length)
- {
- text += contents[n] + "\n";
- n++;
- }
- this.displayTip(text);
- }
- tipFile = new _level0.file(this.initialiseFile);
- tipfile.readContents(this,"displayImage");
-