Ajax/Javascript Vid Tuts

Post all your tuts or request for tuts here.
Post Reply
User avatar
hallsofvallhalla
Site Admin
Posts: 12031
Joined: Wed Apr 22, 2009 11:29 pm

Re: Ajax/Javascript Vid Tuts

Post by hallsofvallhalla »

done!
User avatar
OldRod
Posts: 1321
Joined: Sun Sep 20, 2009 4:26 pm

Re: Ajax/Javascript Vid Tuts

Post by OldRod »

Great job Halls! :)
User avatar
hallsofvallhalla
Site Admin
Posts: 12031
Joined: Wed Apr 22, 2009 11:29 pm

Re: Ajax/Javascript Vid Tuts

Post by hallsofvallhalla »

thanks, I hope they help get people started on the right track.
User avatar
OldRod
Posts: 1321
Joined: Sun Sep 20, 2009 4:26 pm

Re: Ajax/Javascript Vid Tuts

Post by OldRod »

Only had a chance to watch the first one so far... do later ones show you how to get free time to actually work on a project? :lol:
User avatar
hallsofvallhalla
Site Admin
Posts: 12031
Joined: Wed Apr 22, 2009 11:29 pm

Re: Ajax/Javascript Vid Tuts

Post by hallsofvallhalla »

those are videos I need to watch!
alexrules01
Posts: 175
Joined: Sun Oct 11, 2009 9:33 am

Re: Ajax/Javascript Vid Tuts

Post by alexrules01 »

Oh wow new tutorials! Once my internet usage is reset, i will have to watch them!
User avatar
UnknownUser
Posts: 51
Joined: Tue Sep 08, 2009 2:54 pm

Re: Ajax/Javascript Vid Tuts

Post by UnknownUser »

Hey guys haven't been active for a long time here on the forums, but i decided to login again and join the party ;)
i will start of with a simple share to all of you ;) (sorry if this has already been shared).

in the netmap.js file, open it up -> search for ->

function getgoods(goods,tag)
{
above that make some space and add this,

Code: Select all

document.onkeyup = KeyCheck;       
 
	function KeyCheck(e)
		{
		   var KeyID = (window.event) ? event.keyCode : e.keyCode;
 
		   switch(KeyID)
		   {
 
		      case 37:
		      traveled(4);
		      break;
 
		      case 38:
		      traveled(1);
		      break;
 
		      case 39:
		      traveled(2);
		      break;
 
		      case 40:
                      traveled(3);
		      break;
 
		   }
		}
Happy times now you can walk with your keys ;)
and you can search for key codes for AWSD keys then you can walk with that.
And also, this is simple as hell & I'm sure you can do it better etc, but
this does the trick for now :) i might edit it to make it better or wait to see if others change it :)

PS: I'm back ;) cya at the forums ppl!

-UnknownUser
When a programming language is created that allows programmers to program in simple English, it will be discovered that programmers cannot speak English. ~Author Unknown
User avatar
UnknownUser
Posts: 51
Joined: Tue Sep 08, 2009 2:54 pm

Re: Ajax/Javascript Vid Tuts

Post by UnknownUser »

Hello heres an update post, working on a chat system for this :) //it's not near ready still need to change, pimp it etc :) (add time/name etc etc)..
heres how it looks now not that big of a deal yet :)
full-size-pic:http://oi51.tinypic.com/13z48ir.jpg
Image
When a programming language is created that allows programmers to program in simple English, it will be discovered that programmers cannot speak English. ~Author Unknown
User avatar
hallsofvallhalla
Site Admin
Posts: 12031
Joined: Wed Apr 22, 2009 11:29 pm

Re: Ajax/Javascript Vid Tuts

Post by hallsofvallhalla »

nice stuff!
Post Reply

Return to “Tutorials”