Resizing Creator Window

chris denesha cmd-list at 99main.com
Tue Sep 19 13:20:33 CDT 2006


At 04:07 PM 8/30/2006 -0500, you wrote:
>Document windows will be opened at the size they were last saved at,  
>so yes, if all the templates are saved on a machine with a tiny  
>monitor, then they will open at that size. One thing that you could  
>do is have an attached script on everyone's machine that zooms the  
>window when you open any document. Save this into a script in the  
>Attached Scripts folder:
>
>using terms from application "MultiAd Creator Pro"
>     on opened doc
>         set zoomed of layout window 1 of doc to true
>     end opened
>end using terms from
>
>Keep in mind that each window can only be as big as the page size +  
>the pasteboard size (which is set in the General panel of Document  
>Settings). So if you have tiny documents for small ads, say 1"x1",  
>and your pasteboard size is 2"x2" on each side, then the window will  
>zoom to 5"x5" (page size + (pasteboard size * 2)) rather than fit to  
>fill the screen - screen margins - palettes. 

This is exactly what I have set up here (except I didn't know about the pasteboard part - we have ours at 8" for some reason so it always looks full screen).  In case anyone wants a bigger script:

-- This script is designed to quickly resize the current C7 window to something that displays to your current monitor size.
-- Name it with a space in front so it'll float to the top. Place it in Creator's 'MultiAd Creator Add-Ons' -> 'Script Menu Folder' 
-- and place an alias in 'MultiAd Creator Add-Ons' -> 'Attached Scripts'.

using terms from application "MultiAd Creator Pro"
         
         on run
                 if exists document 1 then
                         --tell application "MultiAd Creator Pro"
                         set zoomed of layout window 1 of document 1 to true
                         --end tell
                 else
                         display dialog "This script requires an open document." buttons {"OK"} default button "OK" with icon stop
                 end if
         end run
         
         on opened theDoc -- doc has actually been opened
                 --tell application "MultiAd Creator Pro"
                 set zoomed of layout window 1 of document 1 to true
                 --end tell
         end opened
         
end using terms from





chris denesha 
Advertising & Telephone Systems Support, IT 
The Day Publishing Company 
(860)701-4485; OR (800)542-3354, X4485 
c.denesha at theday dot com - Work email
cmd-list at 99main dot com - List email



More information about the Creator mailing list