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 - Jish

Pages: [1]
1
PHP / Needa landing page
« on: September 29, 2009, 11:16:25 pm »
Forum Url: www.rakdra.com
Hello...
I'm in need of a landing page, only simple, yet easy to edit..
I need this ASAP, so please, reply to thiss...

2
Java / Void troubles....
« on: September 23, 2009, 06:53:54 pm »
Forum Url: www.rakdra.com/forum/
Hello..

I'm having trouble with this god damn void..
Code: [Select]
public void World2(){
 World2.addActionListener (new ActionListener() {
@Override
public void actionPerformed(ActionEvent e);
//{
int newPort; = "5555";
//set current port to newPort, depends on your client
}
}
}
I'm trying to make it change the port the client is set on when a button is click in the Gui which loads this void..
Code: [Select]
if (cmd.equalsIgnoreCase("World 2"))
            {
World2();
System.out.println("Port = " +port);

            }
is the button..These are in two different classes..

Please, I need help with this ASAP!!

i get these errors..
Quote from: Compiler
client.java:13964: illegal start of type
                int newPort; = "5555";
                             ^
client.java:13964: ';' expected
                int newPort; = "5555";
                              ^
client.java:13966: ')' expected
        }
         ^
3 errors
Press any key to continue . . .

3
General Support / Would this be possible..
« on: August 28, 2009, 05:04:25 pm »
Forum Url: http://www.rakdra.com
Hey all...

I was wondering...Because i got a dynamic runescape signature thing on one of my sites...if it were able to be put into
SMF For Free using the page added thinggie..
is this possible?


[Sig site is www.jish.ulmb.com/rs-sig/]

Thnx, Jish

4
SMF For Free Codes and Support / Vistors/users online
« on: August 27, 2009, 01:54:03 am »
Forum Url: rakdra.com
Hello everybody...

This code with create a small bar at the top of your web page(or bottom if you place in footers). This also notifies you how many visitors are also on the forum.

The code is
Code: [Select]
*<!-- Made by Jish (rakdra.com) and FastOnlineUsers -->
<!-- Start FastOnlineUsers.com -->
<center>Online users :
<script src=http://fastonlineusers.com/online.php?d=www.rakdra.com> </script>
<!-- End FastOnlineUsers.com --><center>
<p>
<font face="Tahoma"><a target="_blank" href="http://www.rakdra.com/"><span style="font-size: 8pt; text-decoration: none">Rakdra Forums</span></a></font>




Preview


I have this on my forums and i find it helpful.

5
Stylesheet Requests and Support / [CSS]Making forum wider?
« on: August 15, 2009, 04:05:36 am »
Forum Url: http://rakdra.smfforfree.com
Check the link...

Well if you know what i mean...Thee width with the forum view...its a little low..im using the endless theme by Crip/Sybil...and idk much about CSS...so thts why im here asking about the width...

In which part of the css would i go to make the forum view wider? Like..This forum

6
Code Requests / [code help]Popup thing[code help]
« on: August 05, 2009, 02:52:50 am »
Forum Url: http://rakdra.smfforfree.com
Hey umm could you tell me  if this would work and if not, edit it for me perhaps?
okay code is
Code: [Select]
<script type='text/javascript'>
  var voteImage = new Asset.image('http://topg.org/banner.jpg');
  var voteLinks = ['http://topg.org/index.php?siteid=343131'];
  var voteNr = 1;
 
  var hiddenNodes = new Array();
 
  window.addEvent('load', function(){
      if(window.ie){
          $$('select').each(function(el){
              hiddenNodes.push(el);
              el.setStyle('visibility', 'hidden');
          });
      }
 
      var blackLayer = new Element('div', {
          'styles': {
              'position': 'absolute',
              'top': '0px',
              'left': '0px',
              'width': window.getScrollWidth(),
              'height': window.getScrollHeight(),
              'background-color': '#000000',
              'opacity': 0.7,
              'z-index': 99998
          }
      }).injectInside(document.body);
     
      var voteContainer = new Element('div', {
          'styles': {
              'position': 'absolute',
              'top': ( window.getScrollTop() + ( window.getHeight() - voteImage.height ) / 2 ),
              'left': ( window.getScrollLeft() + ( window.getWidth() - voteImage.width ) / 2 ),
              'width': voteImage.width,
              'background-color': '#000000',
              'z-index': 99999
          }
      }).injectInside(document.body);
     
      var voteLink = new Element('a', {
          'href': voteLinks[voteNr - 1],
          'target': '_blank'
      }).injectInside(voteContainer);
      voteImage.setStyle('border', '1px solid #FFFFFF').injectInside(voteLink);
 
      var voteNumber = new Element('div', {
          'styles': {
              'position': 'absolute',
              'top': '0px',
              'right': '0px',
              'font-size': 14,
              'font-weight': 'bold',
              'color': '#FFFFFF',
              'padding': '5px'
          }
      }).setText('').injectInside(voteContainer);
     
      var voteAbort = new Element('div', {
          'styles': {
              'color': '#FFFFFF',
              'cursor': 'pointer',
              'text-align': 'center'
          }
      }).setText('').injectInside(voteContainer);
     
      voteAbort.addEvent('click', function(){
createCookie('Rakdra Vote', 'Rakdra Vote', '10');
          if(window.ie) hiddenNodes.each(function(el){ el.setStyle('visibility', ''); });
          blackLayer.remove();
          voteContainer.remove();
          window.removeEvents('scroll').removeEvents('resize');
          Garbage.trash([blackLayer, voteContainer]);
      });
     
      voteLink.addEvent('click', function(){
createCookie('Rakdra Vote', 'Rakdra Vote', '720');
          voteNr++;
          (function(){
              if(voteNr > voteLinks.length){
                  if(window.ie) hiddenNodes.each(function(el){ el.setStyle('visibility', ''); });
                  blackLayer.remove();
                  voteContainer.remove();
                  window.removeEvents('scroll').removeEvents('resize');
                  Garbage.trash([blackLayer, voteContainer]);
              }else{
                  voteLink.href = voteLinks[voteNr - 1];
                  voteNumber.setText('Click here to vote');
              }
          }).delay(10);
      });
     
      window.addEvent('scroll', function(){
          voteContainer.setStyles({
              'top': ( window.getScrollTop() + ( window.getHeight() - voteImage.height ) / 2 ),
              'left': ( window.getScrollLeft() + ( window.getWidth() - voteImage.width ) / 2 )
          })
      });
     
      window.addEvent('resize', function(){
          blackLayer.setStyles({
              'width': window.getScrollWidth(),
              'height': window.getScrollHeight()
          });
          voteContainer.setStyles({
              'top': ( window.getScrollTop() + ( window.getHeight() - voteImage.height ) / 2 ),
              'left': ( window.getScrollLeft() + ( window.getWidth() - voteImage.width ) / 2 )
          })
      });
  });</script>


and

Code: [Select]
<script><div id="vote_popup" style="background: transparent url(http://img197.imageshack.us/img197/4172/transa.png) repeat scroll 0% 0%; width: 100%; height: 100%; position: fixed; left: 0px; right: 0px; top: 0px; bottom: 0px; color: #f0f0f0; font-size: 9px; text-align: center; z-index: 99999; display: none;">
<div style="margin-top: 300px; width: 470px; margin-left: auto; margin-right: auto; display: block; background-color: #000000;"><span style="color: white; font-size: medium;"> </span> <span style="color: white; font-size: large;"><strong>Vote For Rakdra!!</strong> </span>
<br>
<br>
<span style="color: red; font-size: small;"><strong> Please try and vote twice a day! </strong></span>
<p><a onclick="createCookie('voted','yes','720');" href="http://topg.org/index.php?siteid=343131"> <img style="border-color: #000000;" title="Vote for Rakdra" src="http://topg.org/banner.jpg" border="1" alt="" /> </a><br /> <br /><span onclick="hide_vote_popup();"> <span style="cursor: pointer; font-family: Tahoma; font-size: x-small;"> <span style="font-size: xsmall;">Reminder in 10 minutes.</span> </span> </span></p>
 
</div>
</div>
</div>
</div>
</div>
</script>

Thanks,
Jish

7
Bugs / Living avatars error?
« on: August 01, 2009, 06:54:10 pm »
Forum Url: http://rakdra.smfforfree.com
Well when I click on the 'Click here to create or update your Living Avatar.' link it redirects to www.smfforfree3.com/free-forum.php and its really odd, and it does it in living avatar admin..

8
Code Requests / Favicon
« on: July 30, 2009, 02:43:08 am »
Forum Url: http://rakdra.smfforfree.com
umm well is there a code which allows the explorer to show a favicon in the URL bar?

thanks,
 jish

9
Forum Url: http://rakdra.smfforfree.com
Well i got a site...and im setting it up and i was wondering if these smfforfree css would work on the smf 1.1.10? well if they doo tell me please?

the site is www.jish.ulmb.com/forums btw if u wanna see it

10
Stylesheet Requests and Support / [HELP]Adding background to tabs
« on: July 08, 2009, 03:49:10 pm »
Forum Url: http://rakdra.smfforfree.com
Umm, well if u visited my forum , the tabs are just too hard to read[Says my members].

Would anyone know how to add a background to the tabs? I got The vista mimic CSS btw.

11
General Support / Help please!
« on: July 03, 2009, 11:18:00 pm »
Forum Url: http://rakdra.smfforfree.com
please help me. I have a domain and im trying to add to the smfforfree domain manager thing..but the name servers is just pissing me off, idk what to do. im using cheap-domainregistration.com and im not sure what to do.
Quote
If you are hosting your Web site with us (you have a hosting account with us associated with this domain) or you want to Park or Forward your domain, we will automatically set your nameservers for you. 
   
 I want to park or forward my domains. 
 I have a hosting account with these domains. 
   
If you are hosting your Web site with some other company (you have a hosting account at another provider that is associated with this domain), then enter your provider’s nameservers (you must enter at least two nameservers). 
   
 I host my domains with another provider. 
What do i select?

12
Code Requests / [REQ]Alert code[REQ]
« on: June 25, 2009, 04:23:09 am »
Forum Url: http://silverflame.smfforfree.com
If you browse my forum, on everypage i get the popup...
I've got this in footers

Code: [Select]
<script> function MYALERT() {
alert("Welcome to SilverFlame! If you have not registered please, register an account with us, and give us your support by voting for us!"); } MYALERT()
</script>
Any suggestions? I need this fixed fairly quickly:)
Thanks,
Jish

Pages: [1]