Skip to content

Instantly share code, notes, and snippets.

@jimfoltz
Created October 6, 2018 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimfoltz/f7525da9f11629372d67a23017a74b4c to your computer and use it in GitHub Desktop.
Save jimfoltz/f7525da9f11629372d67a23017a74b4c to your computer and use it in GitHub Desktop.
Launch SketchUp from Command Line & Auto-click Splash Screen
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
;SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Versions := {}
Versions[17] := "C:\Program Files\SketchUp\SketchUp 2017\Sketchup.exe"
Versions[16] := "C:\Program Files\SketchUp\SketchUp 2016\Sketchup.exe"
;RubyStartup := ""
If FileExist("bootstrap.rb")
RubyStartup := " -RubyStartup " A_WorkingDir "\bootstrap.rb "
f := A_Args[1]
if f <>
path := A_WorkingDir "\" f
cmd := Versions[16] RubyStartup path
Run, %cmd%
WinWaitActive, Welcome to SketchUp ahk_class #32770,,7
SetControlDelay -1
ControlClick, Start using SketchUp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment