Add Poll
 
Options: Text Color Split Pie
 
 
 
 
 
 
 
 
Poll Comment:
Max 500 characters. Remaining characters:
days and minutes. Leave it blank if you don't want to set it now.

Please type the characters exactly as they appear in the image,
without the first 2 and last 2 characters.
The characters must be typed in the same order,
and they are case-sensitive.
Open Preview Preview

You can resize the textbox by dragging the right or bottom border.
Off Topic Comment Insert Spoiler
Insert Hyperlink Insert FTP Link Insert Image Insert E-mail Insert Media Insert Table Insert Table Row Insert Table Column Insert Horizontal Rule Insert Teletype Insert Code Insert Quote Edited Superscript Subscript Insert List /me - my name Insert Marquee Insert Timestamp No Parse
Bold Italicized Underline Insert Strikethrough Highlight
                       
Change Text Color
Insert Preformatted Text Left Align Centered Right Align
resize_wb
resize_hb







Max 5000 characters. Remaining characters:
Text size: %
More Smilies
View All Smilies
Collapse additional features Collapse/Expand additional features Smiley Wink Cheesy Grin Angry Sad Shocked Cool Huh Roll Eyes Tongue Embarrassed Lips Sealed Undecided Kiss Cry
Topic Summary - Displaying 14 post(s). Click here to show all
Posted by: pyragony54
Posted on: Dec 4th, 2014 at 4:06am
Palette works. Please take into SVN, because I have it permanently integrated into the German language files.
Posted by: Dandello
Posted on: Dec 3rd, 2014 at 9:55pm
In ContextHelp.lng you no longer need the lower section that creates the javascript hash.
This means you can add items to %contextxt by using the
Code (Perl)
Select All
$contextxt{'newmod'} = 'New Mod Context Help'; 

above the 1;

for offtopic it's:
Code (Perl)
Select All
$contextxt{'offtopic'} = "Mark an Off Topic Comment:<br /><br />Select the text: bla bla [SELECT]Hello World[/SELECT] bla bla<br /><br />Click on the \"[TITLE]\" button: [BUTTON]<br /><br /><b>YaBBC Code:</b> bla bla 
Off Topic CommentHello World
bla bla<br /><br /><b>Result:</b> bla bla
Off Topic CommentHello World
bla bla";


And I'm in the middle of updating a 2.6.0 forum that has a lot of mods. Off-Topic is one of them.
Posted by: pyragony54
Posted on: Dec 3rd, 2014 at 9:24pm
I did not mean now. Both write to the ContextHelp.lng and has undergone major change. Let's see, maybe I get it out, yes.
Posted by: Dandello
Posted on: Dec 3rd, 2014 at 9:20pm
Replace the graphics in ModImages and change the graphics names extensions in PostBox.pm to png
Posted by: Dandello
Posted on: Dec 3rd, 2014 at 8:57pm
I've got a fix for the Palette:
In Post.lng find the 1; and add above it
Code (Perl)
Select All
$post_txt{'palette'} = 'Change Text Color';
  



In PostBox.pm find
Code (Perl)
Select All
                <span class="ubbcbutton ubbcbuttonback"><img src="$yyhtml_root/UBBCbuttons/palette1.png" class="cursor" onclick="window.open('$scripturl?action=palette;task=post', '', 'height=308,width=302,menubar=no,toolbar=no,scrollbars=no')" alt="" /></span> 


and replace with
Code (Perl)
Select All
                <span class="ubbcbutton ubbcbuttonback"><img src="$yyhtml_root/UBBCbuttons/palette1.png" class="cursor vtop" onmouseover='contextTip(event, this.alt);' onmouseout='contextTip(event, this.alt);' oncontextmenu='if(!showcontexthelp(this.src, this.alt)) return false;' onclick="window.open('$scripturl?action=palette;task=post', '', 'height=308,width=302,menubar=no,toolbar=no,scrollbars=no')" alt="$post_txt{'palette'}" /></span> 



Now, why this was missing in 2.5AE, I don't know. But this looks like one of those cases where an omisson just kept being carried into new versions.

I haven't had a chance to check the UBBC mods
Posted by: pyragony54
Posted on: Dec 3rd, 2014 at 8:45pm
Oh yeah, spoilers and off-topic must now be adjusted.
Posted by: pyragony54
Posted on: Dec 3rd, 2014 at 8:42pm
Since you can just do anything. It's not vital.
Posted by: Dandello
Posted on: Dec 3rd, 2014 at 8:29pm
The ContextHelp on Palette has never worked as near as I can find. Even though the language is there.
Posted by: pyragony54
Posted on: Dec 3rd, 2014 at 8:07pm
Works. Now it only context-sensitive help. Which is not shown, but is available in the language file.

Code
Select All
'palette1' => "Choose text color:<br /><br />Select the text: bla bla [SELECT]Hello World[/SELECT] bla bla<br /><br />Click on the \"[TITLE]\" button [BUTTON] and pick one of the 228 ready made colors or create a custom color tag\.<br /><br /><b>YaBBC Code:</b> bla bla Hello World bla bla<br /><br /><b>Result:</b> bla bla Hello World bla bla", 



Posted by: Dandello
Posted on: Dec 3rd, 2014 at 7:56pm
in PostBox.pm find
Code (Perl)
Select All
                <span class="ubbcbutton ubbcbuttonback"><img src="$imagesdir/UBBC/palette1.png" class="cursor" onclick="window.open('$scripturl?action=palette;task=post', '', 'height=308,width=302,menubar=no,toolbar=no,scrollbars=no')" alt="" /></span> 


replace with
Code (Perl)
Select All
                <span class="ubbcbutton ubbcbuttonback"><img src="$yyhtml_root/UBBCbuttons/palette1.png" class="cursor" onclick="window.open('$scripturl?action=palette;task=post', '', 'height=308,width=302,menubar=no,toolbar=no,scrollbars=no')" alt="" /></span> 



It's also in the SVN.  Smiley
Posted by: pyragony54
Posted on: Dec 3rd, 2014 at 5:28pm
Okay so far, only the button for the color palette is not displayed correctly.
Posted by: Dandello
Posted on: Dec 3rd, 2014 at 4:43pm
Just fixed in the SVN.  Smiley (And this was AFTER I tested the freaking thing.)
Posted by: Dandello
Posted on: Dec 3rd, 2014 at 4:29pm
ARGH!!! Smiley

The backgrounds are in the download. But it looks like the CSS is wrong.
in default.css find
Code (CSS)
Select All
.ubbcbuttonback {
     background-image: url(./default/UBBC/ubbc2.png);
 } 


replace with
Code (CSS)
Select All
.ubbcbuttonback {
     background-image: url(../../UBBCbuttons/ubbc2.png);
 } 


Posted by: pyragony54
Posted on: Dec 3rd, 2014 at 3:23pm
Now I do not know if I have the correct version.
I downloaded the SVN Build 1611.
I see now UBBC buttons that are not here yet.
In addition, the button for the pallet is missing.
See picture.