Advertise Here

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - JayB

Pages: [1]
1
General Chat / Need some help...
« on: June 23, 2009, 07:01:22 pm »
Well I want to start a forum where admins can come and exchange posts and advertise there site to become popular But I just need help thinking of a good name I am completly stuck on this any name suggestions or good ideas you have PLEASE post them.

2
General Chat / General or...
« on: June 23, 2009, 06:04:09 pm »
Which forum type do you like better?...A Gaming communoity or just a General Chat forum?

3
General Chat / Anyone...
« on: June 23, 2009, 03:47:04 pm »
Is anyone here a member of Pogo.com and play on it?

4
SMF For Free Codes and Support / [Code] Image Under Board Name
« on: June 23, 2009, 03:40:21 pm »
Just a simple code I made since I didn't see it posted in the codes board...this code just adds an image under the name of any board on your forum

Inside Board Descriton:

Code: [Select]
<img src="THE IMAGE URL" /><br /> Board Desription Here Enjoy :)


5
SMF For Free Codes and Support / [Code] Elastic band
« on: June 23, 2009, 09:47:55 am »
Well im kinda going post crazy and posting all the codes i've created today but oh well the more the mairier well i've worked on this code for over three days now and just got it done so here it is.


Headers:

Code: [Select]
<STYLE>
v\:* {
 BEHAVIOR: url(#default#VML)
}
</STYLE>
 
<SCRIPT language="JavaScript1.2">
//By:JayB SMF SUPPORT
//Visit http://ThePogoHideout.mysmf.com
//Do not rip and take credit for this code as it took me over three days to make this



 var stringcolor="black" //EDIT black to whatever color that you want the elastic string to be
var ballsrc="IMAGES URL" //IMAGE URL=IMAGE YOU WANT ON THE END ON THE ELASTIC BAND SLING AROUND

///There is no need to edit anything else////////////////

if (document.all&&window.print){
document.write('<IMG id=Om style="LEFT: -12px; POSITION: absolute" src="'+ballsrc+'">')
ddx=0;ddy=0;PX=0;PY=0;xm=0;ym=0
OmW=Om.width/2;OmH=Om.height/2
}

     function Ouille(){
 x=Math.round(PX+=(ddx+=((xm-PX-ddx)*3)/100))
 y=Math.round(PY+=(ddy+=((ym-PY-ddy)*3-300)/100))
 Om.style.left=x-OmW
 Om.style.top=y-OmH
 elastoc.to=x+","+y
      //elastoc.strokecolor="RGB("+x+","+(2*y)+",0)"
 elastoc.strokecolor=stringcolor
     setTimeout("Ouille()",1)   
}
function momouse(){
 xm=window.event.x+5
 ym=window.event.y+document.body.scrollTop+15
     elastoc.from=xm+","+ym
}

  if(document.all&&window.print){
code="<v:line id=elastoc style='LEFT:0;POSITION:absolute;TOP:0' strokeweight='1.5pt'></v:line>"} else {
     code="<v:group style='LEFT:-11;WIDTH:100pt;POSITION:absolute;TOP:0;HEIGHT:100pt' coordsize='21600,21600'><v:line id=elastoc   style='LEFT:0;WIDTH:100pt;POSITION:absolute;TOP:0;HEIGHT:100pt' strokeweight='1.6pt'></v:line></v:group>"}

  if(document.all&&window.print){
document.body.insertAdjacentHTML("afterBegin",code)
document.onmousemove=momouse
Ouille()
}

</SCRIPT>

Here is a preview I can't explain it that well so...

http://JayBsTestSite.smfforfree.com

replace
Code: [Select]
var ballsrc="IMAGES URL" with the image you want on the end of the band
also if you want replace
Code: [Select]
var stringcolor="black" to what ever color you want the band to be.

Enjoy!

6
SMF For Free Codes and Support / [Code] Welcome Cookie
« on: June 23, 2009, 08:27:43 am »
I know the pop up at when you go to the page are kinda annoying but some people like em so here is a welcome cookie


Headers:

Code: [Select]
<html>
<head>
<script type="text/javascript">
//Code Made By:JayB
function getCookie(c_name)
//..http://thepogohideout.mysmf.com
{
if (document.cookie.length>0)
  {
    c_start=document.cookie.indexOf(c_name + "=");
 if (c_start!=-1)
    {
    c_start=c_start + c_name.length+1 ;
      c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length
     return unescape(document.cookie.substring(c_start,c_end));
    }
  }
return ""
}

function setCookie(c_name,value,expiredays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+    ((expiredays==null) ? "" : "; expires="+exdate.toGMTString());
}

  function checkCookie()
{
username=getCookie('username');
if (username!=null && username!="")
  {
    alert('Hello and Welcome back, '+username+'!');
  }
else
  {
  username=prompt('Welcome visitor please type your name and hit enter.',"");
    if (username!=null && username!="")
    {
    setCookie('username',username,365);
    }
  }
}
</script>
</head>
<body onLoad="checkCookie()">
</body>
</html>

If it's your first visit to the forum then a text box will pop up and say "Welcome visitor please type your name and hit enter" once that's done what ever name you type in when you go back to that forum it will say Hello and Welcome back, USERNAME THAT YOU TYPED IN i hope some one finds this useful does take a while to make...

7
SMF For Free Codes and Support / [Code] Email Form on your forum
« on: June 23, 2009, 06:56:02 am »
This is just a simple email form that you can put anywhere on your forum that will allow your users to fill out a form and EMAIL you not PM

Preview:
http://emailform.smfforfree.com

Add this anywhere in your forum

Code: [Select]
<html>
<body>
<form action="MAILTO:YOUREMAIL@YOURMAIL.COM" method="post" enctype="text/plain">

<h3>This form send an E-mail to ME</h3>
Your Name:<br>
   <input type="text" name="name"
 value="your full name" size="30">
<br>
 E-Mail:<br>
<input type="text" name="mail"
value="your e-mail account" size="30">
<br>
Your Message:<br>
 <input type="text" name="comment"
value="yourmessage" size="40">
 <br><br>
<input type="submit" value="Send E-Mail">
 <input type="reset" value="Retry">

</form>
</body>
</html>

Edit:
Code: [Select]
YOUREMAIL@YOURMAIL.COM to your email address
        
Code: [Select]
This form sends an E-mail to ME to what ever you want


8
General Chat / Log in time
« on: June 23, 2009, 05:59:02 am »
What is your Total Time Logged in here at support?

9
Xbox / Xbox 360 / RedFaction Guerilla
« on: June 23, 2009, 03:21:11 am »
Forum Url: http://ThePogoHideout.mysmf.com

Anyone got this yet, is it any good im debating on to get it or not since the first RedFaction I played kinda sucked.

Pages: [1]