Re: [flexcoders] the \n doesn't work in XML

2005-08-26 Thread Manish Jethani
On 8/25/05, Nithya R [EMAIL PROTECTED] wrote: i am trying to use xml for displaying the button label is there any possible way of displaying it in two lines only using XML? i tried using #13; as told by gordon but it didnt work please help... ?xml version=1.0? mx:Application

Re: [flexcoders] Link Component

2005-08-26 Thread Manish Jethani
On 8/26/05, Omar Ramos [EMAIL PROTECTED] wrote: I am trying to disable the rollOver action on the Link component. It seams it doesn't have a useRollOver = false property. Anyone have been able to disable it some other way? Thanks Your only option seems to be that you set the rollOverColor

Re: [flexcoders] Accordion: save form on exit

2005-08-26 Thread Manish Jethani
On 8/26/05, Simard, Ghislain [EMAIL PROTECTED] wrote: In the following example. If I am in the Comp1 and I click on an item on the left tree...meaning that I am focussing out of the Comp1...how to get the Comp1 saved? mx:HBox mx:Tree .../ mx:Accordion mx:Form

Re: [flexcoders] using and detecting menubar selection

2005-08-26 Thread Manish Jethani
On 8/24/05, Greg Morphis [EMAIL PROTECTED] wrote: Maybe I'm missing something but how do YOU interact with the menuitem's you've created? I suppose I could add an id and pass that to an function like.. function changeEvt(event) { fSwitch.text=event.menuItem.attributes.label + +

Re: [flexcoders] creationComplete on ViewStack children *bug?*

2005-08-26 Thread Manish Jethani
On 8/26/05, Scott Barnes [EMAIL PROTECTED] wrote: I've got a typical setup where i set certain properties of controls within a child of a view stack. Inside the child i have the usual creationComplete=hlper.myfunc() Only the myFunc doesn't even know its children within, meaning if i did

REĀ : [flexcoders] Rich Text Editor

2005-08-26 Thread Philippe Maegerman
I'm curious to see your RTE, I wrote one my self using CF7 flash forms: http://cfpim.blogspot.com/2005/04/rich-textarea-for-flash-cfforms.html http://cfpim.blogspot.com/2005/04/rich-textarea-for-flash-cfforms.html It could be adapted to flex, it's a mix of CF + AS

Re: [flexcoders] Scrollbar in canvas

2005-08-26 Thread Manish Jethani
On 8/20/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: I have vScrollPolicy=auto in a canvas and a vbox inside it with a repreater which creates a buch of elements (labels, combos) In some cases the scrollbar works fine and shows correctly, but in some cases the scrollbar does not show up

RE: [flexcoders] the \n doesn't work in XML

2005-08-26 Thread Gordon Smith
The #13; inserts a CR into the label string, but the Button doesn't display the second line. I think the problem is that a Button's internal TextField doesn't have its multiline property set, and the measurement of the label width and height is done assuming only a single line of text. - Gordon

[flexcoders] Controlling iddle time

2005-08-26 Thread Alberto Albericio Salvador
Hi all, If I want my Flex application to control the time that one user is iddling and launch an event if that time is bigger than X, how can I do that? For iddling Im meaning the time the user is not even moving the mouse, or he is not focused on the application, etc Greetings -- Alberto

[flexcoders] Loading classes

2005-08-26 Thread Prasad Dhananjaya
Hi All, I want to draw two squares inside the canves. I define DrawIconsclass. My class file and MXML file is in the same directory. When I run this, it says The class DrawIcons()could not be loaded (line of error is var Square1:DrawIcons = new DrawIcons(100, 200);) Can someone please tell me

RE: [flexcoders] Custom Datagrid Sorting

2005-08-26 Thread Steve Cox
Thanks for the reply Abdul, Ive been unable to find an answer to my question in the archives though. I can get the sorting working perfectly if I explicitly set the object I want to sort on (as is done in all the examples I could find), however the name of the column to be sorted

[flexcoders] Re: the \n doesn't work in XML

2005-08-26 Thread bhaq1972
If you increse the height of a standard button eg height=40 then you can see the label over 2 lines (using #13;) --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: The #13; inserts a CR into the label string, but the Button doesn't display the second line. I think the

RE: [flexcoders] CFC debugging netConnectionDebugger

2005-08-26 Thread Dirk Eismann
If you're using CF7 you could also take advantage of the onError functions in your Application.cfc to handle *any* exception. Is a pretty good place to write exception dumps to a file. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Popup component

2005-08-26 Thread Manish Jethani
On 8/26/05, Alberto Albericio Salvador [EMAIL PROTECTED] wrote: The question is: how can I modify the container or the helper class so that Index.mxml know it has to show this component in a popup window? My lame solution to this has been replacing this: view:Login id=login / with

Re: [flexcoders] Re: Loading classes

2005-08-26 Thread Jeff Tapper
Above and beyond that, there are a few bugs which need to be fixed. 1. Case Sensitivity - DrawIcons has properties xValue and yValue, but yet the constructor references Xvalue and YValue 2. Scope issues. - DrawIcons has no concept of MyCanves (referenced in createSquare()). By adding an

Re: RE : [flexcoders] Rich Text Editor

2005-08-26 Thread Reto M. Kiefer
Hi Philippe, I'm curious to see your RTE, I wrote one my self using CF7 flash forms: http://cfpim.blogspot.com/2005/04/rich-textarea-for-flash-cfforms.html http://cfpim.blogspot.com/2005/04/rich-textarea-for-flash-cfforms.html It could be adapted to flex, it's a mix of CF + AS I would be

Re: [flexcoders] using and detecting menubar selection

2005-08-26 Thread Greg Morphis
Thats what I was looking for! Thanks Manish! On 8/26/05, Manish Jethani [EMAIL PROTECTED] wrote: On 8/24/05, Greg Morphis [EMAIL PROTECTED] wrote: Maybe I'm missing something but how do YOU interact with the menuitem's you've created? I suppose I could add an id and pass that to an

Re: [flexcoders] Scrollbar in canvas

2005-08-26 Thread Igor Costa
If you set as 100% will never function, but you can also, use the auto.Legth to active the scroll. 2005/8/26, Manish Jethani [EMAIL PROTECTED]: On 8/20/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote:I have vScrollPolicy=auto in a canvas and a vbox inside it with a repreater which creates a buch

[flexcoders] Re: Scrollbar in canvas

2005-08-26 Thread Rajesh Jayabalan
Hi Igor, It works sometimes it does not work some times.. how do I use the auto.length function on which component? Rajesh J --- In flexcoders@yahoogroups.com, Igor Costa [EMAIL PROTECTED] wrote: If you set as 100% will never function, but you can also, use the auto.Legthto active the

RE: [flexcoders] Problems with xmlns=http://www.macromedia.com/2003/flex-config in flex-config

2005-08-26 Thread Tracy Spratt
If I understand namespaces correctly, that string is really just a meaningful id that is very unlikely to be duplicated by accident. I mean, namespaces work even when you are not connected to the internet, so obviously they do not need to point to a real place. If removing the xmlns breaks Flex,