| File name filter | In this area, specify additional settings to narrow down the search scope.
|
Sunday, April 29, 2012
Intelliji Idea: Find and Replace in Path for multiple file masks
Friday, April 27, 2012
Ext.apply VS Ext.applyIf
var source = new Array();
source[0] = '1';
source[1] = '2';
source[2] = '3';
var destination = new Array();
destination[0] = '4';
destination[1] = '5';
destination[2] = '6';
destination[3] = '7';
destination[4] = '8';
destination[5] = '9';
// Ext.apply(obj1,obj2) copy all properties of obj2 to obj1 any way,replaceing
// the ones that obj1 has already defined
Ext.apply(destination,source);
document.write(destination + '<br/>'); // 1,2,3,7,8,9
// Ext.applyIf(obj1,obj2) copy all properties of obj2 to obj1 only if
// they don't already exist
Ext.applyIf(destination,source);
document.write(destination + '<br/>'); // 4,5,6,7,8,9
source[0] = '1';
source[1] = '2';
source[2] = '3';
var destination = new Array();
destination[0] = '4';
destination[1] = '5';
destination[2] = '6';
destination[3] = '7';
destination[4] = '8';
destination[5] = '9';
// Ext.apply(obj1,obj2) copy all properties of obj2 to obj1 any way,replaceing
// the ones that obj1 has already defined
Ext.apply(destination,source);
document.write(destination + '<br/>'); // 1,2,3,7,8,9
// Ext.applyIf(obj1,obj2) copy all properties of obj2 to obj1 only if
// they don't already exist
Ext.applyIf(destination,source);
document.write(destination + '<br/>'); // 4,5,6,7,8,9
Wednesday, February 29, 2012
Compiling the Apache Flex SDK with IntelliJ
very useful blog from quetwo , he even made a video for it, check it out
Tuesday, February 28, 2012
Eclipse slow responding while refreshing external folders
today, my Eclipse is very slow when refreshing external folder
i found this blog from Filip Galabov's Homepage.
might be useful, check here
i found this blog from Filip Galabov's Homepage.
might be useful, check here
Tuesday, February 14, 2012
Flash Builder 4.6 plugin install for Eclipse
see : http://kb2.adobe.com/cps/921/cpsid_92180.html
Flash Builder 4.6 supports installation as a plugin to an existing Eclipse instance. To do so:
Flash Builder 4.6 supports installation as a plugin to an existing Eclipse instance. To do so:
- Complete the installation process as described above.
- Navigate to the installed Flash Builder installation location and open the utilities folder.
- Run the executable Adobe Flash Builder 4.6 Plug-in Utility.exe.
- Select the language and click on OK.
- Select the Flash Builder installation location if prompted.
- Select the Eclipse folder into which you want Flash Builder 4.6 to be plugged into and click Next. (Note: Your copy of Eclipse must be version 3.6/3.6.1/3.6.2/3.7, 32-bit and must contain a folder named “dropins”)
- Review the pre-Installation summary and click on Install
- Following installation, it is recommended that you edit the eclipse.ini file for your Eclipse instance, so that it includes the following settings:
-vmargs -Xms256m -Xmx512m -XX:MaxPermSize=256m -XX:PermSize=64m
Subscribe to:
Posts (Atom)