Skip to main content

Posts

Showing posts with the label creating

Creating Mobile Games Using Java ME Platform to Put the Fun into Your Mobile Device and Cell Phone

Creating Mobile Games: Using Java™ ME Platform to Put the Fun into Your Mobile Device and Cell Phone is a practical build-it-yourself mobile Java games book with lots of complete working code and advice: Shows you how to create a basic game and make it a professional one (by adding a pro look-and-feel by writing your own menus or using the open source J2ME Polish, and enabling marketing/billing from your own web site) Demonstrates Wireless Messaging and other optional APIs (using SMS, PIM, File Connection, Bluetooth, and so forth in a multiplayer game) Covers the new MIDP3 What you’ll learn Start using the MIDP2 and MIDP3 in the newly open sourced Java ME Games API. Add a truly professional look-and-feel to your Java ME games. Use threads, tones, and other media. Store and retrieve data and enable networking. Create advanced interactive messaging with optional APIs for multiplayer gaming. Explore a complete business model for independent developers (distributing their own games) as wel...

Creating a simple dropdown with jQuery

Source jQery <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){     $("ul#menu > li").hover(       function(){         $(this).addClass(hover);         $(this).children(ul).stop(true,true).slideDown("slow");       },       function(){         $(this).removeClass(hover);         $(this).children(ul).slideUp("slow");       }     ); }); </script> Source CSS <style type="text/css"> ul#menu, ul#menu ul { list-style:none; margin:0; padding:0; } ul#menu li { float:left; position:relative; display:inline-block; } ul#menu li a { display:block; padding:3px 8px; color:#FFF; background-color:#333; text-de...