Wednesday, March 21, 2012

Command Prompt On folder right click

XP Systems –

Manual Method:
(This requires editing your registry. If you are not familiar with registry editing, this isn’t for you… so skip to the easy method below)
1. Open regedit
2. Navigate to HKEY_LOCAL_MACHINE/Software/Classes/Folder/Shell
3. Create a new key called Command Prompt
4. Your default value should be Command Prompt Here
5. Create a new key called Command under the Command Prompt key
6. Your default value should be cmd.exe /k pushd %L

Wednesday, January 4, 2012

Remove duplicate value from arrya using Action Script

var a:Array = ["1", "1", "3", "3"];
trace(a.filter(function(e, i, a) {
return a.indexOf(e) == i;
}, this));

Saturday, October 11, 2008