@DaveM59
Thx for the compliment.

About your links/urls:
Simply change
style.css within the
phpbb subfolder. Find the code
Code:
a.postlink:link {text-decoration: none; color : #006699;}
a.postlink:visited {text-decoration: none; color : #5493B4;}
a.postlink:hover {text-decoration: underline; color : #DD6900;}
Simply change it to your needs.
text-decoration is for the underlining and
color is for the font color. Any questions?
Quote:
Bleepingcomputer also supports a different set of smileys. I think I may be able to figure out how to customize that.
Is it just other pictures for the same emoticons or do you have additional smiley strings?
The pictures for already existing smiley strings could be changed within BBCodePreview.ahk (You'll need the source code for this) starting at line 393. It's commented with
Code:
; Convert Smileys ###########################################################
Change the URLs within the StringReplace commands and reference other smileys:
Code:
StringReplace, bbcode, bbcode, :arrow:, <img src="phpbb/smileys/icon_arrow.gif" alt="Arrow" />, All
This changes only the Preview mode. To change the appearance of the GUI you would have to make changes to
BBCodeEditor.ahkThe smiley icons are assigned beginning from line 1022
Code:
; Assign icons to buttons
SetButtonGraphic(WinHandle, "1", A_ScriptDir "\phpbb\ico\smileys\icon_biggrin.ico", 16, 16, IMAGE_ICON)
SetButtonGraphic(WinHandle, "2", A_ScriptDir "\phpbb\ico\smileys\icon_smile.ico", 16, 16, IMAGE_ICON)
SetButtonGraphic(WinHandle, "3", A_ScriptDir "\phpbb\ico\smileys\icon_sad.ico", 16, 16, IMAGE_ICON)
...
You'll need .ico files for this.
Adding new smileys means more work to do. You would have to add code to GUI4. Adding more buttons, glabels, subroutines, copy the icons and gifs (for preview) within the correct folders, ...
Tell me if this is what you need. I'll try to explain the steps needed for this.
@roundfileI'll check you suggestion. When I use the "URL descriptive" feature the URL is already copied to the clipboard so that I can paste it within the
InputBoxQuote:
... is to use highlighted text, if any
You mean highlighted text within the edit control of the BBCodeWriter GUI?
@debakel3
I answered you posting in the
german forum
___________________________
Cheers
AGU