On Sep 27, 2021, at 15:42, François Schiettecatte <[email protected]> 
wrote:
> And you can also do Synchro Scrolling…


Hey François,

Thanks for mentioning that.  If I knew about it I'd forgotten.

Hey Jagrut,

François mentioned the arrange command, but if you need something more 
customized you can use AppleScript.

--------------------------------------------------------
# Auth: Christopher Stone <[email protected]>
# dCre: 2021/09/27 18:24
# dMod: 2021/09/27 18:24 
# Appl: BBEdit
# Task: Set Bounds of Windows 1 and 2.
# Libs: None
# Osax: None
# Tags: @Applescript, @Script, @BBEdit, @Window, @Bounds
--------------------------------------------------------

tell application "BBEdit"
    
    tell window 1
        set its bounds to {0, 45, 720, 900}
    end tell
    
    tell window 2
        set its bounds to {720, 45, 1440, 900}
    end tell
    
end tell

--------------------------------------------------------

This is just a simple example.  You can get quite creative in how you position 
your windows if you care to.

--
Best Regards,
Chris

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "[email protected]" rather than 
posting here. Follow @bbedit on Twitter: <https://twitter.com/bbedit>
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/027F348D-4D4E-4277-9AAE-4A12AB1B0E40%40gmail.com.

Reply via email to