home *** CD-ROM | disk | FTP | other *** search
- /* Blank line manager
- ==================
- Squeezes, stretches or removes blank lines
-
- Macro for FinalWriter
- © 1996 John Filsak */
-
- options results
- cr='0a'x
- para=1;true=1
- q='"';s=' '
-
- showmessage 2 0 '"Blank line manager." "Do you want to delete" "or adjust blank lines?" "Delete" "Adjust" ""'
- del=result
- if del=1 then message=q||"Removing blank lines."||q||s||q||q||s||q||q||s||"OK"||s||"Cancel"||s||q||q
- if del=2 then do
- showmessage 1 0 '"Blank line adjustment." "Do you have a style defined for this?" "" "Yes" "No" ""'
- choice=result
- if choice=1 then styleway=true
- if styleway=true then do
- requesttext '"Reformatting by style" "What is the name of your style?" "Para space"'
- stylename=result
- styletit=stylename||" style."
- message=q||"Reformatting all blank lines using"||q||s||q||styletit||q||s||q||q||s||"OK"||s||"Cancel"||s||q||q
- end
- else do
- requesttext '"Enter new size for your blank lines:" "Points" "8"'
- lineheight=result
- linetit=lineheight||" points."
- message=q||"Resizing all blank lines to"||q||s||q||linetit||q||s||q||q||s||"OK"||s||"Cancel"||s||q||q
- end
- end
- showmessage 1 0 message
- choice=result
- if choice=2 then exit
-
- ctrldown;altdown /*Go to bottom of text*/
- cursor down /*and get number of paragraphs,*/
- ctrlup;altup /*putting number in 'paras' variable*/
- status parapos
- parse var result paras rubbish
-
- do while para<paras
- movetopara para 0
- extract
- testchar=result
- if testchar=cr then select
- when del=1 then do
- delete
- paras=paras-1
- end
- when styleway=true then stylesheet stylename
- otherwise do
- cursor right
- status spacing /*This method mucks about with*/
- spcing=result /*the line spacing of the next*/
- shiftdown /*paragraph, so we find out what*/
- cursor left /*it is, and restore it at the*/
- spacing variable /*end of the routine.*/
- leading lineheight
- shiftup
- movetopara para+1 0
- spacing spcing
- end
- end
- para=para+1
- end
- showmessage 1 0 '"All done!" "Thank you for using this macro." "© 1996 John Filsak" "OK" "" ""'
-
- /*John Filsak
- 88 Cantrell Road
- Bulwell
- Nottingham
- NG6 9HJ
- 0115 976 3868*/
-