Professional Qualities

Posted: Saturday, July 3, 2010 by Unknown in Labels:
0


  1. Integrity

  2. Commitment and ownership

  3. Action orientation and goal seeking

  4. Continuous learning

  5. Professional Knowledge/skills

  6. Communication

  7. Planning, organizing and punctuality

  8. Quality of work

  9. A positive attitude, approachability, responsiveness

  10. Being an inspiring reference to others through leadership



Source:- The Professional by Subroto Bagchi
Enhanced by Zemanta

How to handle popups in Flex

Posted: Friday, July 2, 2010 by Unknown in Labels:
0

There are two ways to handle pop ups in Flex

By using Flex's ExternalInterface we can write Javascript code in Flex.

1) Using Javascript window.open().
Note:- This technique will not work in Chrome alone. And in IE, If the popup block settings are at strong level then this will not work.

2) Using form submit in through javascript.
Note:- This perfectly works fine in Chrome. But in rest of the browsers this does not seem working properly.

So, For my app i have done like,

while loading flash movie i get the browser name. If the browser name is chrome the later is applied else first one is applied.

This is perfectly working fine.

Enhanced by Zemanta