ID:140954
 
Code:
winset(usr,"default.credits","text=Hello World")
fade.Text(usr, "default.credits", "#FFFFFF", 32, 32)


Problem description:
I'm using Foomers Fade library (Very helpful I must add) I've had no problems with the other included fade effects but I'm having problems with fading Text.

On my interface I have a label called credits which has the text "Hello World" set as #000000 (Black) along with the background being black. When I use the fade.Text() to fade it into white only "Hello" appears and "World" doesn't.

You need quotes around "Hello World". So, "text='Hello World'"
In response to Garthor
Garthor wrote:
You need quotes around "Hello World". So, "text='Hello World'"

Thanks, it fixed it.