BabbleBoard Support Forums
What Are YOU Babbling About?
Hello Guest!  |  Home  |  Search  |  Login  |  Register
Posts By Slashman X

Page: 1 2

Help with integration
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Tuesday, Mar 25, 2008 16:19  Trackback URL

BB SDK
Go To Top


Button GDK
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Sunday, Nov 11, 2007 20:12  Trackback URL

Make the "New Posts/No New Posts" o the index a bit more contrasting, I could barely see if there were new posts or not
Go To Top


Help / An Idea
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Wednesday, Nov 07, 2007 16:43  Trackback URL

Cheers, I get you now, you make it sound easy though

Go put it in BB >_>
Go To Top


Help / An Idea
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Wednesday, Nov 07, 2007 16:12  Trackback URL

The "OR" bit was an improvement on the idea, the "comparing tables" is the help bit
Go To Top


Any Chance of...
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Monday, Nov 05, 2007 22:11  Trackback URL

RAW CODE
function edInsertContent(myField, myValue) {
//IE support
if (document.selection) {
myField.focus();
sel = document.selection.createRange();
sel.text = myValue;
myField.focus();
}
//MOZILLA/NETSCAPE support
else if (myField.selectionStart || myField.selectionStart == '0') {
var startPos = myField.selectionStart;
var endPos = myField.selectionEnd;
var scrollTop = myField.scrollTop;
myField.value = myField.value.substring(0, startPos)
+ myValue
+ myField.value.substring(endPos, myField.value.length);
myField.focus();
myField.selectionStart = startPos + myValue.length;
myField.selectionEnd = startPos + myValue.length;
myField.scrollTop = scrollTop;
} else {
myField.value += myValue;
myField.focus();
}
}


I think its that, It Here Somewhere (search for "ed_" and its in those functions)
Go To Top


Any Chance of...
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Monday, Nov 05, 2007 16:11  Trackback URL

I have a fix for this.

If you want it, I'll PM it to you
Go To Top


Language files + image upload
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Friday, Nov 02, 2007 16:32  Trackback URL

Lang Files being put in now?
Go To Top


Cookie Paths
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Monday, Oct 22, 2007 17:59  Trackback URL

Jonny Trackback URL

Well as seen in my new mod, you need to edit the cookie paths to get them to work throughout the site, not just under the /forums directory.

Having the ability to easily change the paths of the cookies can allow people to use the cookies throughout their site


I brought this up before, though it was done as the site wide cookie in V 1.1.1 though
Go To Top


Javascript Help
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Thursday, Oct 18, 2007 18:06  Trackback URL

Jonny Trackback URL

Hmm, have you tried using double quotes around <img .. />?

Edit - Doubt this'll work, but i think you need something like this:
RAW CODE
function edAddTag(button) {
var img = '<img src="kjhfjk" />';
if (edButtons[button].tagEnd != '') {
edOpenTags[edOpenTags.length] = button;
document.getElementById(edButtons[button].id).value = img + document.getElementById(edButtons[button].id).value;
}
}


Tried that before i think, didn't work
Go To Top


Javascript Help
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Thursday, Oct 18, 2007 17:47  Trackback URL

Jonny Trackback URL

Can you not just change 'x' to something like: <img src="icon.png" /> ?


Tried that, it just showed <img .....>

Was wondering if theres any JS syntax that I'm doing wrong lol
Go To Top


Forums -> Site Integration Development
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Thursday, Oct 18, 2007 16:33  Trackback URL

I'll dig it out, the only real difference i could see in it is the use of my limit_string function which limits the amount of chars and if its over a certain amount adds "... Read Full" to it
Go To Top


Forums -> Site Integration Development
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Thursday, Oct 18, 2007 14:59  Trackback URL

I have a function for showing latest topics from a certain forum if you want it
Go To Top


Today's active topics - the format
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Tuesday, Oct 09, 2007 18:50  Trackback URL

"3 New Posts"
External Link

No results
Go To Top


Search page forum links
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Tuesday, Oct 02, 2007 20:44  Trackback URL

Off Topic, but wheres the SEF_URL on the search results?
Go To Top


Todays Active Topics
Slashman X



Role

Posts: 54
Joined: 22 June 2007
Monday, Oct 01, 2007 12:52  Trackback URL

I think he means when creating the topic?

The textfields
Go To Top


 
 
Powered by BabbleBoard v1.1.6
All Content © BabbleBoard Support Forums