I have a project which runs when right clicked on an image, all is well apart from one thing.
I would like my project to be set on top of the viewing order.
I don't like it when it is set to "Always On Top"
Been looking through the examples and got this script
It is placed on "Page, On Show" ( There is only one page)
It does nothing when my app runs.
If I set it to
it works but I don' want it on top all the time.
I have tried "NOTTOPMOST" also but to no avail..
I don't know what I am doing wrong..
Anybody help me out here.
I would like my project to be set on top of the viewing order.
I don't like it when it is set to "Always On Top"
Been looking through the examples and got this script
Code:
Window.SetOrder(Application.GetWndHandle(), HWND_TOP);
It does nothing when my app runs.
If I set it to
Code:
Window.SetOrder(Application.GetWndHandle(), HWND_TOPMOST);
I have tried "NOTTOPMOST" also but to no avail..
I don't know what I am doing wrong..
Anybody help me out here.
Comment