If you still in search of Gmail accounts but you cant get a hold of any just go ahead and log in to the following site: Gmail Invites and type your email address, you will soon receive your invitation and your free 2GB for your email account.
The truth about the moon…
http://moon.google.com/ zoom all the way in
Open A Jump Menu in a new window
This is for Macromedia DreamWeaver, but it can be applied to any Jump Menu using the right JS function. [HTML] original: change to: [/HTML]
Google Site Maps
Will it be for better or for worse? What is Google Sitemaps? Who can use Google Sitemaps? How much does it cost? Why is Google doing this? find the answers to all these questions here
I dont know about you, but I need to get me one of these!
And you thought your images were secure uh?
Despite what anybody tells you – it it IMPOSSIBLE to stop people viewing your code or copying your pictures To save you looking any further – it can’t be done. But if you want to know the reasons why, and you want to try ‘something’ to make it just a little more difficult for people […]
Google Ahead of the game
If you havent heard of it, Google has a new feature called “Google Suggest”. Google can suggest a search term in real time as you type (in regards to what you are looking for of course). This is not your everyday searching engine but it is great to see how this company is always thinking […]
PDF Xtra for Macromedia Director V 7.0
INM’s PDF Xtra is an out-of-the-box solution that displays PDFs documents from Director with the true Adobe Acrobat/Reader look and feel. Simplify content-heavy projects (e-learning projects, e-books, product presentations, reference tools). Display and print stylized fonts, special characters, intricate layouts. Repurpose existing documents from any source. Light-weight download is ideal for Shockwave deployment (on Windows). […]
Fastes way to detect if a radio button has been selected
There are times when you just need to pull the default value of a radio button selection, rather than creating and array and testing from it. The quick and dirty solution is to place a hidden field right before those items you want to send with default values if nothing is selected. [PHP][/PHP]
createTextField and removeTextField
[as]createTextFieldOnce = function(){ trace(“—> Text Field Created”); _root.createTextField(“cMagnitude”,this.getNextHighestDepth(),0,0,100,30); cMagnitude.text = “Hello World”; }; deleteTextField = function(){ trace(“—-> Text Field Deleted”); _root.cMagnitude.removeTextField(); }; createTextFieldOnce(); setInterval(deleteTextField,1000);[/as]