Our Scripts Vault contains many game scripts that you can use to create your own game!
Correct me if I am wrong, because i was planning on doing iframes in my UI until i had done some reading on them, and for SEO its also a problem because most search engines cannot read them, which is why i switched to <div> instead
yes but then divs wouldn't allow for the entire web page to exist in part of the page then would they?
And currently i'm using it as part of the developer page. So honestly no Search engine should remotely be near that page. Also inside of the game world i believe i'm still going to use them so that i can do things with it w/o having to completely reload entire pages. Mainly such as, little "psuedo popups" like what you'd normally get in a game that kinda goes over the background of it all. It'll display some info w/o having to take out the entire back page. And web based mmos shouldn't really imho have more than their few front pages for everyone to see. So using iframes inside of the game itself doesn't seem bad to me at all.
I can send you pics of my cocks if you want reference.
Quote from: 133794m3r on February 02, 2010, 10:19:56 PMyes but then divs wouldn't allow for the entire web page to exist in part of the page then would they?Actually, you can do that. You just need a simple ajax call, nothing more.Quote And currently i'm using it as part of the developer page. So honestly no Search engine should remotely be near that page. Also inside of the game world i believe i'm still going to use them so that i can do things with it w/o having to completely reload entire pages. Mainly such as, little "psuedo popups" like what you'd normally get in a game that kinda goes over the background of it all. It'll display some info w/o having to take out the entire back page. And web based mmos shouldn't really imho have more than their few front pages for everyone to see. So using iframes inside of the game itself doesn't seem bad to me at all.Why?Unless you are using Comet with Iframe updating I would suggest that you wouldn't use them. You can do everything you could do with them with ajax. And it would be faster, as the whole pages (css and javascripts) would be loaded to the screen while making ajax call would limit it to the html (or xml or json).
The only "gotcha" I have with AJAX is that it doesn't work if the user has JavaScript disabled (because it is just a JavaScript library). So, it's especially great in controlled environments (admin panels where the number of visitors is limited or similar) however, if the component is meant to be accessed by site visitors, make sure it at least is capable of graceful degradation.
Sounds to me maybe like your partnering with the wrong person, unless he intends to catch you up to speed on what it is he's doing,how it works etc
Really, now. Ajaxed UI is for more than just chat. It will give you more flexible and dynamic layout and opens up possibilities for things as MoveableMap (search the forums), Json based MVC structure and much much more. Making "ordinary" layout is most of the times just a waste of bandwith, for example when in your game a player heals x hit points why you would load the whole page when all you need is to update a line or 2? Not to mention that the players won't need that fast connection then, as they need to load the page just once.People without js are less than 3% of all users, are you going to see all the trouble just for them?
I'm going to try to make the site atleast work w/o javascript. It won't have the auto-refreshing chat, or some of the other more fancy features but they'll still be able to use it nonetheless.
Making "ordinary" layout is most of the times just a waste of bandwith, for example when in your game a player heals x hit points why you would load the whole page when all you need is to update a line or 2?
People without js are less than 3% of all users, are you going to see all the trouble just for them?
JGadrow, does your father play browser based games?133794m3r, where do you want your focus to be? Website accessibility or game creation? There is no one wrong among the posters in this topic but you need to see it in your context.Dsheroh says it's not much of a hassle to do it for both js users and those who have js disabled. That's me be true for en experienced programmer but I can insure you it won't be that easy for you. It's absolutely possible, but when will you be able to do some actual game design? If you are new to PBBG development and programming you can get burned out pretty quickly.So if you want to stress on improving your programming skills, go the hard way. If you want to improve your game creation skills, go the easier way.
JGadrow, does your father play browser based games?