[flexcoders] Re:Funny appearance of TabNavigator icons

2007-03-08 Thread Robi Ray
Can you post snippets of your code or deploy your app on some server  send
the link? Also, don't forget to allow the view source code option :))



[flexcoders] Re:ui design question, ideas for showing the user to wait while a recor

2007-02-28 Thread Robi Ray
You can do the following:
   Within the remote call method, you can add the following as the first
line :
CursorManager.setBusyCursor();
   Next, within the method's result handler, add the following line once you
get resultstatus as true (I mean once data retreival is successful):
CursorManager.removeAllCursors();

  You'll have to include the CursorManager class for the above.

All the best,
Robi.



[flexcoders] Re:How do I prevent the user from selecting text in a text area

2007-02-27 Thread Robi Ray
Make the enabled property as false  add a suitable color value to the
'disabledColor' attribute.



[flexcoders] Re:width=100% as maximum, not minimum?

2007-02-21 Thread Robi Ray
Reid,
  As far as my knowledge goes, you can achieve truncation only if you
specify fixed width values in pixels when using labels. Percentage values
always get overridden when the text is too long. Another suggestion after
looking at your code : - Avoid using the 'GridRow'  'GridItem' tags from
performance perspective. These tags are analogous to the 'Table' tags in
HTML  degrade rendering performance. You can achieve the same using
'Canvas' as the primary container or maybe a 'HBox' or 'VBox'.

Cheers !



[flexcoders] Re:navigateToUrl Problem

2007-02-21 Thread Robi Ray
Try using _top or _parent.

Regards,
Robi.


[flexcoders] Re:Panel skinning

2007-02-15 Thread Robi Ray
Try using the opaquebackground property by setting it to the background
color value.



[flexcoders] Re:properties in components..

2007-02-08 Thread Robi Ray
Place the line ' x.label=jim ' in a function  call that on the
creationComplete event of the component. The fault is in directly writing
the statement.
Regards,
Robi.



[flexcoders] Re:HTML in Flex

2007-02-08 Thread Robi Ray
You can use the iframe trick, but rather than iframe try using the 'div' 
'layer' html tags along with JavaScript. This will remove cross browser
issues.

Cheers !



[flexcoders] Re:HTML wrapper fails to display swf

2007-02-05 Thread Robi Ray
Check out whether history.js  the history iframe is included in your
wrapper file. I've experienced cases where the absence of these prevent
rendering of the swf.

All the best,
Robi.



[flexcoders] Re:An internal build error has occurred. Please check the Error Log.

2007-01-18 Thread Robi Ray
Well, this seems to be kind of a bug in the tool. I faced a similar
situation some time back, but could not trace out the issue. Often, it is
because of a corrupted file. The only I could solve it was delete all
project references  start afresh.



[flexcoders] Re:External Interface Help

2007-01-15 Thread Robi Ray
Hey Russell,
An alternative to this is make a duplicate of the html file you created 
in
the 'bin' folder itself  everytime after compiling the application, run the
duplicate html file from the browser. Hope this helps !

Regards



[flexcoders] Re:Performance Enhancement of Flex Application

2007-01-10 Thread Robi Ray
Hey Hara,
  There are lot of factors for your flex app performance:

  1) Server response,
  2) Backend response,
  3) What kind of communication are you using in the middle tier? FDS or
open AMF or some other
  4) Container nesting  architecture
  5) What is the app loading initially? By this I mean whether you are
loading an image, etc..

  You need to revisit your application architecture  pin point the
issues. From the front end, yes, container nesting plays a very important
role  also the type of controls you are using.

   Hope this helps.

Regards



[flexcoders] Re: Repositioning pop up window

2006-07-27 Thread Robi Ray
Thanks Tim. I, somehow, got the soln to this:

var l:IFlexDisplayObject = PopUpManager.createPopUp(this, your custom
class, true);
l.x = some value;
l.y = some value;

Regards,
Robi.



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/