How to combine two scripts into one?

How can I combine two AutoHotkey scripts into one?

  • I want to combine the following two scripts into one: http://superuser.com/questions/86392/how-to-replace-spaces-with-dashes http://superuser.com/questions/86376 How can I do this? Note that whenever I use these AutoHotkey scripts with form input, it presses the Enter key automatically which I don't want.

  • Answer:

    Select text, press Alt-R Converts: "My Filename" to "my-filename" "MY FILENAME" to "my-filename" "my filename" to "MY-FILENAME" Preserves original clipboard contents #SingleInstance Force !r:: save := ClipboardAll Send ^c clipwait original_filename := Clipboard StringReplace, hyphen_filename, original_filename, %A_SPACE%, -, All StringLower, hyphen_filename_toggle, hyphen_filename If (hyphen_filename_toggle == hyphen_filename) { StringUpper, hyphen_filename_toggle, hyphen_filename } Clipboard := hyphen_filename_toggle Send ^v Clipboard := save return

metal gear solid at Super User Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.