On Sep 10, 2011, at 08:52, Chris L wrote:
> There are a few WindowPosition settings in com.barebones.bbedit.plist, but
> none that look like they define the primary window location. Is this fixable?
______________________________________________________________________
Hey Chris,
You can get a hold of windows to move them, but you can't change the Y position?
If this is true then you definitely need to contact support.
If you haven't restarted BBEdit or rebooted your machine for a while those
actions might be in order. (Remember that you can Comand-Option-Q to retain
all windows including the unsaved ones.)
In the meantime this script should move your windows down below the menu bar.
--
Best Regards,
Chris
______________________________________________________________________
tell application "BBEdit"
try
set winList to windows
repeat with i in winList
set winPos to position of i
if item 2 of winPos < 44 then
set item 2 of winPos to 44
set position of i to winPos
end if
end repeat
on error errMsg number errNum
set sep to "=============================="
set e to sep & return & "Error: " & errMsg & return & sep & return ¬
& "Error Number: " & errNum & return & sep
beep
display dialog e
end try
end tell
--
You received this message because you are subscribed to the
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
<http://groups.google.com/group/bbedit?hl=en>
If you have a feature request or would like to report a problem,
please email "[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>