This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2019-05-29T06:29:28.503Z","extensionVersion":"v3.2.9"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MaterialApp(home: MyApp())); | |
} | |
void pn(num n) => print(n); | |
class MyApp extends StatelessWidget { | |
@override |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
import 'package:flutter/material.dart'; | |
void main() => runApp(new MyAppWidget()); | |
class MyAppWidget extends StatefulWidget { | |
@override | |
_MyAppWidgetState createState() => _MyAppWidgetState(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance Force | |
SetTitleMatchMode 2 | |
#n:: | |
run notepad | |
Return | |
^!f4:: | |
WinGetTitle sTitle, A | |
; MsgBox %sTitle% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance Force | |
!1:: | |
SetDefaultKeyboard(0x0409) ;; 切換為英文輸入 | |
return | |
!2:: | |
SetDefaultKeyboard(0x0404) ;; 切換為中文輸入 | |
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance Force | |
sFileName := A_Args[1] ;; 傳入參數必須帶有路徑 | |
if (sFileName = "") { | |
MsgBox 必須傳入完整檔名 | |
return | |
} | |
pmsg := ComObjCreate("CDO.Message") | |
;;pmsg.Charset := "UTF-8" | |
pmsg.From := """SendByAHK"" <你的Gmail帳號@gmail.com>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance Force | |
!NumpadAdd:: Send {Volume_Up} ;//Alt + numpad plus | |
!NumpadSub:: Send {Volume_Down} ;//Alt + numpad minus | |
!Numpad0::Send {Volume_Mute} ;//Alt + numpad 0 | |
~MButton:: | |
WinGetClass,sClass,A | |
;//MsgBox class=%sClass% | |
;//FM=7-zip window, TFcFormMain=FreeCommander |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance, force | |
:CO:,pc::電腦 | |
:O:,tw::台灣 | |
:*:,ks::高雄 | |
:O:,addr:: | |
( | |
台北市 | |
信義區 | |
信義路100號 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MaterialApp(home: MyApp())); | |
} | |
void pn(num n) => print(n); | |
// Column -> container | |
class MyApp extends StatelessWidget { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 將DOCX匯出為PDF | |
sFolder := "Z:\DOC" | |
sOutputExt := ".pdf" | |
Loop %sFolder%\*.docx { | |
sInputFilename = %A_LoopFileName% | |
;MsgBox filename=%sPdfFileName% | |
iPos := InStr(sInputFilename, "~") | |
if (iPos = 1) { |
OlderNewer