Computer Science Canada

How to make the Title of the window change?

Author:  prateke [ Thu Jun 17, 2010 12:02 am ]
Post subject:  How to make the Title of the window change?

I know im supposed to use View.Set ('title:<string>')
But how can i make the title a variable string????

Author:  Insectoid [ Thu Jun 17, 2010 7:35 am ]
Post subject:  RE:How to make the Title of the window change?

var title : string
View.Set ("title:"+title)

Author:  Cezna [ Thu Jun 17, 2010 2:08 pm ]
Post subject:  RE:How to make the Title of the window change?

You have to have:
Turing:

View.Set ("title:" + title_vairable)


Since this has to be in string format, if it's a number, you can also use:

Turing:

View.Set ("title:" + intstr (title_vairable))

Author:  Prince Pwn [ Fri Jun 18, 2010 9:49 pm ]
Post subject:  RE:How to make the Title of the window change?

Thanks for the submission ;D


: