Facebook
From Soft Mockingbird, 3 Years ago, written in Autohotkey.
This paste is a reply to Untitled from Small Goose - view diff
Embed
Download Paste or View Raw
Hits: 46
  1. ; 最初のテキストフィールドに移動[Chromium]
  2. #If, WinActive("ahk_class Chrome_WidgetWin_1")
  3.   ^+u::
  4.     ; ホールド対策
  5.     KeyWait, Ctrl, Up
  6.     KeyWait, Shift, Up
  7.     stash := ClipBoardAll
  8.     ; [type='hidden']は除く
  9.     ClipBoard := "const element=document.querySelector(""input:not([type='hidden'])"");element.select();element.scrollIntoView();"
  10.     ClipWait, 1
  11.     Send, ^l
  12.     ; "javascript:"は貼り付けできない
  13.     Send, {vkF2}{vkF3}javascript:
  14.    Sleep, 100
  15.     Send, ^v
  16.     Sleep, 100
  17.     Send, {Enter}
  18.     Sleep, 10
  19.     ClipBoard := stash
  20.     stash := ""
  21.   Return
  22. #If
  23.  
captcha