Re: [flexcoders] Re: Flex Developer Needed (Fulltime)

2009-04-15 Thread geeky developer
Thanks Nate I will check that out


On Wed, Apr 15, 2009 at 1:50 PM, Nate Beck  wrote:

>
>
> LinkedIn is a great place... and http://flex.org/jobs
>
>
> On Wed, Apr 15, 2009 at 1:42 PM, geeky developer  > wrote:
>
>>
>>
>> Just a curosity sake, Does anyone recommend any good website for looking
>> for a Flex Developer job.
>> If anyone can recommend any good website except Monster or Dice which is
>> dedicated to Flex developer hiring , that will be helpful,
>> Thanks
>>
>>
>>
>> On Wed, Apr 15, 2009 at 12:39 PM, Nick Collins wrote:
>>
>>>
>>>
>>> Hehe, well, everything costs more in Chicago... we do have a 10.25% sales
>>> tax
>>>
>>>
>>> On Wed, Apr 15, 2009 at 2:06 PM, flexaustin 
>>> >
>>> wrote:
>>> >
>>> >
>>> > Senior guys in Austin are 90k.
>>> >
>>> > --- In flexcoders@yahoogroups.com , Nick
>>> Collins  wrote:
>>> >>
>>> >> Good luck getting a senior level Flex dev for that pay range. Most
>>> >> senior level guys I know are getting between 100-120k. Granted, that's
>>> >> in Chicago, not the middle of Utah.
>>> >>
>>> >> On Tue, Apr 14, 2009 at 2:37 PM, joshbuhler  wrote:
>>> >> >
>>> >> >
>>> >> > Rain in American Fork, Utah is currently looking for a (preferably
>>> >> > senior
>>> >> > level) Flex developer. This is a full-time position, with great
>>> >> > benefits.
>>> >> >
>>> >> > Details can be found at:
>>> >> > http://mediarain.com/us/employment/flexdeveloper
>>> >> >
>>> >> >
>>> >>
>>> >
>>> >
>>>
>>
>>
>
>
> --
>
> Cheers,
> Nate
> 
> http://blog.natebeck.net
>
>
>  
>


Re: [flexcoders] Re: Flex Developer Needed (Fulltime)

2009-04-15 Thread geeky developer
Just a curosity sake, Does anyone recommend any good website for looking for
a Flex Developer job.
If anyone can recommend any good website except Monster or Dice which is
dedicated to Flex developer hiring , that will be helpful,
Thanks


On Wed, Apr 15, 2009 at 12:39 PM, Nick Collins  wrote:

>
>
> Hehe, well, everything costs more in Chicago... we do have a 10.25% sales
> tax
>
>
> On Wed, Apr 15, 2009 at 2:06 PM, flexaustin 
> >
> wrote:
> >
> >
> > Senior guys in Austin are 90k.
> >
> > --- In flexcoders@yahoogroups.com , Nick
> Collins  wrote:
> >>
> >> Good luck getting a senior level Flex dev for that pay range. Most
> >> senior level guys I know are getting between 100-120k. Granted, that's
> >> in Chicago, not the middle of Utah.
> >>
> >> On Tue, Apr 14, 2009 at 2:37 PM, joshbuhler  wrote:
> >> >
> >> >
> >> > Rain in American Fork, Utah is currently looking for a (preferably
> >> > senior
> >> > level) Flex developer. This is a full-time position, with great
> >> > benefits.
> >> >
> >> > Details can be found at:
> >> > http://mediarain.com/us/employment/flexdeveloper
> >> >
> >> >
> >>
> >
> >
>  
>


Re: [flexcoders] Re: Weired Focus Change behaviour on tab pressing

2009-03-16 Thread geeky developer
Awesome, That works perfectly
Thanks a lot Alex and valdhor for your help,
Now everything is working fine with the binding removed, I am just wondering
why binding can screw the focus issues for the tab pressing :-)


On Mon, Mar 16, 2009 at 5:44 AM, valdhor wrote:

>   You are almost done. Just remove the bindings from your groupNames...
>
>
>  groupName="networkSettingsGroup" styleName="textMedium"/>
>  styleName="textMedium"/>
>
> --- In flexcoders@yahoogroups.com , geeky
> developer  wrote:
> >
> > Hey Alex
> > Thanks for replying but if I changed it to GroupName instead of group, it
> > would let me make only one selection of the radio button. No doubt it
> fixed
> > the tab focus issue but I like to use pairs of radio button like in the
> > below example code, I like unitRoleGroup as one group and I like to
> select
> > one of them at a time and networkSettingsGroup as another group in which
> I
> > will like to select one at a time. It would let me do that if I change
> the
> > property name to "group ", it would let me select one of the options if
> use
> > group instead of groupName but then it would screw up the tab focus and
> if I
> > change the group to groupName as recommended, then it fixes the tab focus
> > issue but then it combines all the 4 radio button options into one and I
> > would be able to select only one of them, thats not what i need. I like
> to
> > create 2 different groups of radio buttons like the way it is shown in
> the
> > code and i would like the tab ordering work properly with selecting one
> of
> > the option at a time in each radio button group, Any idea to fix it?
> Thanks
> > a lot for your help
> >
> >
> > /*CODE */
> >
> > 
> > http://www.adobe.com/2006/mxml";
> layout="absolute">
> >  > paddingTop="5" paddingRight="5" paddingBottom="5" paddingLeft="5">
> >
> >  > fontStyle="italic" width="200"/>
> >
> >  > indicatorGap="25" labelWidth="200"
> > paddingTop="0" paddingRight="0" paddingBottom="0"
> > paddingLeft="0" height="262">
> >
> > 
> >  > width="100%" height="25" paddingTop="10">
> > 
> > 
> > 
> > 
> > 
> >  > groupName="{unitRoleGroup}" styleName="textMedium"/>
> >  > groupName="{unitRoleGroup}" styleName="textMedium"/>
> > 
> > 
> > 
> >  > restrict="a-zA-Z0-9_"
> > />
> > 
> > 
> > 
> > 
> >
> > 
> > 
> > 
> > 
> >  > groupName="{networkSettingsGroup}" styleName="textMedium"/>
> >  > groupName="{networkSettingsGroup}" styleName="textMedium"/>
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> >
> > 
> >
> > 
> >
> > 
> >
> >
> > On Fri, Mar 13, 2009 at 3:12 PM, Alex Harui  wrote:
> >
> > > You have to set groupName, not group.
> > >
> > >
> > >
> > > 
> > >
> > > 
> > >
> > > 
> > >
> > >  > > groupName="networkSettingsGroup" styleName="textMedium"/>
> > >
> > >  > > styleName="textMedium"/>
> > >
> > > 
> > >
> > >
> > >
> > > Same for the other radiobuttons
> > >
> > >
> > >
> > > Alex Harui
> > >
> > > Flex SDK Developer
> > >
> > > Adobe Systems Inc. <http://www.adobe.com/>
>
> > >
> > > Blog: http://blogs.adobe.com/aharui
> > >
> > >
> > >
> > > *From:* flexcoders@yahoogroups.com [mailto:
> flexcoders@yahoogroups.com ] *On
> > > Behalf Of *anuj181
> > > *Sent:* Friday, March 13, 2009 10:21 AM
> > > *To:* flexcoders@yahoogroups.com 
> > > *Subject:* [flexcoders] Weired Focus Change behaviour on tab pressing
> > >
> > >
> > >
> > > Hi Guys
> > > I am trying to make the focus changed consistently to different
> components
> > > in my app but it is showing different behavior when user presses tab.
> Few
> > > things are happening here if one of the radio button from the 

Re: [flexcoders] Weired Focus Change behaviour on tab pressing

2009-03-15 Thread geeky developer
Hey Alex
Thanks for replying but if I changed it to GroupName instead of group, it
would let me make only one selection of the radio button. No doubt it fixed
the tab focus issue but I like to use pairs of radio button like in the
below example code, I like unitRoleGroup as one group and I like to select
one of them at a time and networkSettingsGroup as another group in which I
will like to select one at a time. It would let me do that if I change the
property name to "group ", it would let me select one of the options if use
group instead of groupName but then it would screw up the tab focus and if I
change the group to groupName as recommended, then it fixes the tab focus
issue but then it combines all the 4 radio button options into one and I
would be able to select only one of them, thats not what i need. I like to
create 2 different groups of radio buttons like the way it is shown in the
code and i  would like the tab ordering work properly with selecting one of
the option at a time in each radio button group, Any idea to fix it? Thanks
a lot for your help


/*CODE */


http://www.adobe.com/2006/mxml"; layout="absolute">

















































On Fri, Mar 13, 2009 at 3:12 PM, Alex Harui  wrote:

>You have to set groupName, not group.
>
>
>
> 
>
> 
>
> 
>
>  groupName="networkSettingsGroup" styleName="textMedium"/>
>
>  styleName="textMedium"/>
>
> 
>
>
>
> Same for the other radiobuttons
>
>
>
> Alex Harui
>
> Flex SDK Developer
>
> Adobe Systems Inc. 
>
> Blog: http://blogs.adobe.com/aharui
>
>
>
> *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On
> Behalf Of *anuj181
> *Sent:* Friday, March 13, 2009 10:21 AM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] Weired Focus Change behaviour on tab pressing
>
>
>
> Hi Guys
> I am trying to make the focus changed consistently to different components
> in my app but it is showing different behavior when user presses tab. Few
> things are happening here if one of the radio button from the first radio
> group has been selected then pressing tab button will keep on cycling
> through first 3 components and if the radio buttons are not selected then
> changing focus on the tab pressing works fine, All I need is that whenever
> user presses tab key, it changes the focus consistently through all of the
> components(doesn't matter if the radio button is selected or not) and the
> same behavior will be followed when user presses the shift+Tab.
> Anyone has any idea about whats going on here,Please help me in fixing this
> issue,
> Thanks a lot
> geekyDeveloper
> /***CODE***/
> 
> http://www.adobe.com/2006/mxml";
> layout="absolute">
>  paddingTop="5" paddingRight="5" paddingBottom="5" paddingLeft="5">
>
>  width="200"/>
>
>  indicatorGap="25" labelWidth="200"
> paddingTop="0" paddingRight="0" paddingBottom="0" paddingLeft="0"
> height="262">
>
> 
>  height="25" paddingTop="10">
> 
> 
> 
> 
> 
>  styleName="textMedium"/>
>  styleName="textMedium"/>
> 
> 
> 
>  restrict="a-zA-Z0-9_"
> />
> 
> 
> 
> 
>
> 
> 
> 
> 
>  group="{networkSettingsGroup}" styleName="textMedium"/>
>  styleName="textMedium"/>
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
> 
>
> 
>
> 
>
>   
>


Re: [flexcoders] Re: Problem in sorting XMLList collection as a dataProvider for the list

2009-03-10 Thread geeky developer
Thanks to all those who replied, Following links strategy does work for me,
My XML's structure was little weird and I was expecting to use some inbuilt
sorting capability but I guess as recommended by few folks I have to custom
and I followed the following link helpful, Anyone else is seeking soem
complex sortign the link might be helpful

http://www.parallelcoding.com/2008/10/20/sorting-a-xmllistcollection-in-flex/



On Mon, Mar 9, 2009 at 1:09 PM, foobone9  wrote:

>   It's a class property array. That line is simply showing a way to fall
> back to other compare field properties if none are provided via the 'fields'
> parameter.
>
> --- In flexcoders@yahoogroups.com , geeky
> developer  wrote:
> >
> > Hi foobone9I am trying to implement your sent/recommended code but it is
> not
>
> > recognizing internalPropList in line
> > var propList:Array = fields ? fields : internalPropList;.
> >
> > What exactly in internalPropList here?
> > Anyone has any idea,
> > Thanks all for your reply and help
> >
> > .
> >
> >
> > On Thu, Mar 5, 2009 at 4:57 PM, foobone9  wrote:
> >
> > >
> > > There is a nice example in the Sort class documentation:
> > >
> > >
> > >
> http://livedocs.adobe.com/flex/3/langref/mx/collections/Sort.html#compareFunction
> > >
> > >
> > > --- In flexcoders@yahoogroups.com 
> > >  40yahoogroups.com>, crazy
> > > developer  wrote:
> > > >
> > > > Hi Thanks for replying
> > > > What does we mean by custom sort compare function, Can we provide any
> > > > examples of both sort and sort compare functions or little more
> details
> > > > about what and how does we do that?
> > > > Thanks much fro your help
> > > >
> > > >
> > > >
> > > > On Thu, Mar 5, 2009 at 11:24 AM, Alex Harui  wrote:
> > > >
> > > > > If you have a labelfunction, you'll probably need a custom
> sortcompare
> > > > > function
> > > > >
> > > > >
> > > > >
> > > > > Alex Harui
> > > > >
> > > > > Flex SDK Developer
> > > > >
> > > > > Adobe Systems Inc. <http://www.adobe.com/>
> > >
> > > > >
> > > > > Blog: http://blogs.adobe.com/aharui
> > > > >
> > > > >
> > > > >
> > > > > *From:* flexcoders@yahoogroups.com 
> > > > >  40yahoogroups.com>[mailto:
> > > flexcoders@yahoogroups.com   40yahoogroups.com>] *On
> > > > > Behalf Of *anuj181
> > > > > *Sent:* Wednesday, March 04, 2009 3:51 PM
> > > > > *To:* flexcoders@yahoogroups.com 
> > > > >  40yahoogroups.com>
>
> > > > > *Subject:* [flexcoders] Problem in sorting XMLList collection as a
> > > > > dataProvider for the list
> > > > >
> > > > >
> > > > >
> > > > > Hi Guys
> > > > >
> > > > > I am trying to sort the xmllist collection which is the
> dataprovider
> > > for
> > > > > the list. As the implementation of name-value pairs, i am
> displaying
> > > the
> > > > > entries in form of string in List and would like to sort all the
> data
> > > > > displayed in the List alphabetically, I am making a call through
> amfphp
> > > call
> > > > > to grab data from backend and populate XMLListCollection but now I
> need
> > > to
> > > > > sort the data in the list. Below is the code,Can anyone please help
> me
> > > where
> > > > > I am messing things up. Also please let me know if there is any
> > > question
> > > > > regarding the code and if there is better way of doing it.
> > > > >
> > > > > Thanks
> > > > >
> > > > > /**CODE/
> > > > >
> > > > > 
> > > > >  > > > > fault="getListFault(event);"/>
> > > > > 
> > > > >
> > > > > [Bindable] private var entriesXmlListFull:XMLList;
> > > > > [Bindable] private var entriesXmlCollection:XMLListCollection;
> > > > >
> > > > >
> > > > > public function getListHandler(

Re: [flexcoders] Re: Problem in sorting XMLList collection as a dataProvider for the list

2009-03-06 Thread geeky developer
Hi foobone9I am trying to implement your sent/recommended code but it is not
recognizing internalPropList in line
 var propList:Array = fields ? fields : internalPropList;.

What exactly in internalPropList  here?
Anyone has any idea,
Thanks all for your reply and help

.


On Thu, Mar 5, 2009 at 4:57 PM, foobone9  wrote:

>
> There is a nice example in the Sort class documentation:
>
>
> http://livedocs.adobe.com/flex/3/langref/mx/collections/Sort.html#compareFunction
>
>
> --- In flexcoders@yahoogroups.com , crazy
> developer  wrote:
> >
> > Hi Thanks for replying
> > What does we mean by custom sort compare function, Can we provide any
> > examples of both sort and sort compare functions or little more details
> > about what and how does we do that?
> > Thanks much fro your help
> >
> >
> >
> > On Thu, Mar 5, 2009 at 11:24 AM, Alex Harui  wrote:
> >
> > > If you have a labelfunction, you'll probably need a custom sortcompare
> > > function
> > >
> > >
> > >
> > > Alex Harui
> > >
> > > Flex SDK Developer
> > >
> > > Adobe Systems Inc. 
>
> > >
> > > Blog: http://blogs.adobe.com/aharui
> > >
> > >
> > >
> > > *From:* flexcoders@yahoogroups.com [mailto:
> flexcoders@yahoogroups.com ] *On
> > > Behalf Of *anuj181
> > > *Sent:* Wednesday, March 04, 2009 3:51 PM
> > > *To:* flexcoders@yahoogroups.com 
> > > *Subject:* [flexcoders] Problem in sorting XMLList collection as a
> > > dataProvider for the list
> > >
> > >
> > >
> > > Hi Guys
> > >
> > > I am trying to sort the xmllist collection which is the dataprovider
> for
> > > the list. As the implementation of name-value pairs, i am displaying
> the
> > > entries in form of string in List and would like to sort all the data
> > > displayed in the List alphabetically, I am making a call through amfphp
> call
> > > to grab data from backend and populate XMLListCollection but now I need
> to
> > > sort the data in the list. Below is the code,Can anyone please help me
> where
> > > I am messing things up. Also please let me know if there is any
> question
> > > regarding the code and if there is better way of doing it.
> > >
> > > Thanks
> > >
> > > /**CODE/
> > >
> > > 
> > >  > > fault="getListFault(event);"/>
> > > 
> > >
> > > [Bindable] private var entriesXmlListFull:XMLList;
> > > [Bindable] private var entriesXmlCollection:XMLListCollection;
> > >
> > >
> > > public function getListHandler(event:ResultEvent):void
> > > {
> > >
> > > entriesXmlListFull = XML(event.result).device;
> > > populateEntries();
> > > }
> > > private function getListFault(event:FaultEvent):void
> > > {
> > > Alert.Show("Error retreiving Data");
> > > }
> > >
> > > //Displaying names need to be displayed in the List box
> > > private function entriesLabelFunc(item:Object):String
> > > {
> > > var xmlItem:XML = item as XML;
> > >
> > > return xmlItem..attribute.(@name=="friendlyname");
> > > }
> > >
> > > //Populating List with XML Objects
> > > private function populateEntries():void
> > > {
> > > entriesXmlCollection = new XMLListCollection();
> > >
> > > for each(var item:XML in entriesXmlListFull)
> > > {
> > >
> > > var friendlyName:String = item..attribute.(@name=="friendlyname");
> > > //Only add camera type
> > > if ( !recordValue && hasFriendlyName && (itemType.toUpperCase() ==
> > > "CAMERA") )
> > > {
> > > entriesXmlCollection.addItem(item);
> > > }
> > > }
> > >
> > > //Calling Sort on XMLList collection
> > > entriesXmlCollection.sort = sortList;
> > > entriesXmlCollection.refresh();
> > >
> > >
> > > }
> > >
> > >
> > > 
> > > 
> > > 
> > > 
> > > 
> > >
> > >  > > labelFunction="entriesLabelFunc"/>
> > >
> > >
> > >
> >
>
>  
>