Search the web
Sign In
New User? Sign Up
silvafug · Silicon Valley Flex User Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1497 - 1527 of 1600   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#1527 From: josh rotenberg <joshrotenberg@...>
Date: Tue Nov 17, 2009 8:10 pm
Subject: Re: Flex Developer Positions Availablein Bay Area--Know Anybody for them?
joshrotenberg
Online Now Online Now
Send Email Send Email
 
> *Please no job hoppers or candidates who have been laid off for a while.

Please apply the goldilocks principle to your work history before applying.

#1526 From: "linjess2002" <oraman@...>
Date: Tue Nov 17, 2009 7:53 pm
Subject: Flex Developer Positions Availablein Bay Area--Know Anybody for them?
linjess2002
Offline Offline
Send Email Send Email
 
Position: Sr. Flex  Developer Positions

Location : San Francisco California ( area) and Phoenix Arizona
                   Note:There is also a Lead Flex Architect position available in
Phoenix.

Location : San Francisco California ( area) and Phoenix Arizona
                   Note:There is also a Lead Flex Architect position available in
Phoenix.

No relocation assistance is provided, however company will consider candidates
willing to pay their own relocation expenses...however a sign-on bonus is a
possibility.

*Please no job hoppers or candidates who have been laid off for a while.

This company is an exceptional place to work and a major, well-known player in
their market.

Salary: Depends on experience

Collaborate with product managers, interaction designers, operations, and other
members of the project team
in requirements specification, feasibility analysis, detailed engineering
analysis and launch planning
Design and Development of Flex applications for Web Services and desktop
application
Provide leadership in the use of Flex technology and mentorship in educating the
organization on the
capabilities of Flex.

Qualifications:
-Solid Flex development experience on major Flex Projects ..not just Flash.
-BS/MS in Computer Science desirable

For  immediate consideration, please send your resume as a Word attachment to:
oraman@...
Please use job code:Yahoo SilvaFug/Flex/Doug P.

Ph: 800-549-8502

All Submissions are handled in confidence.

#1525 From: Keith Sutton <keith_sutton100@...>
Date: Tue Nov 17, 2009 5:47 pm
Subject: 360Flex WIP Schedule Available
keith_sutton100
Offline Offline
Send Email Send Email
 
#1524 From: Keith Sutton <keith_sutton100@...>
Date: Tue Nov 17, 2009 4:50 pm
Subject: Re: Binding not working in custom class and DataGrid using XMLListCollection
keith_sutton100
Offline Offline
Send Email Send Email
 
Radley Marx commenting on code - someone pick me up off the floor

:)

Radley Marx wrote:
 




You can't use xlcCollection in TestApp.mxml for binding because the value (as it's coded now) is only set when it is instantiated. Instead, bind directly to tcl.xlc:

dataProvider="{tcl.xlc}" *

In TextClass you need get and set for xlc. The setter should dispatch an event:

public function set xlc(value:XMLListCollection):void
{
_xlc = value;
dispatchEvent(new Event("XLC_CHANGED_OR_WHATEVER")
}

and the getter should be bound to that event:

[Bindable("XLC_CHANGED_OR_WHATEVER")];
public function get xlc():XMLListCollection
{ ...



* This may kick back an null error on init. If so, add binding after creationComplete:

myDataGridId.dataProvider = tcl.xlc;



-radley



All you need in this life is ignorance and confidence; then success is sure.
- Mark Twain

On Nov 16, 2009, at 9:15 PM, Greg Lafrance wrote:

 

I have a class with an XMLListCollection, and I am using that class xlc as the dataProvider in a DataGrid, but when I change the xlc in the class instance, the DataGrid does not reflect the change. Any ideas?

----- TestClass1.as -----
package
{
import flash.events.EventDispatcher;

import mx.collections.XMLListCollection;

public class TestClass1 extends EventDispatcher{
private var xml_1:XML =
<root>
<item>one</item>
<item>two</item>
<item>three</item>
</root>;

private var xml_2:XML =
<root>
<item>ten</item>
<item>twenty</item>
<item>thirty</item>
</root>;

private var _xlc:XMLListCollection = new XMLListCollection(xml_1..item);

public function TestClass1(){
}

public function get xlc():XMLListCollection{
return this._xlc;
}

public function loadData():void{
this._xlc = new XMLListCollection(xml_2..item);
}
}
}

----- TestApp.mxml -----
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
width="100%">
<mx:Script>
<![CDATA[
import mx.collections.XMLListCollection;
private var tc1:TestClass1 = new TestClass1();

[Bindable] private var xlcCollection:XMLListCollection = tc1.xlc;
]]>
</mx:Script>
<mx:DataGrid dataProvider="{xlcCollection}"/>
<mx:Button label="Change Data" click="tc1.loadData();"/>
</mx:Application>



--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1523 From: Radley Marx <radley@...>
Date: Tue Nov 17, 2009 7:59 am
Subject: Re: Binding not working in custom class and DataGrid using XMLListCollection
radleymarx
Offline Offline
Send Email Send Email
 




You can't use xlcCollection in TestApp.mxml for binding because the value (as it's coded now) is only set when it is instantiated. Instead, bind directly to tcl.xlc:

dataProvider="{tcl.xlc}" *

In TextClass you need get and set for xlc. The setter should dispatch an event:

public function set xlc(value:XMLListCollection):void
{
_xlc = value;
dispatchEvent(new Event("XLC_CHANGED_OR_WHATEVER")
}

and the getter should be bound to that event:

[Bindable("XLC_CHANGED_OR_WHATEVER")];
public function get xlc():XMLListCollection
{ ...



* This may kick back an null error on init. If so, add binding after creationComplete:

myDataGridId.dataProvider = tcl.xlc;



-radley



All you need in this life is ignorance and confidence; then success is sure.
- Mark Twain

On Nov 16, 2009, at 9:15 PM, Greg Lafrance wrote:

 

I have a class with an XMLListCollection, and I am using that class xlc as the dataProvider in a DataGrid, but when I change the xlc in the class instance, the DataGrid does not reflect the change. Any ideas?

----- TestClass1.as -----
package
{
import flash.events.EventDispatcher;

import mx.collections.XMLListCollection;

public class TestClass1 extends EventDispatcher{
private var xml_1:XML =
<root>
<item>one</item>
<item>two</item>
<item>three</item>
</root>;

private var xml_2:XML =
<root>
<item>ten</item>
<item>twenty</item>
<item>thirty</item>
</root>;

private var _xlc:XMLListCollection = new XMLListCollection(xml_1..item);

public function TestClass1(){
}

public function get xlc():XMLListCollection{
return this._xlc;
}

public function loadData():void{
this._xlc = new XMLListCollection(xml_2..item);
}
}
}

----- TestApp.mxml -----
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
width="100%">
<mx:Script>
<![CDATA[
import mx.collections.XMLListCollection;
private var tc1:TestClass1 = new TestClass1();

[Bindable] private var xlcCollection:XMLListCollection = tc1.xlc;
]]>
</mx:Script>
<mx:DataGrid dataProvider="{xlcCollection}"/>
<mx:Button label="Change Data" click="tc1.loadData();"/>
</mx:Application>



#1522 From: "Alamgir Farouk" <afarouk2@...>
Date: Tue Nov 17, 2009 7:05 am
Subject: Re: Binding not working in custom class and DataGrid using XMLListCollection
alamgir.farouk
Offline Offline
Send Email Send Email
 
I think you have put the [Bindable] on top of the _xlc declaration. This instructs the compiler to 'generate' the callbacks to the datagrid. The datagrid registers itself as a listener to the collection.
 
 
--AF
 
[Bindable]
private var _xlc:XMLListCollection = new XMLListCollection(xml_1..item);
 
 

Sent: Monday, November 16, 2009 9:15 PM
Subject: [silvafug] Binding not working in custom class and DataGrid using XMLListCollection

 

I have a class with an XMLListCollection, and I am using that class xlc as the dataProvider in a DataGrid, but when I change the xlc in the class instance, the DataGrid does not reflect the change. Any ideas?

----- TestClass1.as -----
package
{
import flash.events.EventDispatcher;

import mx.collections.XMLListCollection;

public class TestClass1 extends EventDispatcher{
private var xml_1:XML =
<root>
<item>one</item>
<item>two</item>
<item>three</item>
</root>;

private var xml_2:XML =
<root>
<item>ten</item>
<item>twenty</item>
<item>thirty</item>
</root>;

private var _xlc:XMLListCollection = new XMLListCollection(xml_1..item);

public function TestClass1(){
}

public function get xlc():XMLListCollection{
return this._xlc;
}

public function loadData():void{
this._xlc = new XMLListCollection(xml_2..item);
}
}
}

----- TestApp.mxml -----
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
width="100%">
<mx:Script>
<![CDATA[
import mx.collections.XMLListCollection;
private var tc1:TestClass1 = new TestClass1();

[Bindable] private var xlcCollection:XMLListCollection = tc1.xlc;
]]>
</mx:Script>
<mx:DataGrid dataProvider="{xlcCollection}"/>
<mx:Button label="Change Data" click="tc1.loadData();"/>
</mx:Application>


#1521 From: "Greg Lafrance" <glafrance@...>
Date: Tue Nov 17, 2009 5:15 am
Subject: Binding not working in custom class and DataGrid using XMLListCollection
greg_lafrance
Offline Offline
Send Email Send Email
 
I have a class with an XMLListCollection, and I am using that class xlc as the
dataProvider in a DataGrid, but when I change the xlc in the class instance, the
DataGrid does not reflect the change. Any ideas?

----- TestClass1.as -----
package
{
   import flash.events.EventDispatcher;

   import mx.collections.XMLListCollection;

   public class TestClass1 extends EventDispatcher{
     private var xml_1:XML =
       <root>
         <item>one</item>
         <item>two</item>
         <item>three</item>
       </root>;

     private var xml_2:XML =
       <root>
         <item>ten</item>
         <item>twenty</item>
         <item>thirty</item>
       </root>;

     private var _xlc:XMLListCollection = new XMLListCollection(xml_1..item);

     public function TestClass1(){
     }

     public function get xlc():XMLListCollection{
       return this._xlc;
     }

     public function loadData():void{
       this._xlc = new XMLListCollection(xml_2..item);
     }
   }
}


----- TestApp.mxml -----
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
   width="100%">
   <mx:Script>
     <![CDATA[
       import mx.collections.XMLListCollection;
       private var tc1:TestClass1 = new TestClass1();

       [Bindable] private var xlcCollection:XMLListCollection = tc1.xlc;
     ]]>
   </mx:Script>
   <mx:DataGrid dataProvider="{xlcCollection}"/>
   <mx:Button label="Change Data" click="tc1.loadData();"/>
</mx:Application>

#1520 From: Ashvin Radiya <ashvinradiya@...>
Date: Mon Nov 16, 2009 6:57 pm
Subject: Re: [Potentially] Free Dreamforce Keynote and Expo pass
ashvinradiya
Online Now Online Now
Send Email Send Email
 
Thanks, Keith. It worked and did not charge :-)
 
Ashvin


From: Keith Sutton <keith_sutton100@...>
To: silvafug@yahoogroups.com
Sent: Mon, November 16, 2009 9:51:24 AM
Subject: [silvafug] [Potentially] Free Dreamforce Keynote and Expo pass

I received this link via LinkedIn. According to the offer it should get you a free pass to the Keynotes and Expo. I tested the link and it seems to be open. There was no 'promo code' so be wary when using it that you don't get charged $200.

https://dreamevent.secure.force.com/dreamforce/index?atype=attendee&cid=70130000000Jclx&pc=SUCCESS

--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org/
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1519 From: Keith Sutton <keith_sutton100@...>
Date: Mon Nov 16, 2009 7:29 pm
Subject: Re: [bacfug] Reminder BACFUG meeting on Wednesday and Free Flex Training in SF
keith_sutton100
Offline Offline
Send Email Send Email
 
Reminder from Sid

Sid Maestre wrote:
Hey Eveyone,

Just a reminder to RSVP if you can attend our November meeting this Wednesday.

Details and RSVP here

Free Flex 4 Training for ColdFusion Developers

New to Flex or what to learn Flex 4 basics? This Friday is a free training in San Francisco.

Details at http://www.adobe.com/go/flextrainingforcfdevelopers




--
Please Note: If you hit "REPLY", your message will be sent to everyone on this mailing list (bacfug-list@...)
This message was sent by Sid Maestre (sid.maestre@...) from Bay Area ColdFusion User Group.
To learn more about Sid Maestre, visit his/her member profile
To unsubscribe or to update your mailing list settings, click here

Meetup Inc. PO Box 4668 #37895 New York, New York 10163-4668 | support@...

--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1518 From: Keith Sutton <keith_sutton100@...>
Date: Mon Nov 16, 2009 5:51 pm
Subject: [Potentially] Free Dreamforce Keynote and Expo pass
keith_sutton100
Offline Offline
Send Email Send Email
 
I received this link via LinkedIn. According to the offer it should get you a free pass to the Keynotes and Expo. I tested the link and it seems to be open. There was no 'promo code' so be wary when using it that you don't get charged $200.

https://dreamevent.secure.force.com/dreamforce/index?atype=attendee&cid=70130000000Jclx&pc=SUCCESS

--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1517 From: Keith Sutton <keith_sutton100@...>
Date: Mon Nov 16, 2009 5:39 pm
Subject: Re: Books and News from the O'Reilly User Group Program--November
keith_sutton100
Offline Offline
Send Email Send Email
 
FYI

Marsee Henon wrote:
>
> If you cannot read the information below, click here
> <http://post.oreilly.com/rd/9z1zdhieh7np3bqk7p6hsbeh6rt728gp8p96veiau58>.
>
> Forward this annoucement to a friend
> <http://post.oreilly.com/f2f/9z1z4duoj88r921qnh6vfd9q370qvtm1o3mvhpoklto>
>
> O'Reilly.com
> <http://post.oreilly.com/rd/9z1zjnclcmauouiggaqih4t75j16sg62lca12bmucn0>User
> Group Newsletter
>
> Nov 2009 Issue:
>
>     * Welcome <#1>
>     * O'Reilly Answers -- Clever Hacks. Creative Ideas. Innovative
>       Solutions. <#2>
>     * Great Java on Video <#3>
>     * Online Conferences in December -- Where 2.0. Velocity, and Gov
>       2.0 <#4>
>     * Safari Books Online's Coder Challenge and Safari Open House <#5>
>     * Reviewers Needed and Book Discount Code <#6>
>     * The O'Reilly School of Technolgy Referral Program <#7>
>     * UG leaders only -- Put Up a Banner, Get a Free Book <#8>
>     * Upcoming Events <#events>
>
> New Releases:
>
> <http://post.oreilly.com/rd/9z1z5oju620g1glgbi5c8gjjfq71c8q4m78iahnqvc8>*The
> Art of SEO
> <http://post.oreilly.com/rd/9z1z2hlb6as9j9e4j0cse5r4fumf5c81kes62oa1m58>*
> By Eric Enge
> <http://post.oreilly.com/rd/9z1zgemr96f4s0al5mdj9uj18i77pnbnb4aotesejoo>,
> Stephan M. Spencer
> <http://post.oreilly.com/rd/9z1zp295ltatl5nph857c3i65quqtitgf4th9vsvba0>,
> Rand Fishkin
> <http://post.oreilly.com/rd/9z1zdpnh7gqnltt4bcs0ota7ae0udjem3ics048effg>,
> Jessie Stricchiola
> <http://post.oreilly.com/rd/9z1z02ri0m0qm91n873bscuart8bpf01dtbrdu997fo>
>
>
<http://post.oreilly.com/rd/9z1z92f1kmm34mo9ol1hfirg2md33m64al9o035hlf0>*Beautif\
ul
> Testing
> <http://post.oreilly.com/rd/9z1zcp2nngij0q1d7sfb85t9e4hnkavibje41vs7160>*
> By Tim Riley
> <http://post.oreilly.com/rd/9z1z4d6dpmki3kgc1905vq6mtt0lt3s7gspeb2lh05o>,
> Adam Goucher
> <http://post.oreilly.com/rd/9z1zoh03h851r9rg6o2b31sqnstk4vea9jtsf2ujktg>
>
> <http://post.oreilly.com/rd/9z1zruedh5ikrjh22k8rlopatm0ea1gsbjoj787rcbo>*C#
> 4.0 in a Nutshell: Rough Cuts Version, Fourth Edition
> <http://post.oreilly.com/rd/9z1z0s66qr1kmp0k13r4nu8fpp36hokp5lc69ls9crg>*
>
>
<http://post.oreilly.com/rd/9z1zpd6v1a3sdi0anpm6cflm4mdnp9snk826gg1q6u8>*Confess\
ions
> of a Public Speaker
> <http://post.oreilly.com/rd/9z1z04lgt4egsu2ic9a10lc1skkbgi0iehb6tlcd7io>*
> By Scott Berkun
> <http://post.oreilly.com/rd/9z1z2h459ndg1k3qesoekh6obg6bpajdlggfaph2pmo>
>
> <http://post.oreilly.com/rd/9z1zlouurqs170uvh5teapa5dqbk90goo4iuc98mev0>*Debug
> It!
> <http://post.oreilly.com/rd/9z1z0qnqc4su9ivlv0pkao26kt87ummkdub5b6dieng>*
> By Paul Butcher
> <http://post.oreilly.com/rd/9z1zfefhld5pjph3puco031omrf62gqd5mc27n5tpho>
>
>
<http://post.oreilly.com/rd/9z1zrs3jn8d7uukku7s3081uha927u3pbgomn7n1n08>*Friends
> with Benefits
> <http://post.oreilly.com/rd/9z1zokc938nv6p06aqnnjjiigej2njambjqaimrq8bo>*
> By Darren Barefoot
> <http://post.oreilly.com/rd/9z1z2um6mkdc88soucs5d01f5mh677b0mpnb7ls6oo0>,
> Julie Szabo
> <http://post.oreilly.com/rd/9z1z5dpv4vjl7luep62h3fisgqv1tfs41lht33notuo>
>
> <http://post.oreilly.com/rd/9z1zajc4tvgrjgaa5jiqkskm6lvlqnnj24fqjdcpvcg>*From
> Camera to Computer
> <http://post.oreilly.com/rd/9z1zr9q31uhdarg3p1casd8h0kt93oigmbc2nvd2cjo>*
> By George Barr
> <http://post.oreilly.com/rd/9z1z4cp25rqatgcj4refc6l778e70gfmsi7o66it31o>
>
>
<http://post.oreilly.com/rd/9z1zq39cv2ns8d665gbpkdae7a49geldqdoc1ce1uf0>*Getting
> Started with Google Wave
> <http://post.oreilly.com/rd/9z1zgdmiupn88atjdsrhj2qc2tqei9s4bqjvh7ea8m8>*
> By Andrés Ferraté
> <http://post.oreilly.com/rd/9z1z1pr72uk72t57g9pievjc0v3ng7k8vbmbfn5rfo8>
>
>
<http://post.oreilly.com/rd/9z1z5577jke5d6qh1k4jt31ti7i49i9rqtkrsane0eo>*Grails
> <http://post.oreilly.com/rd/9z1zpdmckte54sgilee65dncbfsep24aev8e8t2d40g>*
> By Dave Klein
> <http://post.oreilly.com/rd/9z1z933kim691u0k52e1lfpg3afhvbd7e1uh8dq82go>
>
> <http://post.oreilly.com/rd/9z1z9vprddcmspcm8ls4u0n5n37c7d6mvclpms9dfdg>*Great
> Java
> <http://post.oreilly.com/rd/9z1z8a6i7niekqlcdcanotsur21k66qqu5voutppfvo>*
> By Brett McLaughlin
> <http://post.oreilly.com/rd/9z1zt3h4ev0743fqqo800q078ca6st21mqlpe0m5k68>
>
> <http://post.oreilly.com/rd/9z1zrrib9etmnr49o41qqfj5g0nig6r9blgreuqrl78>*Head
> First iPhone Development
> <http://post.oreilly.com/rd/9z1zgr0vfhj7u6a63b87e0scdjjrqkglo3oa8fm4bmg>*
> By Dan Pilone
> <http://post.oreilly.com/rd/9z1zahfldtp0ffaqprfnpa09oj009n4am0uoab522q8>,
> Tracey Pilone
> <http://post.oreilly.com/rd/9z1zpt8onb9jk0odqh2hmei3us1conogf6en165eon0>
>
>
<http://post.oreilly.com/rd/9z1z37n9h29fm3dsdf6ou5g8gccn5u8kijjfogke4to>*Hello,
> Android, Second Edition
> <http://post.oreilly.com/rd/9z1zgpakpg17dken6vk85istsovk1rjv4kqfuc6l8m0>*
> By Ed Burnette
> <http://post.oreilly.com/rd/9z1z86iuv61is4dfqsop05teb3on7i52cflnuts9hv8>
>
>
<http://post.oreilly.com/rd/9z1zrp4fqkjepta18gr4ijs56nethlf856miipo72lo>*iPhone
> Game Development
> <http://post.oreilly.com/rd/9z1zjvr1mqf3kmakhvii6fr11br1oa4mvo4dej4el00>*
> By Paul Zirkle
> <http://post.oreilly.com/rd/9z1z3fm40ot6riiu514ulqui19i4n2fe871994c9q50>,
> Joe Hogue
> <http://post.oreilly.com/rd/9z1zkr217gh1ev57f08vd5o9tork1res27g82sfb6u8>
>
> <http://post.oreilly.com/rd/9z1zppl80gjma8b13fusq98fog33j31jo6q4oocp6mg>*iPod:
> The Missing Manual, Eighth Edition
> <http://post.oreilly.com/rd/9z1zhtu02jfrk2js2bg39t5og9o7dnujdoqfegrsd00>*
> By J.D. Biersdorfer
> <http://post.oreilly.com/rd/9z1zgiji1sgam0q5jh892nkfe09e520msu6a34p8hn0>,
> David Pogue
> <http://post.oreilly.com/rd/9z1z937b4jtlh8ua9ddco3ja7dcdcq05bjde7jpbq48>
>
> <http://post.oreilly.com/rd/9z1z3m0s6lb99n0v0g918g4nieniqvnvrc54bciavto>*Log4J
> <http://post.oreilly.com/rd/9z1ze6d1j5fb6bjrod1oaoejaeqeoqqdbfq9hvhdfjg>*
> By J. Steven Perry
> <http://post.oreilly.com/rd/9z1znuqo5fhsrrvmengte19rdk9cce249bsh328amio>
>
> <http://post.oreilly.com/rd/9z1zn7vgvdpuembiog5fr87f5dcbq50h8ac0mnpsi18>*Make:
> Technology on Your Time Volume 20
> <http://post.oreilly.com/rd/9z1zgkt6lvfq9pu5gscjbu95338o35h1e54dl0epi48>*
> By Mark Frauenfelder
> <http://post.oreilly.com/rd/9z1z7597tmsj75hsk5lqqoqq8gbeb77eanun8bt0o8g>
>
>
<http://post.oreilly.com/rd/9z1zkss9t27l0blvk6m8vg784mpd4lkkgqj7fr66660>*Photosh\
op
> Elements 8 for Mac: The Missing Manual
> <http://post.oreilly.com/rd/9z1zqfdlj85nf64340lafg9f1f0v27t6au9mjft6m30>*
> By Barbara Brundage
> <http://post.oreilly.com/rd/9z1zan98v8ln4ja7l0jk27tpmpht1qc3drcfoqde6mg>
>
>
<http://post.oreilly.com/rd/9z1zft4v7pnpdfhh6d6ob7505r35pvoktnnr5m4gdgo>*Premier\
e
> Elements 8: The Missing Manual
> <http://post.oreilly.com/rd/9z1z5edmu0o7hgq55fc7i72u01cgfk67kehmbsi44jo>*
> By Chris Grover
> <http://post.oreilly.com/rd/9z1zhalhpqlgbvkpk3to6guoacm10m990779s0d8eg8>
>
>
<http://post.oreilly.com/rd/9z1zdp6ev4monso357l3j8tv4pe6ccr9g1t9flnmrd8>*QuickBo\
oks
> 2010: The Missing Manual
> <http://post.oreilly.com/rd/9z1zdfm85e7s6j95eaimog53vo6r30p6803p80eesog>*
> By Bonnie Biafore
> <http://post.oreilly.com/rd/9z1zplq9n4q2lbob1fuonh0raunjce2j97ruuoarumg>
>
> <http://post.oreilly.com/rd/9z1zp2q1f0vh89e21hmku607kqiaobaui375o4d8tr0>*The
> Sustainable Network
> <http://post.oreilly.com/rd/9z1z25ndeequkeciai9rjr5c1vbsu9mg9t1d0ngih1g>*
> By Sarah Sorensen
> <http://post.oreilly.com/rd/9z1z4ocqurccrfhjvhl5dt610qm6spte1rveu16gfio>
>
>
<http://post.oreilly.com/rd/9z1z85h7srs0gssk547lrkrq1iklads42sa730n2f1g>*VMware
> Cookbook
> <http://post.oreilly.com/rd/9z1za7pqq1j643kvk4e16gfa157ajpeggr5esr7hkn8>*
> By Ryan Troy
> <http://post.oreilly.com/rd/9z1zll7ud31ead387d2v2i6mc7h4mg3ei1669cku5lg>,
> Matthew Helmke
> <http://post.oreilly.com/rd/9z1zchfh62ipt0bpoorjgcv4kooq41v42ulv3g07v5o>
>
>
<http://post.oreilly.com/rd/9z1zi00jmee77k20rqlbcmntudhhs7le51e08nvqcq0>*Windows
> 7 Annoyances: Rough Cuts Version
> <http://post.oreilly.com/rd/9z1zae26c4v824mnfrctea7dobp43dus53c29eqbp70>*
>
>
>
> Welcome
>
> Hi there,
>
> The holidays are moving in quickly and soon 2009 will be over. Is your
> group celebrating with a holiday party? Make sure we send books for
> your raffle. One book that should be on every group's list or library
> is Scott Berkun's lastest book Confessions of a Public Speaker
> <http://post.oreilly.com/rd/9z1za6dfiul76g6k8shqg8k2lpfclu1funk40dgpdig>
> that just released this month. This book is funny as well as
> practical. One UG leader told me he read it to his wife. Now how's
> that for an endorsement?
>
> Last month I visited the Atlanta area to attend a gathering of user
> group leaders of all kinds. We had a great turn out and spent the day
> discussing topics such as community, membership, meeting structure,
> sponsorship, and more. Please check out the notes on the group wiki
> <http://post.oreilly.com/rd/9z1zfhe53om8a4bk72m4lo46s5a0q4qv0hricf50qlo>
> when you have a chance.
>
> User group leaders are invited to join the West Coast Community
> Leadership Summit coming up January 9 at DeVry University in Daly
> City. Registration is open
> <http://post.oreilly.com/rd/9z1z9ebqg6ibui125o3nv0j0stkgq7csfbojlag5oq8>.
> Thanks to Michael Van Riper
> <http://post.oreilly.com/rd/9z1zkaal35p3dgvp0c8qvoibrbseo8icq33j8uj7olg>
> for getting the ball rolling. The evening activity will be an Ignite
> at Google in San Francisco. Read on for more details
> <http://post.oreilly.com/rd/9z1zadcsek8vo00r273p9msq59oup1ukeddkqo5g1mo>.
>
> Please pass along any part of this newsletter to your group via email
> or your website and include the discount codes. We offer both a text
> and an HTML version.
>
> Thanks,
>
> --Marsee Henon
>
>
> ------------------------------------------------------------------------
>
> O'Reilly Answers -- Clever Hacks. Creative Ideas. Innovative Solutions.
>
> We're launching the beta of O'Reilly Answers
> <http://post.oreilly.com/rd/9z1zn0nhcgg8ik3qeef04s7ahd22sled35e2u8ckcj0>,
> and I'm inviting you to be part of it. In brief, O'Reilly Answers is a
> community site for sharing knowledge, asking questions, and providing
> answers that brings together our customers, authors, editors,
> conference speakers, and Foo (Friends of O'Reilly). O'Reilly is at the
> center of an amazing exchange of knowledge sharing and idea
> generation, and we want you to join us in changing the world by
> spreading the knowledge of innovators.
>
> What's Hot in O'Reilly Answers:
>
>     * Should I dump my iPhone for an Android?
>       <http://post.oreilly.com/rd/9z1zd1gllab8i7avn14334u4hvsu521kt0qndoji77g>
>     * What are the best iPhone or Android Apps for System
>       Administrators?
>       <http://post.oreilly.com/rd/9z1zgog736e9s6i9pu33g6ntqp1inc7t3jnt8vvfui0>
>     * How to calibrate the iPhone Accelerometer for optimal use
>       <http://post.oreilly.com/rd/9z1z6k633k94859gfgq7f46fr75rt048lslb6ku4d28>
>     * How to support older version of the iPhone SDK
>       <http://post.oreilly.com/rd/9z1zsut85qauaq4ouq4mp0t2g3kj082gidv7bar1ppg>
>     * When can I try MS Project 2010?
>       <http://post.oreilly.com/rd/9z1zpvne2btoa2g2sdl6l6nt0eeqkiabttot3dakidg>
>
>
> ------------------------------------------------------------------------
>
> Great Java on Video
>
> If you're learning something new, doesn't it make sense to learn how
> to do it /well/? Great learning from O'Reilly helps you do just that:
> from start to finish, we teach you tried and true methods for every
> topic we cover, from Java programming to HTML coding, and more. And,
> rather than just sitting and watching, you learn by /doing/, in real
> time. It's as if you're sitting next to a good friend (and programming
> expert) as he shares what he knows and you follow along, step-by-step.
> It's simply a great way to learn.
>
> Throughout the course, you'll progressively learn to code and compile
> programs, work extensively with text, and declare, convert, and cast
> between data types. You'll also read files, get user input, and build
> arrays, including multi-dimensional arrays. Finally, you'll move into
> objects, modeling your data and behavior into core Java structures.
>
> Great Java: Level 1
> <http://post.oreilly.com/rd/9z1zq39qiv1j9cf1g4mc15cl1oan5qu9hbrkh8b6vj0>
> will teach you the fundamentals of Java, from the basics of
> compilation through methods, objects, and the key concepts of good
> programming. By the time you're through these lessons, you'll be
> programming, and programming well.
>
>
> ------------------------------------------------------------------------
>
> Online Conferences in December -- Where 2.0. Velocity, and Gov 2.0
>
> *Where 2.0 Online Conference
> <http://post.oreilly.com/rd/9z1zoj62te7udlk70p7emj938q7j894kv9rmjgs66sg>*
> An Emphasis on iPhone Sensors
> December 3, 9:00 am - 12:45 pm Pacific time
> 25% discount code for User Group members: whrfall09usrg
>
> By creating a widespread platform that allows for third-party
> development and geolocation, iPhones define the state of the art for
> location enabled sensors. Presentations exploring these new
> opportunities include:
>
>     * The Sensors in Your iPhone: Alasdair Allan, University of Exeter
>       and Babilim Light Industries
>     * Augmented Reality: Andreas Alfare, Mobilizy
>     * Location Sensors: Ian Peters-Campbell, Loopt
>     * Working with Audio Input: Martin Roth, RJDJ
>     * Computer Vision and the iPhone Camera: Jeffrey Powers, Occipital
>
> *Velocity Online Conference
> <http://post.oreilly.com/rd/9z1z5kql68ha2k9183778mk7o6lk6f40gnphl2qqb9g>*
> Fast by Default
> December 8, 9:00 am - 12:30 pm Pacific time
> 25% discount code for User Group members: velfall09usrg
>
> The Velocity Online Conference dives into some of the most important
> developments in web performance and operations, including:
>
>     * Performance Impact: How Web Speed Affects Online Business KPIs:
>       Hooman Beheshti
>     * Faster Load Times Through Deferred JavaScript Evaluation:
>       Charles Jolley
>     * Load Balancing & Reverse Proxies with Varnish & More: Artur Bergman
>     * CouchDB from 10,000 Ft: J Chris Anderson
>     * Operations Roundtable: Jesse Robbins, Artur Bergman, Adam Jacob,
>       John Allspaw
>
> *Gov 2.0 Online Conference
> <http://post.oreilly.com/rd/9z1zm7nko3b1he4092g97h6r4to16qurs0pis236of8>*
> Facing Challenges and Winning: Five Gov 2.0 Examples
> December 10, 9:00 am - 12:30 pm Pacific time
> Free!
>
> When citizens interact with their government, powerful things can
> happen. Web 2.0 is the industry which has shown that transparency,
> participation, collaboration add up to increased efficiency. Gov 2.0
> harnesses this for the public good, as we'll explore in these sessions:
>
>     * City of Santa Cruz Budget Crisis: A Blueprint Using Social
>       Media: Peter Koht, City of Santa Cruz
>     * txts 4 africa: Merrick Schaefer, UNICEF
>     * Utah Department of Public Safety Media Portal: Jeff Nigbur,
>       State of Utah, Department of Public Safety
>     * Digital Diplomacy: Understanding Islam through Virtual Worlds:
>       Rita King, Dancing Ink Productions
>
>
> ------------------------------------------------------------------------
>
> Safari Books Online's Coder Challenge and Safari Open House
>
> It's time for the next Safari Books Online's Coder Challenge. Tell us
> about your achievement on or before November 30, 2009
> <http://post.oreilly.com/rd/9z1zqsdtadibnmo1g0drbqg0acaa54i9393211bkbs0>.
>
> We're looking for super techie professionals who stand out in our
> industry -- those who are using technology in creative ways or are
> helping our community in novel ways.
>
> Tell us about a project that demonstrates your super techie
> achievement using the submission form
> <http://post.oreilly.com/rd/9z1zu9ckpj3t6jomlqlu1u2t6kr30jnr0rln9tvulv8>.
> If you're selected as one of the winners, you will receive a 3-month
> subscription to Safari Books Online and an invitation to join Tim
> O'Reilly, CEO and founder of O'Reilly Media, Inc., at a special event
> early next year in California. Winners are selected by a panel of
> judges; however, community votes and comments are encouraged.
>
> *Try the new version of Safari Books Online during our Open House --
> no charge, no strings attached!*
> <http://post.oreilly.com/rd/9z1z8krhmnadmcbu3gvdj0f6i23io8uo2rv6oibsd6o>
>
> O'Reilly Media founder Tim O'Reilly is enthusiastic about the benefits
> of this new release:
> "Safari Books Online 6.0 is a complete, bottom-to-top revamping of the
> original service. The new UI is slicker and faster, with the kind of
> drag-and-drop goodness that people expect from a modern web
> application. In addition, we've added some long-requested features
> that take advantage of the online medium in ways that aren't possible
> with standalone ebooks."
>
> 10 Days Free -- test drive Safari Books Online free for 10 days or 200
> page views. Get your free trial now
> <http://post.oreilly.com/rd/9z1z4ifp9gfj880t7brqlsqi698k8oaalapt7muh1m0>.
>
> For a very limited time, try a Safari Library account on us -- no
> strings attached! Register during our Open House and test drive Safari
> Books Online for up to 10 days or 200 page views.*
>
> *Limited time offer ends November 24, 2009. Not available in all
> countries. Available to new subscribers only. Rough Cuts and Downloads
> not available during trial.
>
>
> ------------------------------------------------------------------------
>
> Reviewers Needed and Book Discount Code
>
> We're always looking for book reviewers, especially on our new
> releases. Titles we're excited about include Confessions of a Public
> Speaker
> <http://post.oreilly.com/rd/9z1zg9cbc5ouega28gqbtbeb20v9gp5aln5qqul84qg>,
> The Sustainable Network
> <http://post.oreilly.com/rd/9z1zm71r3oab0v0a99tqh0mneg6vcm6rdu1gftgv6bg>,
> The Art of SEO
> <http://post.oreilly.com/rd/9z1zbjehslkmaelcd7cuubitnvo2j6ishdn4qk1c7p8>,
> and Getting Started with Google Wave
> <http://post.oreilly.com/rd/9z1zcvcqavk1cla210b2kho2s8kgl0b42oklfaf9aug>.
> If you'd like to write a review of any of these books for Amazon,
> Slashdot, your favorite book community site such as GoodReads or
> Shelfari, or your blog, please send an email to your user group leader
> with the book title and where you'll review it.
>
> Get 35% off from O'Reilly, No Starch, Paraglyph, PC Publishing,
> Pragmatic Bookshelf, Rocky Nook, SitePoint, or YoungJin books and
> ebooks you purchase directly from O'Reilly. Just use code DSUG when
> ordering online or by phone 800-998-9938.
> <http://post.oreilly.com/rd/9z1zmqk4eu438tfgk3el9uldj4u6gqguj253su1bsj0>
>
>
> ------------------------------------------------------------------------
>
> The O'Reilly School of Technolgy Referral Program
>
> The O'Reilly School of Technology (OST) just started a new referral
> program
> <http://post.oreilly.com/rd/9z1zvcnkk7qhq8dpv4vc3cp6khcj4fjkd98475hiveg>.
> For every new student you refer to OST, earn $100 cash or credit
> towards OST courses.
>
> How does it work?
>
>    1. Just register for free so we can create a referral account for
>       you. (If you're a current or past OST student, you are
>       automatically registered -- just log in.)
>    2. Then we'll give you a special website URL to post as a link on
>       your website, Facebook, LinkedIn, or MySpace page. If you like,
>       you can use banners we provide.
>    3. Or, you can simply give your email address to your friends to
>       use when enrolling so that we know you referred them.
>    4. Log in to your Referral account and watch the money come in!
>
> Here's the FAQ for more info.
> <http://post.oreilly.com/rd/9z1z06vsfp973q95o8itoldtnq9qpo7g4drnk30v7ko>
>
> *O'Reilly School of Technology Courses: UG Members Receive a 30%
> Discount*
> <http://post.oreilly.com/rd/9z1zsqb70g2sieo8po3tsh1o56dp1jp5b970qg63ioo>
>
> By enrolling in the O'Reilly School of Technology, you can stay
> competitive in Information Technology without the high cost or huge
> time commitment. Our courses work around YOUR schedule, not the other
> way around. And within months, not only will you have the University
> of Illinois Certificate to display on your resume, you'll also have a
> portfolio of projects that are sure to impress in your interviews!
>
> OST's full-price tuitions are already lower than comparable continuing
> education or community college courses. However, as an O'Reilly User
> Group member, you save an additional 30% on all the courses in the
> following University of Illinois Certificate Series:
>
>     * Database Administration Certificate
>     * Java Programming
>     * PHP/SQL Programming
>     * Linux/Unix System Administration
>     * Web Programming
>     * Open Source Programming
>     * .NET Programming
>     * Client-Side Web Programming featuring AJAX
>
> To redeem, use Promotion Code "ORALL1" good for a 30% discount, in
> Step #2 of the enrollment process. Each course comes with a free
> O'Reilly book and a 7-day money-back guarantee.
>
>
> ------------------------------------------------------------------------
>
> UG leaders only -- Put Up a Banner, Get a Free Book
>
> We're looking for user groups to display our discount banners on their
> web sites. If you send me a link to your group's site with one or more
> banners posted, I'll send you the O'Reilly book(s) of your choice.
> Choose from the following list:
>
>     * O'Reilly Answers
>       <http://post.oreilly.com/rd/9z1zijek708r58bp5pss48212kculspv5oaaova4qag>
>     * The Art Of Community
>       <http://post.oreilly.com/rd/9z1z880mb8qtaol43a0sthoioeau7tetqomplkkfqb0>
>     * O'Reilly School of Technology Banners
>       <http://post.oreilly.com/rd/9z1zcfhf3clpmmj9m6d6veect0hqoe5u9qdvfo8tt80>
>     * Customizable O'Reilly Book Widgets
>       <http://post.oreilly.com/rd/9z1zffuh156qqsabubaau4i0lhvqg8ijc9dpb5elqi0>
>     * 35% off User Group Discount Banner
>       <http://post.oreilly.com/rd/9z1z7g9ilvtldddbnenjn3fkujhur27qsg6abmm9c18>
>
>
>
> ------------------------------------------------------------------------
>
> Upcoming Events
>
> Kirk Haines
> <http://post.oreilly.com/rd/9z1zl6sfe6n6278piislmbf7ocjkg5bta3nr91b8mn8>
>
> *Webcast: Tokyo Cabinet in One Hour
> <http://post.oreilly.com/rd/9z1zhgumoajpsn2brd5d8s9ignha73r7a1scv3l6g2o>*
> *When*: Nov 17, 2009
> Tokyo Cabinet is a fast, synchronous key/value database library with
> support for several major languages, including Ruby. We will look at
> both its benefits and its problems, and work through several examples
> that demonstrate its capabilities, ease of use from Ruby, and
> performance potential. At the end of the talk there will be a question
> and answer session.
>
> *O'Reilly at PDC2009 Professional Developer's Conference
> <http://post.oreilly.com/rd/9z1z243su5407dptv38r8g24u86ole5dtohv6lv4n38>*
> *When*: Nov 17-19, 2009
> *Where*: Los Angeles Convention Center Los Angeles, CA
> Stop by the O'Reilly booth (Booth #112) and say hi. We'll be giving
> books away during the event. Meet your favorite O'Reilly authors on
> Tuesday, November 18 from 6-8pm, during the Expo Reception.
>
> Scott Berkun
> <http://post.oreilly.com/rd/9z1zv9q1fk3u66ivhm3tue5rll8opfgh1sv7f7t0lt0>
>
> *Scott Berkun at Web 2.0 Expo New York
> <http://post.oreilly.com/rd/9z1zv0i9a9vdsjq5r6gdlg3jj4tsg9sdjq7g9dg007o>*
> *When*: Nov 18, 2009
> *Where*: Jacob K. Javits Convention Center New York
> Author Scott Berkun (*Confessions of a Public Speaker*
> <http://post.oreilly.com/rd/9z1zt5g63gsteo6kv7oili5mic1l6a9u8ql20bs25m8>)
> will be speaking about his new book.
>
> More Upcoming Events >>
> <http://post.oreilly.com/rd/9z1zf96gcp6eo82b8uiljjj60bhaqkiqapbt0qkibc0>
>
>
> Spreading the knowledge of innovators.
>
<http://post.oreilly.com/rd/9z1zv20qia4nk4qu6p3m68nan8bp6m1gv4s1ppr8gfo>O'Reilly\
.com
> <http://post.oreilly.com/rd/9z1zvmct0u94m5al3caiku6cm765gnhanu6ddh160vg>
>
> You are receiving this email because you are a User Group contact with
> O'Reilly Media. If you would like to stop receiving this newsletter
> please email marsee@... <mailto:%20marsee@...> with
> your request.
>
> O'Reilly Media, Inc. 1005 Gravenstein Highway North, Sebastopol, CA
> 95472 (707) 827-7000
> http://oreilly.com/
> <http://post.oreilly.com/rd/9z1zr1c92npeiiv5lm0h17j6ua5jlal5m6f86g4bjf8>
> | http://ug.oreilly.com/
> <http://post.oreilly.com/rd/9z1z9m9rjg1u5n4lh1re51gdli5240or6rk8qoi1ddo>
>
> Forward this announcement:
> http://post.oreilly.com/f2f/9z1z4duoj88r921qnh6vfd9q370qvtm1o3mvhpoklto
>

--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/

Silicon Valley Flex User Group (SilvaFUG)
User Group Manager
Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org <http://www.silvafug.org/>
Mailing list (with job announcements):
http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings):
http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
<http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm>
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary

#1516 From: Keith Sutton <keith_sutton100@...>
Date: Sun Nov 15, 2009 9:34 pm
Subject: Free Flex 4 Training on Nov 20th - 8:30 AM start (not PM)
keith_sutton100
Offline Offline
Send Email Send Email
 
Regarding the Nov 20th Free Flex 4 training in San Francisco, the start time is 8:30 AM not PM
--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1515 From: josh rotenberg <joshrotenberg@...>
Date: Fri Nov 13, 2009 9:25 pm
Subject: Re: Modules in Flex
joshrotenberg
Online Now Online Now
Send Email Send Email
 
To add to this ...

If you are using PureMVC already, you might checkout Fabrication (if you haven't already) at http://code.google.com/p/fabrication  , both specific to using modules and in general for, um, some PureMVC pain reduction.

Josh

On Thu, Nov 12, 2009 at 4:39 PM, Christopher Luebcke <cluebcke@...> wrote:
 

I used them somewhat extensively for a Flex 3 project a couple years back, but it's been a while and there must be others on this list with more immediate and extensive experience than me. That said, yes, they do work, though you'll find a lot of disenchantment out in the interwebs for various reasons. From my own experience, the two cautions I would make are:

1. It's important to follow the pattern of using clean interface boundaries around your modules. If you don't do so, you end up including classes into multiple SWFs (usually your main application and one or more modules). (See http://livedocs.adobe.com/flex/3/html/help.html?content=modular_7.html#188322 , specifically the last section on interfaces)

2. It's also very important that any singletons used across your application are referenced in you main app before being referenced in any of the modules. This usually comes up with the built in *Manager classes, especially HistoryManager (which is referenced by a bunch of Flex components). (See http://cookbooks.adobe.com/post_Common_issues_when_developing_modular_Flex_applica-7483.html)

I'd be interested in hearing more gotchas and best practices. Also, anyone have experience with subapplications? I'm fuzzy on the distinction and when you'd choose subapps over modules or vice versa.

- Chris


From: Keith Sutton <keith_sutton100@...>
To: silvafug@yahoogroups.com
Sent: Thu, November 12, 2009 2:59:48 PM
Subject: [silvafug] Modules in Flex

 

I have heard various comments on Modules - do they work and does anyone have an examples? I was delighted to see PureMVC Multi-core handles them.

Would anyone like to give a presentation on the topic in the future at silvafug ???

--
Best Regards,
Keith Sutton
keith_sutton100@ hotmail.com



#1514 From: Keith Sutton <keith_sutton100@...>
Date: Fri Nov 13, 2009 7:14 pm
Subject: Chet Haase - SilvaFUG - Wrap - Things are just getting better and better
keith_sutton100
Offline Offline
Send Email Send Email
 
All,

I think everyone knows I got a little excited about Chet's presentation when I saw it on Nov 10th. We had a full house on Nov 12th in San Jose (70 people, and needed to drag in more chairs and luckily ordered an additional pizza). I encourage you to look at the comments on the Meetup session, especially Chet, as this has turned out to be one of an 'epiphany' session for many: http://ria.meetup.com/12/calendar/11708589/

As a result of this session I am discussing with Chet and a few others who have stepped forward that are RIA UI experience design background in business and enterprise applications - this will be a future topic early in the new year!

Thanks all for making this months sessions a success. Things are getting baked for the Dec 3rd Pitch Night. The new year is going to be awesome!!!
--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1513 From: "Karthik Kailash" <karthik@...>
Date: Fri Nov 13, 2009 8:09 am
Subject: SocialVision Seeks Flex Developer
redflame126
Offline Offline
Send Email Send Email
 

Hi Silvafugs,

 

I had the pleasure of addressing the crowd at the excellent meetup yesterday, concerning SocialVision’s pressing need to find 1 or maybe 2 people to fill Flex development positions.  I was told that the mailing list has many more eager individuals.  So, here is the job description:

 

 

THE COMPANY

 

SocialVision is an angel-funded, innovative Berkeley-based startup whose premier product helps make online video a social experience.  We help media companies monetize their existing content and increase ROI for advertisers.  Our mission is to make online television more fun and interactive by creating new social experiences around it.  We’re rapidly growing and working aggressively to meet pivotal timelines for major customers.

 

THE OPPORTUNITY

 

Work with the innovative SocialVision product team to write custom components to enhance the social experience around video; to make things that have never been done on a video site before, happen. You'll help architect and write the client-side code and work with the team to figure out testing plans, backend integration, and chat/XMPP integration. 

 

JOB REQUIREMENTS

  • 3+ years of experience with Flash and Flex
  • Understanding of and experience with UI architectures (e.g. Cairngorm)
  • Deep understanding of Flex component lifecycle
  • Experience building custom Flex components
  • Experience working with design to implementation workflow using Adobe tools (FXG/Catalyst a plus)
  • Excellent software development foundation (design patterns, best practices, coding conventions, etc.)

BENEFITS

 

Possibility of ownership/equity of a rapidly growing company. 

Casual work environment with great flexibility.​

Exposure to a wide range of technologies offering tremendous professional growth.​

 

APPLY:

Please email your resume to careers@....

See more at http://www.socialvisioninc.com/jobs.html?refer=silvafug

 

 

Cheers,
Karthik

 

___________________________________________

Karthik Kailash

Cell: (408) 768-7704

SV Email Signature

www.socialvisioninc.com

"Online Television Becomes a Social Experience"

 


#1512 From: Christopher Luebcke <cluebcke@...>
Date: Fri Nov 13, 2009 12:39 am
Subject: Re: Modules in Flex
cluebcke
Online Now Online Now
Send Email Send Email
 
I used them somewhat extensively for a Flex 3 project a couple years back, but it's been a while and there must be others on this list with more immediate and extensive experience than me. That said, yes, they do work, though you'll find a lot of disenchantment out in the interwebs for various reasons. From my own experience, the two cautions I would make are:

1. It's important to follow the pattern of using clean interface boundaries around your modules. If you don't do so, you end up including classes into multiple SWFs (usually your main application and one or more modules). (See http://livedocs.adobe.com/flex/3/html/help.html?content=modular_7.html#188322 , specifically the last section on interfaces)

2. It's also very important that any singletons used across your application are referenced in you main app before being referenced in any of the modules. This usually comes up with the built in *Manager classes, especially HistoryManager (which is referenced by a bunch of Flex components). (See http://cookbooks.adobe.com/post_Common_issues_when_developing_modular_Flex_applica-7483.html)

I'd be interested in hearing more gotchas and best practices. Also, anyone have experience with subapplications? I'm fuzzy on the distinction and when you'd choose subapps over modules or vice versa.

- Chris


From: Keith Sutton <keith_sutton100@...>
To: silvafug@yahoogroups.com
Sent: Thu, November 12, 2009 2:59:48 PM
Subject: [silvafug] Modules in Flex

 

I have heard various comments on Modules - do they work and does anyone have an examples? I was delighted to see PureMVC Multi-core handles them.

Would anyone like to give a presentation on the topic in the future at silvafug ???

--
Best Regards,
Keith Sutton
keith_sutton100@ hotmail.com


#1511 From: Keith Sutton <keith_sutton100@...>
Date: Thu Nov 12, 2009 10:59 pm
Subject: Modules in Flex
keith_sutton100
Offline Offline
Send Email Send Email
 
I have heard various comments on Modules - do they work and does anyone have an examples? I was delighted to see PureMVC Multi-core handles them.

Would anyone like to give a presentation on the topic in the future at silvafug ???
--
Best Regards,
Keith Sutton
keith_sutton100@...


#1510 From: Keith Sutton <keith_sutton100@...>
Date: Thu Nov 12, 2009 4:53 pm
Subject: Re: [ria-12] Free training from roundpeg and Adobe - Free Flash Builder 4 beta
keith_sutton100
Offline Offline
Send Email Send Email
 
Sign-up everyone! I got feedback last night that this will be good for anyone wanting to learn FB4 - I will post a 'Heads-Up' on Meetup.

See you there

Chris Luebcke wrote:
Registration is here:


There should have been a "register" button in that email, but regardless the link above has the general info, and the list of training locations and dates on the right side.

Pursuant to Keith's earlier point, the event site makes the following statement:

If you are an experienced ColdFusion developer and you've looked at Flex before and had trouble getting started, we think you will find that the new Flash Builder 4 will make Flex more approachable.

From having browsed the curriculum, my personal impression is that people without a decent ColdFusion background would probably struggle; the course seems to expect fluency with CF, and is really meant to bring CF developers into the Flex fold. So, the net is fairly narrowly cast but I figured that there might be at least a few people in this group who could benefit from it.

- Chris


From: Vivian Richards <kanpsack@...>
To: ria-12@...
Sent: Wed, November 11, 2009 4:10:32 PM
Subject: Re: [ria-12] Free training from roundpeg and Adobe



   Chris how do we register?




On Wed, Nov 11, 2009 at 3:59 PM, Chris Luebcke <cluebcke@...> wrote:
Hey folks, wanted to make you aware of this free training event, Flex for ColdFusion Developers, we're putting on with Adobe. The Bay Area one is in SF next Friday (11/20).

(Also I'm crossing my fingers that this HTML email survives; if not I'll send a legible text-only version. I hope it does, though, so you can see how Flash Builder bestows beer and hook'em horns on CF developers).

Cheers,
Chris Luebcke
Director of Technology, roundpeg inc.


   
 

roundpeg, with Adobe, will be offering two free full-day, hands-on training sessions.

Learn how to build Flex applications using the latest Flash Builder 4 beta software.

ColdFusion developers get started adding rich UI to your existing and new ColdFusion applications.

 
 

Tuesday, November 17

Radisson Hotel Newport Beach 4545 MacArthur Boulevard Newport Beach, CA 92660

Event: 9am — 4pm

Registration: 8:30am

Friday, November 20

Adobe
601 Townsend Street

San Francisco, CA 94103

Event: 9am — 4pm

Registration: 8:30am

 
   
 

Questions about these sessions or roundpeg’s training, development or licensing services
please contact Melissa 949-340-8498 melissa@...

 
 
 
         
       

888.266.0313      roundpeg.com

 




If you no longer wish to receive these emails, please reply to this message with "Unsubscribe" in the subject line or simply click on the following link: Unsubscribe

roundpeg, inc.
4590 MacArthur Blvd.
Suite 175
Newport Beach, CA 92660

p. 415.358.5001
info@...

Read the VerticalResponse marketing policy.

Try Email Marketing with VerticalResponse!




--
Please Note: If you hit "REPLY", your message will be sent to everyone on this mailing list (ria-12@...)
This message was sent by Chris Luebcke (cluebcke@...) from Silicon Valley Flex User Group (SilvaFUG).
To learn more about Chris Luebcke, visit his/her member profile
To unsubscribe or to update your mailing list settings, click here

Meetup Inc. PO Box 4668 #37895 New York, New York 10163-4668 | support@...





--
Please Note: If you hit "REPLY", your message will be sent to everyone on this mailing list (ria-12@...)
This message was sent by Vivian Richards (kanpsack@...) from Silicon Valley Flex User Group (SilvaFUG).
To learn more about Vivian Richards, visit his/her member profile
To unsubscribe or to update your mailing list settings, click here

Meetup Inc. PO Box 4668 #37895 New York, New York 10163-4668 | support@...




--
Please Note: If you hit "REPLY", your message will be sent to everyone on this mailing list (ria-12@...)
This message was sent by Chris Luebcke (cluebcke@...) from Silicon Valley Flex User Group (SilvaFUG).
To learn more about Chris Luebcke, visit his/her member profile
To unsubscribe or to update your mailing list settings, click here

Meetup Inc. PO Box 4668 #37895 New York, New York 10163-4668 | support@...

--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1509 From: Keith Sutton <keith_sutton100@...>
Date: Thu Nov 12, 2009 12:05 am
Subject: Re: Free training from roundpeg and Adobe
keith_sutton100
Offline Offline
Send Email Send Email
 
Before anyone asks the question - I have inquired to Adobe if this would also be appropriate to Flex newbies in general - I am still waiting for the answer and imagine the lay-offs took higher priority on peoples minds yesterday. I will get back to you.

K

Christopher Luebcke wrote:
 
Hey folks, wanted to make you aware of this free training event, Flex for ColdFusion Developers, we're putting on with Adobe. The Bay Area one is in SF next Friday (11/20).

(Also I'm crossing my fingers that this HTML email survives; if not I'll send a legible text-only version. I hope it does, though, so you can see how Flash Builder bestows beer and hook'em horns on CF developers).

Cheers,
Chris Luebcke
Director of Technology, roundpeg inc.


   
 

roundpeg, with Adobe, will be offering two free full-day, hands-on training sessions.

Learn how to build Flex applications using the latest Flash Builder 4 beta software.

ColdFusion developers get started adding rich UI to your existing and new ColdFusion applications.

 
 

Tuesday, November 17

Radisson Hotel Newport Beach 4545 MacArthur Boulevard Newport Beach, CA 92660

Event: 9am — 4pm

Registration: 8:30am

Friday, November 20

Adobe
601 Townsend Street

San Francisco, CA 94103

Event: 9am — 4pm

Registration: 8:30am

 
   
 

Questions about these sessions or roundpeg’s training, development or licensing services
please contact Melissa 949-340-8498 melissa@roundpeg.com

 
 
 
         
       

888.266.0313      roundpeg.com

 




If you no longer wish to receive these emails, please reply to this message with "Unsubscribe" in the subject line or simply click on the following link: Unsubscribe

roundpeg, inc.
4590 MacArthur Blvd.
Suite 175
Newport Beach, CA 92660

p. 415.358.5001
info@roundpeg.com

Read the VerticalResponse marketing policy.

Try Email Marketing with VerticalResponse!

--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1508 From: Christopher Luebcke <cluebcke@...>
Date: Wed Nov 11, 2009 11:58 pm
Subject: Free training from roundpeg and Adobe
cluebcke
Online Now Online Now
Send Email Send Email
 
Hey folks, wanted to make you aware of this free training event, Flex for ColdFusion Developers, we're putting on with Adobe. The Bay Area one is in SF next Friday (11/20).

(Also I'm crossing my fingers that this HTML email survives; if not I'll send a legible text-only version. I hope it does, though, so you can see how Flash Builder bestows beer and hook'em horns on CF developers).

Cheers,
Chris Luebcke
Director of Technology, roundpeg inc.


   
 

roundpeg, with Adobe, will be offering two free full-day, hands-on training sessions.

Learn how to build Flex applications using the latest Flash Builder 4 beta software.

ColdFusion developers get started adding rich UI to your existing and new ColdFusion applications.

 
 

Tuesday, November 17

Radisson Hotel Newport Beach 4545 MacArthur Boulevard Newport Beach, CA 92660

Event: 9am — 4pm

Registration: 8:30am

Friday, November 20

Adobe
601 Townsend Street

San Francisco, CA 94103

Event: 9am — 4pm

Registration: 8:30am

 
   
 

Questions about these sessions or roundpeg’s training, development or licensing services
please contact Melissa 949-340-8498 melissa@...

 
 
 
         
       

888.266.0313      roundpeg.com

 




If you no longer wish to receive these emails, please reply to this message with "Unsubscribe" in the subject line or simply click on the following link: Unsubscribe

roundpeg, inc.
4590 MacArthur Blvd.
Suite 175
Newport Beach, CA 92660

p. 415.358.5001
info@...

Read the VerticalResponse marketing policy.

Try Email Marketing with VerticalResponse!

#1507 From: Keith Sutton <keith_sutton100@...>
Date: Wed Nov 11, 2009 11:49 pm
Subject: Pitch Night Coaching and Practice Session - Coaches
keith_sutton100
Offline Offline
Send Email Send Email
 
Good question Vivian, coaches (and there may be more) added in bold below.
  • San Jose - Adobe HQ at 345 Park Ave, San Jose
    • Nov 11th - 6:30 in the Albertus Room, West Tower - Ed Dunphy
    • Nov 25th - 6:30 in the Albertus Room, West Tower - Ed Dunphy, Esther Lee
  • San Francisco - Adobe building at 601 Townsend Street, San Francisco
    • Nov 18th - 6:30 in the Kodak Room - Ted Patrick
    • Nov 24 - 6:30 in the Kodak Room - Ted Patrick
  • Dress Rehearsal at Plug and Play - Dec 1st
  • Pitch Night at Plug and Play - Dec 3rd - http://ria.meetup.com/12/

Vivian Richard wrote:
Hey Kith who is coming as the coach for SJ and SF pitch night coaching.
I kind of heard that it is going to be Ted Patrick. is he gonna be the one?
Please let me know ASAP. I need to adjust my schedule accordingly!!!!
Regards...
On Tue, Nov 10, 2009 at 12:06 PM, Keith Sutton <info@...> wrote:
Your Assistant Organizer, Keith Sutton, sent the following message to some
members of Silicon Valley Flex User Group (SilvaFUG):
----------------------------------------------------------------
Announcing a new Meetup for Silicon Valley Flex User Group (SilvaFUG)!
What: Pitch Night Coaching and Practice Session - San Jose
When: November 11, 2009 6:30 PM
Where:
Adobe HQ - San Jose
East Tower 345 Park Ave
San Jose, CA 95110
408-536-6000
For those interested in learning and/or participating in the up-coming Flash
Platform Pitch Night (Dec 3rd) this is an evening of coaching and practice.
Templates and materials are available for everyone at:
http://silvafug.org/downloads/Flex%20and%20Flash%20Platform%20Startup%20Pitch%20Guidance.zip
There will be pizza at $2 / person based on 'Yes' RSVP so sign-up as 'Maybe'
is you are interested but not sure.
Learn more here:
http://ria.meetup.com/12/calendar/11843677/
----------------------------------------------------------------
To visit Silicon Valley Flex User Group (SilvaFUG), go here:
http://ria.meetup.com/12/
Add info@... to your address book to receive all your Meetup emails.
To manage your email settings, click here.
Questions? You can email Meetup Support at: support@...
Meetup Inc. PO Box 4668 #37895 New York, New York 10163-4668


--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1506 From: Vivian Richard <kanpsack@...>
Date: Wed Nov 11, 2009 10:14 pm
Subject: Re: Re: O'Reilly UG News: Try the all new Safari Books Online - 10 days free - no charge, no strings attached!
hworke
Offline Offline
Send Email Send Email
 


     Who will coach us in tonight's "Pitch Night Coaching" session?



On Wed, Nov 11, 2009 at 12:33 PM, Keith Sutton <keith_sutton100@...> wrote:
FYI

Marsee Henon wrote:

Hi there.
Can you please share this info with your user group? You can post on your mailing list or your group page.
Thanks for your help,
Marsee

If you would like to view this information in your browser, click here.

Home Books & Videos Answers News Safari Books Online Conferences Training School of Tech

safari banner

Try the new version of Safari Books Online during our Open House — no charge, no strings attached! O'Reilly Media founder Tim O'Reilly is enthusiastic about the benefits of this new release:

Tim O'Reilly"Safari Books Online 6.0 is a complete, bottom-to-top revamping of the original service. The new UI is slicker and faster, with the kind of drag-and-drop goodness that people expect from a modern web application. In addition, we've added some long-requested features that take advantage of the online medium in ways that aren't possible with standalone ebooks."

There has never been a better time to check out Safari Books Online:

icon books

Access 8,500 Books & Videos
Enjoy unlimited online access to more than 8,500 books and videos from the world's leading publishers, including O'Reilly Media, Addison-Wesley, Prentice Hall, Microsoft Press, Apress, Manning, Total Training, PeepCode and more.

icon bulb

Search Multiple Sources on One Platform
Quickly search across the entire library to pinpoint just the information you need. You can even save your favorite searches as folders you name that automatically update as new information is added!

icon rough

Read Books Before They are Published
Be the first to learn about cutting edge topics. Read pre-publication manuscripts and interact with the authors.

icon folders

Organize Your Favorites
Create your own Favorites Folders for the books and videos you use the most. Drag and drop titles into folders. Build your own custom digital library within Safari Books Online.

icon paper

Use Time-Saving Tools
Rate and review books, attach your own notes, assign tags, highlight sections and bookmark pages of books as you read them. You can then search across your highlights, notes, and tags or even build and print custom summary documents.

icon mobile

Get Information Where You Need It
Read mobile-friendly books directly from cell phones and mobile devices. Receive five download tokens per month to download chapters or full books to print or read offline.

10 days free
Forward It On!

pass it on Know someone who might be interested?
what customers
Whether you need to stay on the cutting edge of your field, learn new skills, or prepare for certification exams, you can learn more and spend less with Safari Books Online.

See for Yourself.
Try the New Safari Books Online On Us


For a very limited time, try a Safari Library account on us -- no strings attached! Register during our Open House and test drive Safari Books Online for up to 10 days or 200 page views.*

Start Your 10 Day Trial Now
sponsors

*Limited time offer ends November 24, 2009. Not available in all countries. Available to new subscribers only. Rough Cuts and Downloads not available during trial.

Copyright 2009, Safari Books Online, LLC
1003 Gravenstein Hwy North | Sebastopol, CA 95472
All rights reserved.
Marsee Henon
O'Reilly
1005 Gravenstein Highway North
Sebastopol, CA 95472
800-998-9938
ug.oreilly.com
Follow us on Twitter at: twitter.com/OReillyMedia

You are receiving this email because you are a User Group contact with O'Reilly Media. If you would like to stop receiving these newsletters or announcements from O'Reilly, send an email to marsee@....


--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary



#1505 From: Keith Sutton <keith_sutton100@...>
Date: Wed Nov 11, 2009 8:33 pm
Subject: Re: O'Reilly UG News: Try the all new Safari Books Online - 10 days free - no charge, no strings attached!
keith_sutton100
Offline Offline
Send Email Send Email
 
FYI

Marsee Henon wrote:
O'Reilly Media, Inc.

Hi there.
Can you please share this info with your user group? You can post on your mailing list or your group page.
Thanks for your help,
Marsee

If you would like to view this information in your browser, click here.

Home Books & Videos Answers News Safari Books Online Conferences Training School of Tech

safari banner

Try the new version of Safari Books Online during our Open House — no charge, no strings attached! O'Reilly Media founder Tim O'Reilly is enthusiastic about the benefits of this new release:

Tim O'Reilly"Safari Books Online 6.0 is a complete, bottom-to-top revamping of the original service. The new UI is slicker and faster, with the kind of drag-and-drop goodness that people expect from a modern web application. In addition, we've added some long-requested features that take advantage of the online medium in ways that aren't possible with standalone ebooks."

There has never been a better time to check out Safari Books Online:

icon books

Access 8,500 Books & Videos
Enjoy unlimited online access to more than 8,500 books and videos from the world's leading publishers, including O'Reilly Media, Addison-Wesley, Prentice Hall, Microsoft Press, Apress, Manning, Total Training, PeepCode and more.

icon bulb

Search Multiple Sources on One Platform
Quickly search across the entire library to pinpoint just the information you need. You can even save your favorite searches as folders you name that automatically update as new information is added!

icon rough

Read Books Before They are Published
Be the first to learn about cutting edge topics. Read pre-publication manuscripts and interact with the authors.

icon folders

Organize Your Favorites
Create your own Favorites Folders for the books and videos you use the most. Drag and drop titles into folders. Build your own custom digital library within Safari Books Online.

icon paper

Use Time-Saving Tools
Rate and review books, attach your own notes, assign tags, highlight sections and bookmark pages of books as you read them. You can then search across your highlights, notes, and tags or even build and print custom summary documents.

icon mobile

Get Information Where You Need It
Read mobile-friendly books directly from cell phones and mobile devices. Receive five download tokens per month to download chapters or full books to print or read offline.

10 days free
Forward It On!

pass it on Know someone who might be interested?
what customers
Whether you need to stay on the cutting edge of your field, learn new skills, or prepare for certification exams, you can learn more and spend less with Safari Books Online.

See for Yourself.
Try the New Safari Books Online On Us


For a very limited time, try a Safari Library account on us -- no strings attached! Register during our Open House and test drive Safari Books Online for up to 10 days or 200 page views.*

Start Your 10 Day Trial Now
sponsors

*Limited time offer ends November 24, 2009. Not available in all countries. Available to new subscribers only. Rough Cuts and Downloads not available during trial.

Copyright 2009, Safari Books Online, LLC
1003 Gravenstein Hwy North | Sebastopol, CA 95472
All rights reserved.
Marsee Henon
O'Reilly
1005 Gravenstein Highway North
Sebastopol, CA 95472
800-998-9938
ug.oreilly.com
Follow us on Twitter at: twitter.com/OReillyMedia

You are receiving this email because you are a User Group contact with O'Reilly Media. If you would like to stop receiving these newsletters or announcements from O'Reilly, send an email to marsee@....


--
Best Regards,
Keith Sutton
keith_sutton100@...
LinkedIn: http://www.linkedin.com/in/keithsutton
Blog: http://keithsutton.wordpress.com/


Silicon Valley Flex User Group (SilvaFUG)
User Group Manager

Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements): http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings): http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary


#1504 From: Don Huntley <donald_huntley@...>
Date: Wed Nov 11, 2009 7:49 pm
Subject: Re: Available for Flex Development and Training Opportunities
donald_huntley
Offline Offline
Send Email Send Email
 
Greg,
Outstanding resume.
A couple things you may want to look at:
1. email hyperlink doesn't work (prefixes a '/')
2. Word-formatted resume link brings up pdf
I'm sure you'll be generating lots of interest!
Don

--- On Wed, 11/11/09, Greg Lafrance <glafrance@...> wrote:

From: Greg Lafrance <glafrance@...>
Subject: [silvafug] Available for Flex Development and Training Opportunities
To: silvafug@yahoogroups.com
Date: Wednesday, November 11, 2009, 10:06 AM

 

I've been working in Flex part-time for three years and was just laid off from Adobe yeasterday (along with 678 others).

So I'm now available for contract or full-time Flex development.

I also provide quality training in Adobe Flex.

You can pull my resume from my web site:

http://www.ChikaraD ev.com

Thanks,
Greg



#1503 From: Keith Sutton <keith_sutton100@...>
Date: Wed Nov 11, 2009 6:48 pm
Subject: SilvaFUG: Chet Haase's presentation 10 and 12 Nov - Blogged
keith_sutton100
Offline Offline
Send Email Send Email
 
#1502 From: Andreas Falley <andreas.falley@...>
Date: Wed Nov 11, 2009 8:21 am
Subject: Kenlighten - A social network for knowledge seekers and providers
overdahype
Offline Offline
Send Email Send Email
 
Hmmm.... file that under silva-what-the-fug?

--
- Andreas
________________________________________

I have no special talents
I am just passionately curious
- Einstein

#1501 From: "Greg Lafrance" <glafrance@...>
Date: Wed Nov 11, 2009 3:06 pm
Subject: Available for Flex Development and Training Opportunities
greg_lafrance
Offline Offline
Send Email Send Email
 
I've been working in Flex part-time for three years and was just laid off from
Adobe yeasterday (along with 678 others).

So I'm now available for contract or full-time Flex development.

I also provide quality training in Adobe Flex.

You can pull my resume from my web site:

http://www.ChikaraDev.com

Thanks,
Greg

#1499 From: Keith Sutton <keith_sutton100@...>
Date: Mon Nov 9, 2009 10:01 pm
Subject: Adobe and RIM news
keith_sutton100
Offline Offline
Send Email Send Email
 
#1498 From: Keith Sutton <keith_sutton100@...>
Date: Mon Nov 9, 2009 4:09 pm
Subject: Flex and Flash Developers eZine - new issue
keith_sutton100
Offline Offline
Send Email Send Email
 
FYI

Ewa Samulska wrote:
> Hello Dear FFD Readers,
>
>
> New issue is on our plate - no need to signing up to newsletter if you
> do not want to, just click and download the November issue -
> http://ffdmag.com/download-6-2009.
>
> Please spread a word about the new issue! your help is really
> appreciated!
>
>
>
> Cheers,
>
> Regards,
>
> Ewa Samulska
> Marketing and Editorial Manager
> FFD Magazine | Photoshop (Retouch&Digital Painting)
>
> Email: ewa.samulska@... | ewa.samulska@...
> Phone: 1-917-338 - 3631
> Visit: www.ffdmag.com | www.psdmag.org/en
> Follow us on Twitter: http://twitter.com/flashandflexmag
> ----- Original Message ----- From: "Keith Sutton"
> <keith_sutton100@...>
> To: <ewa.samulska@...>
> Sent: Wednesday, June 24, 2009 5:23 PM
> Subject: FFD| USERGROUPS
>
>
>> Silicon Valley Flex User Group (SilvaFUG)
>>
>> 125 Concord Circle
>> Mountain View
>> CA 94040
>>
>> Regards,
>> Keith Sutton
>
>
>

--

Best Regards,
Keith Sutton
keith_sutton100@...
Silicon Valley Flex User Group (SilvaFUG)
User Group Manager
Silicon Valley Flex User Group (SilvaFUG)
Website: http://www.silvafug.org
Mailing list (with job announcements):
http://tech.groups.yahoo.com/group/silvafug/
Events: http://ria.meetup.com/12/
LinkedIn Group (with job postings):
http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm
<http://www.linkedin.com/groups?home=&gid=2376098&trk=anet_ug_hm>
Adobe Groups: http://groups.adobe.com/groups/7fef6a84aa/summary

#1497 From: "ktheta20" <ktheta20@...>
Date: Thu Nov 5, 2009 10:25 pm
Subject: Networking for Flex UI Architect/Developer for VMware
ktheta20
Offline Offline
Send Email Send Email
 
I want to see if anyone can recommend some developers that I should reach out
to.  We are looking for strong UI developer that has experience developing large
scale Flex UI applicaitons to lead in the design & development of the Flex UI
for our pre 1.0 vCloud Saas Product.  Any help would be greatly appreciate.  You
can email me at antoniob@...

Thanks,

Antonio Busalacchi

Messages 1497 - 1527 of 1600   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help