Yes, running it as a stand alone app. works fine, but in the way I am 
using this code it does not work properly. I have a cursor for the 
SKU field only. I cannot imagine that there is an error in this code. 
All text fields are declared in exactly same way. Strange.

--- In flexcoders@yahoogroups.com, "Sid Maskit" <[EMAIL PROTECTED]> wrote:
>
> I have been noticing extra spaces in a lot of posts. I'm suspecting
> this is a feature of Yahoo groups, or maybe just of the Yahoo mail
> reader that I am using to read the group. Anyway, here is the 
flex/web
> version I used (perhaps with a whole bunch of extra spaces inserted 
by
> the time you see it):
> 
> <?xml version="1.0" encoding="utf-8"?>
> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml";
> layout="absolute">
> <mx:Canvas width="150"
> verticalScrollPolicy="off"
> height="128" verticalCenter= "true" horizontalCenter= "true"
> horizontalScrollPolicy="off" >
> <mx:Form verticalGap= "1" paddingLeft= "-1" fontSize="9"
> borderThickness= "2"
> backgroundColor= "#DDDDDD" paddingTop=" 0"
> borderStyle= "solid"
> top="0"
> left="0"
> height="100% " width="100%" >
> <mx:FormItem width="100%" verticalGap= "-3"
> paddingLeft= "-38">
> <mx:Label text="Customer" color="#000000" />
> <mx:TextInput width="140" height="18" />
> </mx:FormItem>
> <mx:FormItem label="SKU" width="100%" verticalGap= "0"
> paddingLeft= "4" color="#000000" >
> <mx:TextInput width="60%" height="18"/>
> </mx:FormItem>
> <mx:FormItem height="100% " verticalGap= "-3" paddingLeft= "-38">
> <mx:Label text="Defect" color="#000000" />
> <mx:ComboBox width="140" height="19"/>
> </mx:FormItem>
> <mx:FormItem width="100%" verticalGap= "-3" paddingLeft= "-38">
> <mx:Label text="QC Person"
> color="#000000" />
> <mx:TextInput width="140" height="18"/>
> </mx:FormItem>
> </mx:Form>
> </mx:Canvas>
> 
> </mx:Application>
> 
> 
> --- In flexcoders@yahoogroups.com, "markgoldin_2000"
> <markgoldin_2000@> wrote:
> >
> > My code does not have "/ >" anywhere as far as I can see.
> > Can you please post your code as well?
> > 
> > Thanks
> > 
> > --- In flexcoders@yahoogroups.com, "Sid Maskit" <smaskit@> wrote:
> > >
> > > After copying and pasting your code, I initially got error 
messages
> > > for things like "/ >" where there cannot be a space between the 
two
> > > characters. However, once I fixed all of those, it seemed to 
work 
> > fine
> > > in terms of being able to type into each of the text input 
fields. I
> > > got the same results whether using a flex app in the browser, 
or an
> > > air app. I'm not sure where to go from here. Are you sure you 
are 
> > not
> > > getting any compiler errors?
> > > 
> > > --- In flexcoders@yahoogroups.com, "markgoldin_2000"
> > > <markgoldin_2000@> wrote:
> > > >
> > > > I have this simple form:
> > > > <?xml version="1.0" encoding="utf-8"?>
> > > > <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"; 
width="150" 
> > > > verticalScrollPolicy="off"
> > > >         height="128" verticalCenter="true" 
horizontalCenter="true" 
> > > > horizontalScrollPolicy="off">
> > > >          <mx:Form verticalGap="1" paddingLeft="-1" 
fontSize="9" 
> > > > borderThickness="2"
> > > >                 backgroundColor="#DDDDDD" paddingTop="0" 
> > > > borderStyle="solid"
> > > >                 top="0" 
> > > >                 left="0" 
> > > >                 height="100%" width="100%">
> > > >                <mx:FormItem width="100%" verticalGap="-3" 
> > > > paddingLeft="-38"> 
> > > >                <mx:Label text="Customer" 
> > color="#000000"/>            
> > > >                 <mx:TextInput width="140" height="18"/>
> > > >             </mx:FormItem>                
> > > >                <mx:FormItem label="SKU" width="100%" 
verticalGap="0" 
> > > > paddingLeft="4" color="#000000">            
> > > >                 <mx:TextInput width="60%" height="18"/>
> > > >             </mx:FormItem>                
> > > >             <mx:FormItem height="100%" verticalGap="-3" 
> > paddingLeft="-
> > > > 38">
> > > >                 <mx:Label text="Defect" color="#000000"/>
> > > >                 <mx:ComboBox width="140" height="19"/>
> > > >             </mx:FormItem>
> > > >             <mx:FormItem width="100%" verticalGap="-3" 
> > paddingLeft="-
> > > > 38"> 
> > > >                <mx:Label text="QC Person" 
> > > > color="#000000"/>            
> > > >                 <mx:TextInput width="140" height="18"/>
> > > >             </mx:FormItem>
> > > >         </mx:Form>
> > > > </mx:Canvas>
> > > > 
> > > > The only TextInput field that actually accepts input is SKU.
> > > > What kind of problem am I having here?
> > > > 
> > > > Thanks
> > > >
> > >
> >
>


Reply via email to