Thursday, April 9, 2009

Paint.NET is free image and photo editing software

Paint.NET is free image and photo editing software for computers that run Windows. It features an intuitive and innovative user interface with support for layers, unlimited undo, special effects, and a wide variety of useful and powerful tools. An active and growing online community provides friendly help, tutorials, and plugins.

It started development as an undergraduate college senior design project mentored by Microsoft, and is currently being maintained by some of the alumni that originally worked on it. Originally intended as a free replacement for the Microsoft Paint software that comes with Windows, it has grown into a powerful yet simple image and photo editor tool. It has been compared to other digital photo editing software packages such as Adobe® Photoshop®, Corel® Paint Shop Pro®, Microsoft Photo Editor, and The GIMP.


Go to the Project site:

Get Paint.NET!

Project Management Software

A simple and easy to use project management system.

Easily create and edit project details with web-based project management software. Customize your project categories and the project status options to you needs. Setup admin and regular users for multipe group project needs. Project management was kept very simple to make easy and quick to use. Auto database setup file makes setting up your project management system a snap.


Go to the Development site :

Download the project:


Monday, April 6, 2009

Flash: rotate object following mouse

Reader Rating: 6.6

1. Create a movieclip as you prefer. then give the movieclip an instance name --example my instance name : 'follower'.

2. On first frame, insert the following action:

//sets the speed of rotation
rotation_speed = 5;
//sets the elasticity the higher the value the higher the elasticity
elasticity = .1;
_root.onEnterFrame = function()
{
 with (follower) {
   _rotation += rotation_speed;
   _x += (_root._xmouse-_x)*elasticity;
   _y += (_root._ymouse-_y)*elasticity;
 }
};

You are done,  Test the movie. Remember, you can increase the rotation_speed variable to create different effects.

Friday, April 3, 2009

What is JQS.Exe?

If you open the Windows Task Manager you might notice the process jqs.exe that is running with a low priority. Jqs.exe uses about 1.5 Megabytes of computer memory and 2 Megabytes of virtual memory while running. It also initiates I/O processes frequently if those columns are activated in the Task Manager.

Experienced computer users might guess that the process is related to Java and that is the case indeed. Jqs.exe is the Java Quick Starter which was designed to improve the startup time of Java applets and applications by prefetching Java Runtime Environment files frequently into memory. That’s mainly interesting for users who work with Java on a day to day basis. Everyone else might be better of disabling the Java Quick Starter. Think of a user who encounters one Java applet per month (or week), would it make sense to run the process all the time because of those few instances where it might start the application or applet faster?

Jqs.exe is definitely querying the Windows Registry for instance. The performance increase might not be huge but you will free up some computer memory and some I/O processes on the computer system.

jqs exe

Now, if you want to disable the Java Quick Starter process you can do that in the Windows Control Panel. You find a Java entry there which will open the Java Control Panel.

A click on Advanced and the selection of Miscellaneous will display the activated Java Qucik Starter entry. Uncheck the box to disable the process. This will be visible in the Windows Task Manager immediately.

java quick starter

You can enable the process again in case you would like to use it at a later time.

Wednesday, April 1, 2009

How to disable right click menu in flash?

One of the classic  typical flash question bumped to anyone does flash for their site, how to disable the 'right click menu'?.Here the solution.



Set the attribute menu=true, and it will appear again.

Yes. you are done ;)