April 19, 2024, 02:41:22 am
Welcome, Guest. Please login or register.

Login with username, password and session length
News: Welcome to Revolution X, where Coding meets Graphics.
 
  Home Help Search Arcade Affiliates Staff List Calendar Members Login Register  
  Show Posts
Pages: 1 [2] 3 4 ... 7
16  Official / Announcements / Re: Slayers Shop Added! on: August 07, 2009, 10:38:14 am
It's also on my forum ^_^
17  Official / Announcements / Re: Brand New Index! on: July 27, 2009, 02:30:18 pm
* Andrew is worried about Syntax.

 Shocked
18  Official / Announcements / Re: Brand New Index! on: July 26, 2009, 09:26:54 pm
Holy macrel! Thats so much better! Its all on one page now Cheesy
* Andrew ^5's Slayer

It also shows the views of it! Thats so awesome! Great job guys!  Afro  Smiley
19  Coding Community / Coding Snippets / Re: User Notice Box on: July 14, 2009, 10:54:19 am
Nicely done Agent! And I agree, that was fast!!

Can we add more notices by adding more of these lines? :
Code:
Notice[z++] = ["NAME","REASON"];
20  Official / Announcements / Re: Help us reach our goal by donating! on: July 13, 2009, 09:57:30 am
Who cares? Tongue As long as someone donated  Grin

Thanks to whoever donated!!
21  Coding Community / Coding Snippets / Re: Affiliate Page on: July 07, 2009, 01:11:53 pm
Mojo I looked at your code, tested it up and down, I couldnt fix it.

Did you change a part in the document write part?
22  Coding Community / Coding Snippets / Re: Add more Fonts on: June 28, 2009, 12:24:39 pm
Nicely done Agent Leopard Cheesy
23  Coding Community / Coding Snippets / Re: Block Post Links from Guests on: June 25, 2009, 01:07:05 pm
hmm weird...I tested it before and it worked fine, now its not working for me either.

Nothing in it was edited, I used this code:
Code:
<script>
var ShowGuest = "<font color='red'>[Only registered users can see links. Please <a href='/?action=login'>Login</a> or <a href='/?action=join'>Register</a>]</font>";

if(location.href.match(/topic,/i)){
//Created by Agent Moose (revolutionx.smfforfree3.com)
var name = document.getElementsByTagName("span");
for(v=0;v<name.length;v++){
if(name[v].innerHTML.match(/Hello <b>(.*)<\/b>/i)){
if(!RegExp.$1) $("div.post a").replaceWith(ShowGuest);
};};};
</script>
24  Graphics Community / Dark Themes / Re: Phantom on: June 25, 2009, 12:58:11 pm
Holy macrel Death that theme is beast! Shocked

25  Coding Community / Coding Snippets / Re: Affiliate Page on: June 24, 2009, 12:02:42 pm
I done everything but now theres nothing there  Undecided

this is my code.
Code:
<script type="text/javascript"><!--
var OurAff = "<a href="http://darkilscape.com"><img src="http://i652.photobucket.com/albums/uu250/andrew_98/darkilscapeaffiliate.gif"></a>";

var affy = new Array(); var a = 0;
affy[a++] = ["NAME","DESCRIPTION","BOARD URL","IMAGE URL"];

document.write("<div class='tborder'><div class='catbg' style='padding: 6px; vertical-align: middle;' mce_style='padding: 6px; vertical-align: middle;'>Our Affiliate</div><div><table border='0' width='100%' cellspacing='1' cellpadding='4' class='bordercolor'><tr><td class='windowbg2' width='100%'><center><img src='" + OurAff + "' mce_src='" + OurAff + "' /> <textarea><a href='" + smf_scripturl + "' mce_href='" + smf_scripturl + "' target='_blank'><img src='" + OurAff + "' mce_src='" + OurAff + "' /></a></text" + "area></center></td></tr></table></div></div><br><br>");
for(q=0;q<affy.length;q++){
document.write("<div class='tborder'><div class='catbg' style='padding: 6px; vertical-align: middle; text-align: center;' mce_style='padding: 6px; vertical-align: middle; text-align: center;'>" + affy[q][0] + "</div><div><table border='0' width='100%' cellspacing='1' cellpadding='4' class='bordercolor'><tr><td class='windowbg2' width='100%'><center><a target='_blank' href='" + affy[q][2] + "' mce_href='" + affy[q][2] + "'><img src='" + affy[q][3] + "' mce_src='" + affy[q][3] + "' /></a><br>" + affy[q][1] + "</center></td></tr></table></div></div><br>");
};
// --></script>


Link is:
http://www.darkilscape.com/pages/darkilscape/affiliates.php

You made a mistake in the YOUR IMAGE URL PART. Use this one, it should work fine:
Code:
<script type="text/javascript"><!--
var OurAff = "http://i652.photobucket.com/albums/uu250/andrew_98/darkilscapeaffiliate.gif";

var affy = new Array(); var a = 0;
affy[a++] = ["NAME","DESCRIPTION","BOARD URL","IMAGE URL"];

document.write("<div class='tborder'><div class='catbg' style='padding: 6px; vertical-align: middle;' mce_style='padding: 6px; vertical-align: middle;'>Our Affiliate</div><div><table border='0' width='100%' cellspacing='1' cellpadding='4' class='bordercolor'><tr><td class='windowbg2' width='100%'><center><img src='" + OurAff + "' mce_src='" + OurAff + "' /> <textarea><a href='" + smf_scripturl + "' mce_href='" + smf_scripturl + "' target='_blank'><img src='" + OurAff + "' mce_src='" + OurAff + "' /></a></text" + "area></center></td></tr></table></div></div><br><br>");
for(q=0;q<affy.length;q++){
document.write("<div class='tborder'><div class='catbg' style='padding: 6px; vertical-align: middle; text-align: center;' mce_style='padding: 6px; vertical-align: middle; text-align: center;'>" + affy[q][0] + "</div><div><table border='0' width='100%' cellspacing='1' cellpadding='4' class='bordercolor'><tr><td class='windowbg2' width='100%'><center><a target='_blank' href='" + affy[q][2] + "' mce_href='" + affy[q][2] + "'><img src='" + affy[q][3] + "' mce_src='" + affy[q][3] + "' /></a><br>" + affy[q][1] + "</center></td></tr></table></div></div><br>");
};
// --></script>
26  Coding Community / Coding Snippets / Re: Reason for Edit Karma on: June 21, 2009, 12:42:13 am
Agent? Does this not work if we have it set to our liking? I had it set like this:

Karma Mode: Enable karma total
Karma label: Reputation:
Karma applaud label:
Code:
<img src="http://i305.photobucket.com/albums/nn222/Myrtle_Abigail/rep-1.gif" border="0"/>
Karma smite label:
Code:
<img src="http://i305.photobucket.com/albums/nn222/Myrtle_Abigail/-rep-1.gif" border="0"/>

Would that be OK? Did I do something wrong? Is there something else wrong with the code? Heh, sorry, ive been trying to use it for awhile and it hasnt been workig  Undecided.
27  Coding Community / Coding Snippets / Re: Change "NUMBER comment" Text on: June 19, 2009, 01:31:37 pm
Of course hes an Agent. His new name should be Agent Kangaroo because hes so fast LOL Cheesy
28  Official / Announcements / Re: Affiliates Finally made...once more :P on: June 19, 2009, 10:03:13 am
Nicely done mafioso Smiley

Heres something you can do to make the userbar clickable:


Code:
[url=www.revolutionx.smfforfree3.com][img]http://i291.photobucket.com/albums/ll285/tecatin1/userbar.png[/img][/url]
29  Coding Community / Coding Snippets / Re: Play Arcade Games in Pop-Up Window on: June 17, 2009, 12:55:07 pm
If a member has Pop-Up Blocker on will it still open?

If you have a pop-up blocker it should at least open in a new tab.
30  Official / Announcements / Re: Help us reach our goal by donating! on: June 16, 2009, 11:32:20 am
Ah, ok. Thanks for explaining it Cele Smiley
Pages: 1 [2] 3 4 ... 7
Powered by EzPortal
Bookmark this site! | Upgrade This Forum
SMF For Free - Create your own Forum

Powered by SMF | SMF © 2016, Simple Machines
Privacy Policy