Jump to content
MakeWebGames

bluegman991

Members
  • Posts

    394
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by bluegman991

  1. bluegman991

    Html 5

    google chrome is like 90% done with html 5 use google chrome in any html5 show off and 90 - 100% of the stuff will work next in line i would say would be safari with 60 - 80% next opera with about 40 - 60% (uses a lot resources) next firefox with about 30 - 50% last internet explorer with 0 - 20% these are rough estimates based on the html5 show offs i tried in all browsers
  2. good stuff :thumbup: it really sounds like he's coughing or something cuz in the other vids he'd be barking all fine then *cough*
  3. yep pretty sure thats javascript does this happen only when you use your search toolbar?
  4. what kind of pop up? javascript java applet firefox notifying you of something your computer notifying you of something about firefox? i possible could you get a print screen of the pop up window
  5. and is that v2 -> v1 or v2 -> lite
  6. when u say v2 to v1 ur talking about mods right? and when u say v1 do u mean mc codes light or v1.1 (just to be sure)
  7. i think it would be a good add i plan on making a few flash games to add to my rpg game as something for players to do. but i barely no the language yet i probably wont be messing with flash much untill i put my game on hosting, since i cant seem to get my crossdomain.xml to work on my xampp server
  8. bert not just looking for styling was looking for an easy way to loop through multiple elements with the same attribute i guess i'll have to stick with looping through them using while(getelementbyid('blue_'+i) !=null) { i++; } until html 5 comes out with getElementsByClassName sucks that its still gonna take a couple of years for html5 is stable
  9. how do i use css to change this? <div>hello</div> to <div id="blue">I Said: Hello</div>
  10. i no js can do it but this is for mass tag use while using the least browser resources if im wrong correct me but say i wanted to go through and do turn this <div id="blue">Hello</div> to this <div id="blue">I Said: Hello</div> each time i wanted to do this for an element i would have to put <script>change_text();</script> or i could loop through each div tag and then for the ones with that id i would execute the function on it why would i want to do that when i could loop through each of my custom tags?
  11. as stated in my last post my goal for custom tags it is to easily loop through the certain tag in javascript using a while statement rather than everytime i need something done to an element having to put <script>document.onload=dothis;</script>
  12. If you think it looks like the grpg engine now u should have seen it before the recode (Looked way more like it plus or minus a few things) In other words i have been playing this game for over 2 years and still play it now eventually would have posted my mc3 referral link but bog beat me to it
  13. not sure exactly what your trying to do but gonna take a stab at it are you trying to make it so like if they have an armor on. while the attacker is fighting they can see a pic of the persons armor?
  14. js is probably the 1 that can do the most with the very least so if the xml things are not possible i would be willing to do something like this in javascript   while(getelementbytagname('mytag') !=null) { do this; }   at the least im hoping there is a way to make custom tags with maximum browser compatibility
  15. doing some googling on this as i wait for replies @Djkanna would i be able to add that snippet in my document then freely be able to add <mytag> to the document I've read something about defining the tag using namespace and xml... Would that be a better way of defining the tag? My next question would be... If i wanted to go beyond styling and make something like this in xml <mytable><mytr><mytd>hello</mytd></mytr></mytable>   ^^i know it can be done in css and probably would not be of much use. i just would like to know if it would be possible in just xml... no css I also would like to know what is, may, or may not be possible via xml made tags so please rate the following on this possibility scale: (Possible, Maybe Possible, Not Possible) the above table idea an input a scroll bar a scroll bar input (best example of it would be something like you use to manage your computers volume) tabmenu i know some of these are possible in javascript but I use a lot of it and would like to have less of this on my pages <div onclick="dothis" onmouseover="dothat" onkeypress="dothis" class="this" style="that"></div>   ^^ and yes i know i can eliminate this by using the javascript eventhandler but then in my js page there would be a lot of this attatchEvent(bloop,blap,bloo); attatchEvent(bloop,blap,bloo); attatchEvent(bloop,blap,bloo);   yea i know few people look at it anyway but it's kind of a pet peeve of mine to have clean css html and js pages Note* i have never used xml except for the purpose to store data so i do not know the possibilities of it
  16. I have posted this to see how and if I should go about making custom HTML tags. I know that you can make a simple custom HTML tag by using the following HTML snippets.   <style>mytag { display:inline-block; }</style> or <mytag style="display:inline-block;>Hello</mytag>   Know Can handle events Will handle standard attributes (id,style,class,title,dir,lang,xml:lang) Don't Know If they will work in all browsers If they will work the same in all browsers Want to Know Are there any security measures i should take? Is there a better way to go about doing this?
  17. ok i just did some testing i never really use number arrays i usually give them some name example $name['name1'] using the single quotes and that is where i was getting my error from so echo "Hello $name[0]"; :thumbup: echo "Hello $name['0']"; :thumbdown: echo "Hello $name[name1]"; :thumbup: echo "Hello $name['name1']"; :thumbdown: i am an organized coder and will continue to use the brackets as it will give me the idea where the variable starts my if statements look like this if($blah==$blah) { ___if($blah==$blah) ___{ ______$what="blah blah blah {$var} blah blah blah \${$money} blah blah"; ___} } usually people code them to look like this if($blah==$blah) { ___if($blah==$blah) { ______$what="blah blah blah $var blah blah blah \$Smoney blah blah"; ___} } *underscores are suppose to be spaces* just my way of coding and seeing what is what (yea i know it's probable wasting diskspace but i have to know where everything's at) the second way it is just hard for me to see what is in which if statement
  18. i have copied no one i get an error if i do not put a { } around array variable on both xampp and web hosting echo "Hello $name"; works :thumbup: echo "Hello {$name}"; works :thumbup: echo "Hello $name[1];" doesnt work :thumbdown: echo "Hello {$name[1]}"; works :thumbup: maniak reason why i wouldnt use you way is because it takes an un noticably larger amount of time to concatenate strings using the "hello".$var."person"
  19. on line 19 change echo "<span style='color:orange'>$TYPE[1]</span> : <span style='color:green'> $DESC[1] </span>";   to echo "<span style='color:orange'>{$TYPE[1]}</span> : <span style='color:green'> {$DESC[1]} </span>";
  20. "." is for class "#" is for id
  21. i know him from scary movie 3 and 4
  22. considering there might be a bug in the source (not much we can do w/o seeing it and doubt that will happen since it was bought) but i was experiencing a problem were if i put a <link> or <style> tag before a <script> tag the <link> and <style> tags would be ignored i was using xampp so it may have just been xampp and i do not know if the problem still exists or if it could be related to yours but try <link> and <style> tags after <script> tags
  23. makes me want to learn c# noticed the compiled part looks really close to flash. do you think they are close enough to do a comparison on the two? learned php,js next step is flash and hoping to go to c# after that or before
  24. actually a lot of free hosts have cron jobs they just do not allow crons under 5 minutes ur best bet tho is changing to timestamp
  25. o i did'nt see the text part ur html was very dirty so im gonna redo it and see if that helps a problem i first seen is that u had a style tag after a <TR> tag in the middle of a table so if this doesnt work u should look through all of ur html and make sure <style>,<link>,<title>,<meta>,<script>,etc... tags are in the <head> tag and not in the middle of any other tag also when using <table> tags and u write text to the table without putting <th> or <td> tags it will be outside of the table put this somewhere in ur head tag <style type='text/css'> .style1 { text-align: center; } </style>   put this where ever u got the peace of code from <div class="redbg"> <div class="red_txt1">Players:<span>$membs</span>Online Now: <span> $online</span></div> <table width='180' border='0' cellspacing='0' cellpadding='0'> <tr><td> <div class='style1'> <h3><u>$gameinfo</u></h3> $players $membs $mal $male $fems $fem</div> </td></tr> </table>
×
×
  • Create New...