How to put more text in the title bar

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
RossG
Posts: 247
Joined: Thu Jan 08, 2015 7:38 am

How to put more text in the title bar

Post by RossG »

Is there a way to put more text in the title bar of
a Win programme than is allowed by the Standalone Application Settings?
Is age an excuse? Eighty-four and counting.
Programming powered by coffee.
Klaus
Posts: 14324
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: How to put more text in the title bar

Post by Klaus »

Hi Ross,

not sure what you mean exactly? Standalone Application Settings?
You can enter text for the TITLE of a stack in the property inspector for that stack.
I think the limit for this is 16bit/64kb.

And what is that good for, if you allow this question? :D


Best

Klaus
RossG
Posts: 247
Joined: Thu Jan 08, 2015 7:38 am

Re: How to put more text in the title bar

Post by RossG »

Klaus

Wanted to put some user info - reg code, days remaining etc.
Is age an excuse? Eighty-four and counting.
Programming powered by coffee.
Klaus
Posts: 14324
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: How to put more text in the title bar

Post by Klaus »

Hi Ross,

aha, hm, better use some custom properties!
That's exactly what they were made for! :D
...
## Set:
set the cRegCode of this stack to Variable_that_holds_the_reg_etc
...
## Get
put the cRegCode of this stack into Variable_that_holds_the_reg_etc
...
You get the picture.


Best

Klaus
RossG
Posts: 247
Joined: Thu Jan 08, 2015 7:38 am

Re: How to put more text in the title bar

Post by RossG »

My solution is:

set the title of me to the title of me & " Hello World"

then when the programme closes reset it from wherever
you put it at programme startup.
Is age an excuse? Eighty-four and counting.
Programming powered by coffee.
Post Reply