
-----------------------------------
prateke
Thu Jun 17, 2010 12:02 am

How to make the Title of the window change?
-----------------------------------
I know im supposed to use View.Set ('title:')
But how can i make the title a variable string????

-----------------------------------
Insectoid
Thu Jun 17, 2010 7:35 am

RE:How to make the Title of the window change?
-----------------------------------
var title : string
View.Set ("title:"+title)

-----------------------------------
Cezna
Thu Jun 17, 2010 2:08 pm

RE:How to make the Title of the window change?
-----------------------------------
You have to have:

View.Set ("title:" + title_vairable)


Since this has to be in string format, if it's a number, you can also use:


View.Set ("title:" + intstr (title_vairable))


-----------------------------------
Prince Pwn
Fri Jun 18, 2010 9:49 pm

RE:How to make the Title of the window change?
-----------------------------------
Thanks for the submission ;D
