HOW TO CUSTOMIZE?
It is assumed that you have download the source zip named dynamic-text.zip
- File Name and TEXT Color
sprite name loading the PLUGIN will be as Filename,TEXTColor
File name must be widthout \".txt\". for example if you need to load myFile.txt using blue textcolor, then you will name the sprite as myFile,0x0000EE.
The TEXTColor must be hex value such as 0x0000EE for blue.
- Add/Remove ScrollBars
Scrollbars are already added to the source file. If you want to remove them,
simply delete sub sprites named down and up.
- While changing data File name or TEXTColor
If you are using scrollbars in text loader then change the Target Target action of
each button (up, down)
for example your sprite name is file1,0x0000EE
for scroll up go into sprite up/u, use
| CODE |
Tell Target -> ../../file1,0x0000EE
Goto Label scrollup
|
for scroll down go into sprite down/d, use
| CODE |
Tell Target -> ../../file1,0x0000EE
Goto Label scrolldown
|
|