--- In [email protected], "majesticartz" <[EMAIL PROTECTED]> wrote:
>
> Greetings,
> 
> I've had this problem for a while now and I need to conclude the 
> matter.
> 
> Objective:
> I need to lock the position of several powerpro bars.
> 
> Problem:
> I use float mode to position my bars (while holding crtl button down) 
> and when I have it PIXEL PERFECT and then change the positonal 
> behavior to "lock" BOOM! the bar moves (sometimes just a few pixels, 
> sometimes to the previously locked position).
> 
> Which config file stores bar positional coordinates so I can just 
> hardcode them?

You cannot easily hard code them as they are binary and not stored as
simple pixel numbers but rather calculated  values to make them
resolution independent.

The Locked behavior does not happen in my tests.  One possibly reason
is that your floating positions are near the screen edge so that the
bar ends up a pixel or two off screen.  Try checking Command
Lists|setup|all bars|allow off screen bars.

If that does not work, here are some manual ideas:

Idea 1.
win.move("barname", left, top)  //e.g. win.move("mybar", 100, 200)
will move any bar, including locked.  Create a script of these tied to
a hot key to position your bars.

Idea 2.
Export the bar config to an ini file and manually set the position. 
Delete from pcf and import at startup of powerpro instead using
cl.import as startup scheduled event.

Idea 3:  
Just leave the bars as floating.  If resizing is an issue, disable by
using bar size from sume of buttons. Create a hot key as per 1 to
reposition if you accidently move somehow.


>


Reply via email to