cancel
Showing results for 
Search instead for 
Did you mean: 

Personas 3.0: Title Bar Scripting

0 Kudos

Hello All,

In my current personas design, I want to move my Title Bar to different location which will help to enhance by wireframe Design.

Can any one help me in scripting the same, as in personas 3.0 the title bar can't move from the fixed location.

Thanks,

Chakri.

Accepted Solutions (1)

Accepted Solutions (1)

tamas_hoznek
Product and Topic Expert
Product and Topic Expert
0 Kudos

You could copy the title text into a label that you place anywhere you want on the screen, attach this script to the onLoad event of the screen and then hide the standard title bar.

Trouble is, you'd have to do this on every single screen... not sure if it's worth the effort but if you insist on it, the script would be something like this:

title=session.findById("wnd[0]/titl").text;

session.findById("wnd[0]/usr/lblPersonas_1452143042839").text=title;

0 Kudos

Hello Tamas,

I tried it doing onload event but it does not work. I think onload functionality is not working.

Do I need to do some setting.

Thanks,

Chakri.

tamas_hoznek
Product and Topic Expert
Product and Topic Expert
0 Kudos

Verify if your system is fully up-to-date based on the master note.

The example above works fine for me.

0 Kudos

Thanks Tamas.

It works.

Answers (0)