; AHK BBCodeWriter - An offline BBCode editor ; Copyright (C) 2006 AGermanUser ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation; either version 2 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program; if not, write to the Free Software ; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ; Delete word by word by pressing Ctrl + Backspace #IfWinActive, AHK BBCodeWriter ahk_class AutoHotkeyGUI ^BS:: Send, ^+{LEFT} Send, {DEL} Return ; phpbb Alt-Hotkeys !b::GoSub, BtnBold !i::GoSub, BtnItalic !u::GoSub, BtnUnderline !q::GoSub, BtnQuote !c::GoSub, BtnCode !l::GoSub, BtnListUnNum !o::GoSub, BtnListNum !p::GoSub, BtnImage !w::GoSub, BtnUrl ; Restore BBCodeWriter.ini by using standard values ^+END:: IniWrite, 1, BBCodeWriter.ini, CstmToolBar, CstmBarEnabled IniWrite, 331, BBCodeWriter.ini, GuiPosition , X_Pos IniWrite, 339, BBCodeWriter.ini, GuiPosition , Y_Pos IniWrite, 610, BBCodeWriter.ini, GuiDimension, W_Gui IniWrite, 323, BBCodeWriter.ini, GuiDimension, H_Gui IniWrite, 69, BBCodeWriter.ini, EditSize , Y_Edt IniWrite, 600, BBCodeWriter.ini, EditSize , W_Edt IniWrite, 203, BBCodeWriter.ini, EditSize , H_Edt IniWrite, 5, BBCodeWriter.ini, EditSize , X_Edt IniWrite, 600, BBCodeWriter.ini, GroupBoxSize, W_Grp IniWrite, 281, BBCodeWriter.ini, CheckboxYPos, Y_Chk IniWrite, 278, BBCodeWriter.ini, DDListYPos , Y_DDL IniWrite, 280, BBCodeWriter.ini, BtnSigYPos , Y_BSg IniWrite, 405, BBCodeWriter.ini, BtnMainGui , X_BG1 IniWrite, 470, BBCodeWriter.ini, BtnMainGui , X_BG2 IniWrite, 545, BBCodeWriter.ini, BtnMainGui , X_BG3 IniWrite, 277, BBCodeWriter.ini, BtnMainGui , Y_BG3 IniWrite, 580, BBCodeWriter.ini, BtnMainGui , X_BG4 ExitApp Return