In version 6.1, found a slight problem with the lower right buttons when resizing the window by dragging the lower edge. Not sure this is the correct fix but it seems to work by changing this
Code:
Anchor("BtnSend" , BG1X, BG3Y, "" , "" , 1 )
Anchor("BtnPreview" , BG2X, BG3Y, "" , "" , 1 )
Anchor("BtnReset" , BG3X, BG3Y, "" , "" , 1 )
to this
Code:
Anchor("BtnSend" , BG1X, BG3Y, "" , "" )
Anchor("BtnPreview" , BG2X, BG3Y, "" , "" )
Anchor("BtnReset" , BG3X, BG3Y, "" , "" )
Also, two other general suggestions not related to a specific version. First, with Firefox I sometimes find that the first time opening a preview window in the browser, the BBCodeEditor window does not minimize automatically. It seems to be a timing problem and this mod resolves it.
Code:
; Check whether BBCodeWriter already created a browser window
IfWinExist, BBCodeWriter Preview
{
WinActivate, BBCodeWriter Preview
Send, {F5}
}
Else
{
; Run defined browser with preview page
Run, %BrowserExe% "%A_WorkingDir%\preview.html"
WinWait, BBCodeWriter Preview
WinActivate, BBCodeWriter Preview
}
Return
Finally, I'm uncoordinated and in the past have accidentally hit the reset button. I made this mod to protect me from myself.
Code:
BtnReset:
MsgBox, 1,, Are you sure you want to clear this window?
IfMsgBox, Cancel
Return
GuiControl, 1:Focus, EdtComment
GuiControl, 1:Text, EdtComment
Return
Cheers,
-rf