Showing posts with label tricks. Show all posts
Showing posts with label tricks. Show all posts

Thursday, February 20, 2014

Solution to Droplet unable to communicate with photoshop in 64 Bit.

The Photoshop CS5 12.0.4 64 bits... is still experiencing problems with droplets... it says "Droplet unable to pass along with Photoshop" when working in Advance Automation.I explored in web more than a week and there is no answer. Suddenly It strikes my brain because the path of the photoshop may not added when installing by default of Adobe package installation, Since I have experience with Java work earlier. Later I added the path in systems, its works PERFECT.

Solution:

  • Right click on My Computer icon and select properties.
  • Move to Advanced System Settings
  • Click the button labeled Environment Variables.
  • Add 'User variable' by clicking the 'New' Button.
  • Put up the 'Variable name' as 'Path'
  • Put up  the 'Variable value' as ';C:\Program Files\Adobe\;'


Note: It's better safe to the add the semicolon before and after the adobe location.


Friday, November 30, 2007

Javascript - Calling Multiple function in Anchor

There are 2 method to call Multiple function in Anchor,

Let there are function1 and function2 is avaliable.
<SCRIPT LANGUAGE="JavaScript">
<!--
function function1(){
alert("Called function1");
}
function function2(){
alert("Called function2");
}
//-->
</SCRIPT>

Method 1:
Call the both function in the directly from anchor.
1. <a href="#" onclick="javascript:function1(),function2();"> anchorText
</a>

Method 2:
Have another common function that will call the both function
function1,function2 from anchor.

1.
<SCRIPT LANGUAGE="JavaScript">
<!--
function common_function(){
function1();
function2();
}
//-->
</SCRIPT>

2.<a href="#" onclick="javascript:common_function();"> anchorText </a>

Thursday, November 29, 2007

Useful link for Children - The Kitchen is your first experiment lab

The Kitchen is your first experiment lab, Start with little
experimentation and knows about the experiment with the basis. It is
really excellent for growing children http://bizarrelabs.com/index.htm


makes them to sense clever.

Saturday, August 25, 2007

Javascript get current date to next date or previous date

Javascript get current date to next date or previous date
code:
--------------
<script>
<!--
datecount=27;
var cur_dat=new Date();
curdate=cur_dat.getDate();
var diff_dat=new Date();
diff_dat.setDate(curdate-datecount);
//dat.setMonth(5);
alert(diff_dat.getMonth()+"|"+diff_dat.getDate()+"|"+diff_dat.getYear());
-->
</script>
--------------
assign the value differ for date count
datecount=27;
Initalizing cur_dat date
var cur_dat=new Date();
Here i am assigning the the current date value in the variable curdate
curdate=cur_dat.getDate();
Now initalizing new date for date difference 'diff_dat'
set the date difference depends upon previous and next using Arithmetic
operation '-' and '+'.
diff_dat.setDate(curdate-datecount);
now Display or assign your new previous/next date accroding to your
operation

Tips:
By this method the reduction or addition of date will automatically change
next Month and year.Same way try for Month and year depends upon the
operation.

Thursday, February 15, 2007

The simple trick to create Rounded corners in Photoshop for 'L' shaped rectangle

The simple trick to create Rounded corners in Photoshop for 'L' shaped
rectangle
1.Create New Channel and draw 'L' shape rectangle in white color
2.Apply Gaussian Blur Filter value=5
3.Apply LEVELS value shadow=120, midtone=0, highlight=150
4.Select channel by Ctrl+Click the channel and fill it with your favourite color in the layer

Saturday, October 14, 2006

Default Password of WINDOWS XP ADMINISTRATOR

In Windows XP, the login of administrator password is ‘admin’ by Default in Switch User Mode, till the Administrator privilege to him. Generally, this for emergency login as.