RE: [flexcoders] Minimal webapp

2005-07-20 Thread Matt Chotin










There is a keep-generated-swfs flag in the
flex-config.xml that you could set and then you can simply point your browser
at the SWF.  If you’re adjusting the html wrapper you can just save off a
copy of the one generated for your MXML file and edit it appropriately.

 

Feel free to talk to a MM sales rep about
your issue.  I’m sure someone can work with you to help provide the
resources you need for an effective demo if it provides a good chance of a
later worthwhile sale.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Aldo Bucchi
Sent: Wednesday, July 20, 2005
2:05 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Minimal
webapp



 

Hi Rob,

Thanks for your reply!

Using the flex explorer was something I haven't
thought about... it's
certainly a great and simple tool for some cases.

Now, for this particular POC I do use the proxy.
Moreover, I need to
deploy it in the client's environment ( WLS on AIX
) to perform
integration tests ( consuming co-located ROs and
web services ). The
one day limit is a pain in the @ but not a show
killer, as I can
deploy the app minutes prior to the evaluation.
I believe there should be some way of telling flex
to bypass the mxml
and go straight to the pregenerated swf's. I
haven't looked into that
yet, but I'd rather ask the list as there might be
associated issues
to consider.

The reason for this reluctancy to provide sources
is that we are using
some inhouse integration frameworks ( Flex + Bea
Portal ) that have a
lot of eingeneering, and I would like to make it
as difficult as I can
for the evaluators to sniff them.

I believe this could be a common scenario... 

- developers licence
- needs to deploy a poc for testing in the
client's environment
- wants to protect sources

perhaps I'll file a feature request

Thanks,
-Aldo

On 7/20/05, Rob Rusher <[EMAIL PROTECTED]>
wrote:
> Aldo,
> 
> >I am building some POCs and I wouldn't
like to deliver the MXML / AS
> >sources. Two questions:
> >
> >- Can I deliver just the compiled SWFs?
How?
> 
> Yes you can if the SWF doesn't use the Flex
proxy for anything (e.g.
> RemoteObject). You simply set the
 to true in
> flex-config.xml, run the page and then copy
the generated SWF to wherever.
> 
> >- Will they expire after a day?
> 
> Yes, they will expire if you don't have a
license (NC or Commercial).
> 
> >BTW, they are to be deployed in WLS8.1...
but I already have them
> >working in a similar setup in my box, so
that shouldn't be a problem.
> 
> I would suggest that you deploy your POCs to
the Flex Explorer sample
> application. Then just hand out the URL to
people so that they can see it
> work as well as see the code. It's very
simple; just edit the topics.xml in
> the explorer directory.
> 
> Regards,
> Rob Rusher
> 
> RIA Consultant
> Macromedia Certified Flex Instructor
> e:[EMAIL PROTECTED] c:303.885.7044
im:robrusher
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
> Behalf Of Aldo Bucchi
> Sent: Wednesday, July 20, 2005 2:47 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Minimal webapp
> 
> Matt,
> 
> >> If you just want the SWF (and don't
need to
> > > re-compile) then I'm sure you can
get away with a lot less, but assuming
> > > you have the developer license that
may only last you a day.
> 
> I am building some POCs and I wouldn't like
to deliver the MXML / AS
> sources. Two questions:
> 
> - Can I deliver just the compiled SWFs? How?
> - Will they expire after a day?
> 
> BTW, they are to be deployed in WLS8.1... but
I already have them
> working in a similar setup in my box, so that
shouldn't be a problem.
> 
> Thanks,
> -Aldo
> 
> 
> On 7/20/05, German M. Gomez
<[EMAIL PROTECTED]> wrote:
> > Thanks Matt, that was exactly what i
needed.
> >
> >  --- Matt Chotin
<[EMAIL PROTECTED]> escribió:
> >
> > > You need your MXML and AS files and
everything under WEB-INF/flex
> > > *except* for the generated
directory (which may be taking up some
> > > space).  An "empty"
flex.war is approximately 11 MB though samples.war
> > > was about 18 MB to start.  If
you just want the SWF (and don't need to
> > > re-compile) then I'm sure you can
get away with a lot less, but assuming
> > > you have the developer license that
may only last you a day.
> > >
> > >
> > >
> > > Matt
> > >
> > >
> > >
> > > 
> > >
> > > From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
> > > Behalf Of German
> > > Sent: Tuesday, July 19, 2005 2:22
PM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Minimal
webapp
> > >
> > >
> > >
> > > Hi. I'm using flex for a demo, I
did a small master-detail app with
> > > hsql, ibatis SqlMaps, Spring,
SpringAdapter and Flex ofcourse. The
> > > thing is, how do i pack that
application into a war file, what do i
> > > need to include? I took the
explorer demo app and modified it but now
> > > I have 1

RE: [flexcoders] Visible & Enabled behavior for controls & Containers

2005-07-20 Thread Matt Chotin










Probably you should pass in the text input
itself into the controlBehavior function so that it can modify the proper
component.

 

Function controlBehavior(comp:UIObject, x:String):Void
{

  …

  Comp.visible = …

  Comp.enabled = …

}

 

…

creationComplete=”controlBehavior(event.target,
iniVal.isoStatus)” />

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ghislain Simard
Sent: Tuesday, July 19, 2005 8:18
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Visible
& Enabled behavior for controls & Containers



 

Hi,
I'm trying to find a way to get the fields in a
form visible or 
enabled based on a value received from an
Object.  I'm sure I'm not 
far from the solution.  But as I am not
skilled in ActioScript, I 
need some help to figure out this one.  I
would like to get a 
generic script that could be applied to any
containers or controls.

Thanks

Code:
//Object returned by the RemoteObject call 
var initVal:Object = result;

// function to configure the visible & enabled
attributes
  function controlBehavior(x:String):Void{
 
  switch (x){
 
  case 0:
 
    this.visible =
false;
 
    this.enabled =
true;
 
  case 1:
 
    this.visible =
true;
 
    this.enabled =
false;
 
  case 2:
 
    this.visible =
false;
 
  }
  }


creationComplete="controlBehavior(iniVal.isoStatus)"/>










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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] cellRenderer question

2005-07-20 Thread Matt Chotin










The cellRenderer there is a class
reference, not the instance of the class.  I’m not sure we expose the
reference to the cell renderer instances for you, why do you need access to an individual
renderer from the outside?

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of sanjayd
Sent: Wednesday, July 20, 2005
11:47 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] cellRenderer
question



 

Hi.

I have a public method inside a cellRenderer and I
want to call the
method from the mxml file that holds the grid.

So, my cellRenderer has code like this:



   




and, I call the method like this, from inside the
mxml file that holds
the grid:

  function
callTest1InCellRenderer() {
    var
clObject:Object = myDataGrid.getColumnAt(3).cellRenderer;
   
clObject.test1();
  }

BUT, this does not work..any suggestions ?

Thanks in advance. Sanjay










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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] create children from dataprovider

2005-07-20 Thread Matt Chotin
creationComplete or initialize would probably be fine event triggers.
If this is a subclass you could probably override commitProperties too
(make sure to call super.commitProperties).

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of ROUSSELIE David ROSI/SIFAC
Sent: Wednesday, July 20, 2005 5:39 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] create children from dataprovider

hello, 

I would like to create children from the dataProvider attribut like
TileList. Where is the cleaner place to iterate over dataProvider to
call createChild ? In "createChildren", "dataProvider" not yet
initialized and is undefined. For the moment, I create children in a
handle method when receiving "creationComplete" event.

Thanks,

-- 
David Rousselie


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



 




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

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

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

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




RE: [flexcoders] Closing Title Popup with [Escape], works in Mozilla but not IE??

2005-07-20 Thread Matt Chotin










I’m not sure I’ve ever gotten IE to pass
the escape key through to the Player unfortunately.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Manning
Sent: Wednesday, July 20, 2005
9:45 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Closing
Title Popup with [Escape], works in Mozilla but not IE??



 

Hello Flexcoders,

 

I can close the pop-up with the Escape key in Mozilla
but not IE.  Any ideas?

 



Index.mxml



 



 



    

    

    private
function openPopup():Void

    {

   


   
/*

  
 createPopUp(parent:MovieClip, class:Object [,
modal:Boolean, initobj:Object,outsideEvents:Boolean]) : MovieClip

   
*/

   
var model:Boolean = true;

   
var myWin_mc = mx.managers.PopUpManager.createPopUp(this,TitleWindow,model);

   


   
//center of this mc

   
myWin_mc.centerPopUp();

   


   
//Create the event handler to delete the pop up when closed 

   
var eventHandlerObj = new Object();

   
eventHandlerObj.click = function(event)

   
{

 

   
event.target.deletePopUp();

 

   
}

 

   
//Register the event handler with the TitleWindow container.

   
myWin_mc.addEventListener("click",eventHandlerObj);

    

    }

    

    

    

   


    

    



 

 

 



TitleWindow.mxml





 



    

    

    private
function initKeyDown():Void

    {

    

   
var myListener:Object = new Object();

   


   
myListener. handleKeyDown);

   
Key.addListener(myListener);

    

    }

    

    private
function handleKeyDown (event) : Void 

    {

   
if (Key.isDown(Key.ESCAPE))

   
{

   
this.deletePopUp();

   
Key.removeListener(handleKeyDown);

   
}  


    }

    

 

    

    



 

Thanks,

Allen

http://www.prismix.com/









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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005
 

RE: [flexcoders] Problem calling HTTPService under Sun One WebServer

2005-07-20 Thread Matt Chotin










Can you try running a sniffer between your
client and the proxy?  Looks like you’re seeing what the proxy sees,
better see what the client is actually seeing too.

 

Sniffer.exe might come if you do the
integrated install, otherwise you can find it from Axis and some other
locations (or use a real packet sniffer like Ethereal).

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of colinblackmore
Sent: Wednesday, July 20, 2005
11:07 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Problem
calling HTTPService under Sun One WebServer



 

I am trying to deploy a flex client on Sun's WebServer 6.1 (I know
this is not a supported configuration, but this is
the requirement).

The pages compile and display correctly, but
whenever an HTTPService
is called, the client waits indefinitely with the
wait cursor on the
screen without calling the result handler.

The HTTPService is fine, and can be called
directly from the browser.  

When tracing the 
debug logs, one possible
problem is the headers in the response from the
service call.  The
'Transfer-encoding: chunked' is not present in the
(operational)
Tomcat deployment of the same client.

Sun WebServer 6.1 (broken)
INFO -- Cookie in response: domain =
'walsun2.centervilletech.com',
path = '/', client name = 'JSESSIONID', endpoint
name = 'JSESSIONID',
value = 'A8F7BD1317EB255D3E24C2FD42C70F7F
INFO -- Header in response: Server :
Sun-ONE-Web-Server/6.1
INFO -- Header in response: Date : Wed, 20 Jul
2005 17:28:29 GMT
INFO -- Header in response: Content-type :
text/xml; charset=UTF-8
INFO -- Header in response: Transfer-encoding :
chunked
INFO -- Begin GET response --
INFO 
...

Tomcat 5.5 (works)
INFO -- Cookie in response: domain = 'localhost',
path = '/', client
name = 'JSESSIONID', endpoint name = 'JSESSIONID',
value =
'12494FCC43F01E9ECE2AFD27A6F2066F
INFO -- Header in response: Server :
Apache-Coyote/1.1
INFO -- Header in response: Pragma : No-cache
INFO -- Header in response: Cache-Control :
no-cache
INFO -- Header in response: Expires : Wed, 31 Dec
1969 19:00:00 EST
INFO -- Header in response: Content-Type :
text/xml;charset=UTF-8
INFO -- Header in response: Date : Wed, 20 Jul
2005 17:41:09 GMT
INFO -- Begin GET response --
INFO 
...

Has anyone deployed under Sun Webserver 6.1? 
Is the Transfer-encoding
at fault?  Is there a work-around?

Thanks, in advance.

...Col












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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Tutorial: PopUp Requester Dialog

2005-07-20 Thread Douglas Knudsen
nice.  Now, say you have a large app, you wouldn't want to stick all
that stuff in your root mxml, eh?  So where best to put it?  If using
cairngorm, where?  modellocator?

DK

On 7/20/05, charlespaz1 <[EMAIL PROTECTED]> wrote:
> Something I needed to work on, and I've made a short tutorial out of
> to share the information.
> 
> http://members.cox.net/midian/tutorials/dialog.htm
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
> 
> 
> 
> 
> 


-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


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

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

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

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




[flexcoders] Re: Wait for Popup to close

2005-07-20 Thread mrvinedit
This IS possible. I've done it.

Here's some code:

if (clickedOnWhat=="btnRemoveFromGList") {
  var myClickHandler = function (evt) {
if (evt.detail == mx.controls.Alert.OK) {
  //mx.controls.Alert.show(evt.detail);
  _root.GroupsRO.RemoveGroupMember(_root.oUserInfo,o
bjCoInfo.coid.toString(),objGrpInfo.group_id.toString());
}
  }
  var titleStyles = new mx.styles.CSSStyleDeclaration();
  titleStyles.setStyle("color", "white");
  titleStyles.setStyle("fontSize", 13);
  //titleStyles.setStyle("fontWeight", "bold");
  mx.controls.Alert.titleStyleDeclaration = titleStyles;
  var msgStyles = new mx.styles.CSSStyleDeclaration();
  msgStyles.setStyle("color", "red");
  msgStyles.setStyle("fontSize", 11);
  mx.controls.Alert.messageStyleDeclaration = msgStyles;
  var btnStyles = new mx.styles.CSSStyleDeclaration();
  btnStyles.setStyle("color", "black");
  btnStyles.setStyle("fontSize", 11);
  mx.controls.Alert.buttonStyleDeclaration = btnStyles;
  mx.controls.Alert.okLabel = "Remove";
  var iCoInfo:Number = objCoInfo.coname.length;
  var sCoInfo:String = '';
  sCoInfo = "Confirmation - Remove Company from Supplier Group?\n"
  mx.controls.Alert.show("Remove'" + objCoInfo.coname.toString() +
"'", sCoInfo, mx.controls.Alert.CANCEL | mx.controls.Alert.OK, _root,
myClickHandler, removeImg, mx.controls.Alert.CANCEL);
}




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

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

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

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




Re: [flexcoders] Flex 2.0

2005-07-20 Thread Scott Barnes
I have it on a good source that it will be released on July 10th, 2009
at 3pm. This same source also told me that Yahoo stock would crash
within the first day of it being listed and it was a throwaway
technology - as Lycos is much more lucrative.

:)

I think it would be too early to speculate on timeframe/releases and
those that would know probably can't even publically say "rekon it
would be next qtr" or something like that.

Will Flex be released this time next year: Outlook not so good (pulled
from my 8Ball)


On 7/21/05, jwc_wensan <[EMAIL PROTECTED]> wrote:
> To All:
> 
> Anyone have any idea, speculation, guess, etc. on release timeframe
> of Flex 2.0 ?
> 
> Thanks in advance,
> 
> Jack
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
> 
> 
> 
> 


-- 
Regards,
Scott Barnes
http://www.mossyblog.com


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

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

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

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




[flexcoders] Re: Flex CPU License(s)

2005-07-20 Thread kaibabsowats
Here is my short answer to your bottleneck question.

The RAM will be the bottleneck of your server as stated below.

--- In flexcoders@yahoogroups.com, "jwc_wensan" <[EMAIL PROTECTED]> wrote:
> Renaun:
> 
> I appreciate your input.
> 
> That number seems low.  What do you see is the bottleneck?  Flex,
> CPU, RAM, etc.?
> 
> Without going live, any suggestions on how to benchmark?
> 
> Thanks,
> 
> Jack
> 
> 
> --- In flexcoders@yahoogroups.com, "kaibabsowats" <[EMAIL PROTECTED]> 
> wrote:
> > I won't give you definite answer as it does really depend, but give
> > you a at least number.  
> > 
> > With Java the JVM has a 1.5Gb ram limitation (unless using Sun 
> boxes
> > or 64 bit correct me if I am wrong).  So I usually try and get 2Gb 
> of
> > ram minimum.  This allows the JVM use its limit if needed and have
> > stuff left over for normal OS and Database usage.
> > 
> > The number I can give is that you can definitely handle a couple
> > hundred simultaneous users on a server like that.  To spec out
> > anything more you need to benchmark the server with the actual
> > application.  I had a Dual 3.2Ghz Xeon 2Gb ram handle 1000-2000
> > simultaneous users for a Java application that was Memory 
> intensive.
> > 
> > It is pretty safe to say if you actually have a couple hundred
> > simultaneous users you mostly likely have ten of thousand actual
> > users.  Of course there is no magic number but these are given as 
> is
> > and really should be benchmarked with the actual application.
> > 
> > Renaun
> > 
> > --- In flexcoders@yahoogroups.com, "jwc_wensan" <[EMAIL PROTECTED]> 
> wrote:
> > > To All:
> > > 
> > > Yesterday I made a post regarding trying to determine how many 
> users
> > > a single server with one CPU could handle.  I realize "it 
> depends"
> > > and I did not define any type of application.
> > > 
> > > I am trying to get some type of handle on what my costs will be
> > > regarding CPU licenses, servers, etc.
> > > 
> > > So let me try again.  Let's take the Flexstore as an example 
> > > application.  Based on this, can anyone shed some light as to 
> how 
> > > many users in an hour the server could adequately handle.
> > > 
> > > Where will the bottleneck occur: Flex, server itself, database, 
> etc.
> > > 
> > > If an hour is not the right way to measure, then please offer any
> > > measurement you feel is correct.
> > > 
> > > Server Configuration:
> > > 
> > > Dell Server @ 3.8 GHz with 1 GB RAM
> > > JRUN4
> > > Win 2000 Server
> > > 1 Flex license
> > > 
> > > As Dave and others recommended, I will put the database on a 
> separate
> > > server.
> > > 
> > > I am not trying to tie anyone's hands here, just trying to get 
> some
> > > perspective.
> > > 
> > > Thanks in advance,
> > > 
> > > Jack




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

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

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

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




[flexcoders] Re: Flex CPU License(s)

2005-07-20 Thread kaibabsowats
The number was a "at least" number, so it was definetely low.

I'll take a stab and trying to explain all the depends, but I might be
off on some of these.

Performance hit - Flex compiling the MXML into SWF files, there is
caching mechanisms built in, dont know the extent how well the caching
works.  This process is usaully CPU then Memory intensive.  This is
done when in the JVM so your bottleneck here is the JVM used (IBM,
Sun, BEA Jrockit, etc... ).

Backend Data Tier ( WebServices/Remoting etc... ) - This depends on
what you end up using, could be Java, .Net, or ColdFusion (even PHP or
Perl).  Assuming you run any of these on the same machine you'll have
performance in CPU or Memory, where these bottlenecks follow a typical
application bottleneck.  These service's performance is not directly
related to Flex, unless you are using Flex's sandbox policy then there
would be some overhead placed on the JVM again to handle each request.

As for benchmarking there are software programs out there that can
replay http requests and simulate lots of people hitting your servers.
  But its still hard to get good numbers unless you simulate your real
deployment environment as close as possible.  

One thing going for Flex is the idea that instead of having alot of
small requests hitting your server over a period of time, which eats
up resources, you have one medium/big hit at first with little
interaction with the server after (of course depending on if the
application is getting real-time data or not).  You have a situation
where they hit it less times over a period of time thus off setting
the time server resource you give up for running Flex.

The disclaimer is that it just depends.  Depends on size of the SWF's,
complexity of MXML Flex compiling, data being transfered, interaction
of user (does the app have real time data ), etc...  

In my case I am doing online video training and my bandwidth is going
to be a bigger issue then Flex performance for the number of projected
users.

Its really hard to say what a specific server can do without knowing
the extent of how its going to be used and the application being
built.

Renaun

--- In flexcoders@yahoogroups.com, "jwc_wensan" <[EMAIL PROTECTED]>
wrote:
> Renaun:
> 
> I appreciate your input.
> 
> That number seems low.  What do you see is the bottleneck?  Flex,
> CPU, RAM, etc.?
> 
> Without going live, any suggestions on how to benchmark?
> 
> Thanks,
> 
> Jack
> 
> 
> --- In flexcoders@yahoogroups.com, "kaibabsowats" <[EMAIL PROTECTED]> 
> wrote:
> > I won't give you definite answer as it does really depend, but
give
> > you a at least number.  
> > 
> > With Java the JVM has a 1.5Gb ram limitation (unless using Sun 
> boxes
> > or 64 bit correct me if I am wrong).  So I usually try and get
2Gb 
> of
> > ram minimum.  This allows the JVM use its limit if needed and have
> > stuff left over for normal OS and Database usage.
> > 
> > The number I can give is that you can definitely handle a couple
> > hundred simultaneous users on a server like that.  To spec out
> > anything more you need to benchmark the server with the actual
> > application.  I had a Dual 3.2Ghz Xeon 2Gb ram handle 1000-2000
> > simultaneous users for a Java application that was Memory 
> intensive.
> > 
> > It is pretty safe to say if you actually have a couple hundred
> > simultaneous users you mostly likely have ten of thousand actual
> > users.  Of course there is no magic number but these are given as 
> is
> > and really should be benchmarked with the actual application.
> > 
> > Renaun
> > 
> > --- In flexcoders@yahoogroups.com, "jwc_wensan" <[EMAIL PROTECTED]> 
> wrote:
> > > To All:
> > > 
> > > Yesterday I made a post regarding trying to determine how many 
> users
> > > a single server with one CPU could handle.  I realize "it 
> depends"
> > > and I did not define any type of application.
> > > 
> > > I am trying to get some type of handle on what my costs will be
> > > regarding CPU licenses, servers, etc.
> > > 
> > > So let me try again.  Let's take the Flexstore as an example 
> > > application.  Based on this, can anyone shed some light as to 
> how 
> > > many users in an hour the server could adequately handle.
> > > 
> > > Where will the bottleneck occur: Flex, server itself, database, 
> etc.
> > > 
> > > If an hour is not the right way to measure, then please offer
any
> > > measurement you feel is correct.
> > > 
> > > Server Configuration:
> > > 
> > > Dell Server @ 3.8 GHz with 1 GB RAM
> > > JRUN4
> > > Win 2000 Server
> > > 1 Flex license
> > > 
> > > As Dave and others recommended, I will put the database on a 
> separate
> > > server.
> > > 
> > > I am not trying to tie anyone's hands here, just trying to get 
> some
> > > perspective.
> > > 
> > > Thanks in advance,
> > > 
> > > Jack




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

[flexcoders] ComboBox has problems with Selection in TextArea

2005-07-20 Thread Bruno Martins



I try to build this componet but, when a use a combo to set a new property the Selection returns in a wrong way.
If someone can solve this. Fix and send to me.
Thanks.






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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Editor.as
Description: Binary data


comp.mxml
Description: Binary data


[flexcoders] Re: Flex CPU License(s)

2005-07-20 Thread jwc_wensan
Renaun:

I appreciate your input.

That number seems low.  What do you see is the bottleneck?  Flex,
CPU, RAM, etc.?

Without going live, any suggestions on how to benchmark?

Thanks,

Jack


--- In flexcoders@yahoogroups.com, "kaibabsowats" <[EMAIL PROTECTED]> 
wrote:
> I won't give you definite answer as it does really depend, but give
> you a at least number.  
> 
> With Java the JVM has a 1.5Gb ram limitation (unless using Sun 
boxes
> or 64 bit correct me if I am wrong).  So I usually try and get 2Gb 
of
> ram minimum.  This allows the JVM use its limit if needed and have
> stuff left over for normal OS and Database usage.
> 
> The number I can give is that you can definitely handle a couple
> hundred simultaneous users on a server like that.  To spec out
> anything more you need to benchmark the server with the actual
> application.  I had a Dual 3.2Ghz Xeon 2Gb ram handle 1000-2000
> simultaneous users for a Java application that was Memory 
intensive.
> 
> It is pretty safe to say if you actually have a couple hundred
> simultaneous users you mostly likely have ten of thousand actual
> users.  Of course there is no magic number but these are given as 
is
> and really should be benchmarked with the actual application.
> 
> Renaun
> 
> --- In flexcoders@yahoogroups.com, "jwc_wensan" <[EMAIL PROTECTED]> 
wrote:
> > To All:
> > 
> > Yesterday I made a post regarding trying to determine how many 
users
> > a single server with one CPU could handle.  I realize "it 
depends"
> > and I did not define any type of application.
> > 
> > I am trying to get some type of handle on what my costs will be
> > regarding CPU licenses, servers, etc.
> > 
> > So let me try again.  Let's take the Flexstore as an example 
> > application.  Based on this, can anyone shed some light as to 
how 
> > many users in an hour the server could adequately handle.
> > 
> > Where will the bottleneck occur: Flex, server itself, database, 
etc.
> > 
> > If an hour is not the right way to measure, then please offer any
> > measurement you feel is correct.
> > 
> > Server Configuration:
> > 
> > Dell Server @ 3.8 GHz with 1 GB RAM
> > JRUN4
> > Win 2000 Server
> > 1 Flex license
> > 
> > As Dave and others recommended, I will put the database on a 
separate
> > server.
> > 
> > I am not trying to tie anyone's hands here, just trying to get 
some
> > perspective.
> > 
> > Thanks in advance,
> > 
> > Jack






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

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

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

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





Re: [flexcoders] Looking for a consistent way to close the current browser window in Flex

2005-07-20 Thread Clint Modien



yep...  
can't close a dialog in firefox with _javascript_ unless the user has his browser set up to do that... 
which is not the default..

in IE unless the window was opened with _javascript_ you'll get a prompt
saying a script is trying to close the window... do you want to let it
do that...

if the window is opened with js it will close it automatically with no prompt

On 7/20/05, Tracy Spratt <[EMAIL PROTECTED]> wrote:



















See if this makes any difference:

getURL("_javascript_:window.opener=self;
window.close();");

 

And I only use IE.  There are likely
browser issues.

Tracy


 









From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Jeff Steiner
Sent: Wednesday, July 20, 2005
12:31 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Looking for
a consistent way to close the current browser window in Flex



 

I am looking to close a window after a
Flex app loads in it.  I am using the following function – it seems
to close every now and then but not all the time.

 

function closeWindow() {


   getURL('_javascript_:window.close()');   

   
}

 

Anyone have a sure fire way of doing this?

 

Thanks,



Jeff

Founder

Flex Authority


http://www.flexauthority.com

 

We are actively seeking contributors for
the site.  Have a sample that you want to share with the world?  Send
it to us!











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com









  
  
SPONSORED LINKS
  
  
  


Computer software testing
  
  

Macromedia flex
  
  

Development
  
  



Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  

















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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: Wait for Popup to close

2005-07-20 Thread vanhoese
Why don't you just add an event listener in your parent.  Then all 
your popup has to do is dispatch the event.  You can even pass data 
in the event.

Checkout addEventListener for the parent
Checkout dispatchEvent for the popup

--- In flexcoders@yahoogroups.com, "charlespaz1" <[EMAIL PROTECTED]> 
wrote:
> What I'm looking for is a user verification window, like when 
deleting
> a record, it shouldn't be done lightly, so I want a popup to appear
> asking "Are you sure" then the listener returns the results.  If 
they
> choose yes, then continue execution, otherwise, don't.
> 
> Now I could add the code to check in the handler, but I want the 
popup
> to be more versitile, so what I want to do (if possible) is to open
> popup, handler gets results on popup close, then, based on results,
> perform a specified action.
> 
> If it isn't possible, I will have to have 3 different popups with 3
> handlers for three different actions, which is what I'm trying to 
avoid.
> 
> --- In flexcoders@yahoogroups.com, "Rob Rusher" <[EMAIL PROTECTED]> 
wrote:
> > Don't think procedural. Think broadcast/listener.
> > 
> > If you're waiting on service results, just add 
setBusyCursor="true"
> to the
> > service component. This will prevent the user from doing anything
> until the
> > results return. Then in your results handler, close the popup.






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

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

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

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




Re: [flexcoders] How much do you charge for Flex development?

2005-07-20 Thread Clint Modien



great there goes my job... it's all getting outsourced to AU  :pOn 7/20/05, Scott Barnes <[EMAIL PROTECTED]
> wrote:$45 AUD an hour is the typical rate at this end, so i guess i may seem
slave labor to the US counterparts? heh.Plus, i prefer to quote on projects instead of hourly rates, as i feelat times hourly rates tend to breed distrust or associates a negativeto the deal (ie if you just paid a contracter 30hrs worth of work, can
you honestly say that you would go "yeah, i know he worked the full30hrs..or is it more like, hmm...he probably only worked 20 put istacking on an extra 10 to make the wallet fatter"I've been on both ends (employer and employee) and i've seen how it
can go pairshape easily enough. Plus project quoting also gives theclient a end figure to work with.On 7/21/05, Clint Modien <[EMAIL PROTECTED]> wrote:>  might be comparing apples to oranges there...
>>  Typical flex project = 6 months>>  Typical car repair = 6 hours> On 7/20/05, Rob Rusher <[EMAIL PROTECTED]
> wrote:> > What?! Are you guys crazy? My mechanic charges me more than that.> >> > Consultancies are going to charge between $100 (newbie) and $250 (guru) an> > hour for a Flex developer. Sure, as an independent, you will charge less
> but> > not that much less.> >> > Maybe I'm spoiled, but Jesse you're worth way more my friend.> >> > Regards,> > Rob Rusher> >> > RIA Consultant
> > Macromedia Certified Flex Instructor> > e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher> >> >> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On> > Behalf Of JesterXL> > Sent: Wednesday, July 20, 2005 11:04 AM
> > To: flexcoders@yahoogroups.com> > Subject: Re: [flexcoders] How much do you charge for Flex development?> >> > Busy/Bad Mood = $60/hour
> > I like you/Not Busy/Good Mood = $30/hour> >> > As far as salary, I'd think because of your server background, 70-90 is> fair> >> > & market rate (per various job sites & the USA government department of
> > commerce salary reports) depending on company size, but depends on the> > direction they are going with Flex.> >> > For example, the reason I'm asked to do contract Flex by clients (beyond
> the> >> > fact there aren't many Flex contractors) is because I know how to get the> > GUI to work.  The reverse holds true in having a good server-side> developer> > on the team doing Flex because he/she knows the impact on the backend and
> > can offer valuable insight into making the application work better,> leaving> > the GUI/wireframe/frontend visual details up to someone like me.> >> > ...of course, the same logic applies to my Flash projects, hehe.
> > Flex/Flash, here's my typical scenario:> >> > "Jesse, can you do Flex contract?"> >> > "No, but these people might have time." :: forwards list of contractors ::
> >> > *alternate universe where Jesse has time for more than 1 contract job a> > year*> >> > "Sure, but I'm really busy right now, what are the details of the> project?"
> >> > :: gets details / specs / whatever wireframes are available, if any ::> >> > "Ok, swag time estimate is X hours @ 60 an hour, my rate, thus that'll> cost> > you $XX for my services."
> >> > "Geez, we don't have the budget for that"> >> > :: negotiations ::> >> > "Ok, I've adjusted the scope of what I can do, rate, and hours based on
> our> > discussions.  We agree to $XX for the project since that fits nicely in> your> >> > budget.  Let's knock this shiz out of the park!"> >> > So, I say a rate, but rarely ever get it because of budgetting, which is
> > understandable and I'll adjust what I can do and what I charge> accordingly,> > if at all possible.  Now, as far as salary, I'd treat it similiarly to any> > New Media + Front-end JSP Development type job, and you'd have an accurate
> > assessment of salary range.  Naturally, all the other rules of location,> > budget, company size, time, etc. all factor in which is beyond the scope> of> > this email; there are plenty of resources online both professional,
> > independent, and governement which can help you make a more educated> > inference based on the numbers I gave above.> >> > - Original Message -> > From: "Devin Holloway" <
[EMAIL PROTECTED]>> > To: > > Sent: Wednesday, July 20, 2005 3:59 AM> > Subject: [flexcoders] How much do you charge for Flex development?
> >> >> >> > As a CF developer, I've been recently been putting more serious> > thought into becoming a Flex developer. It would be a long time> > before the company I work for could move into this direction, if
> > ever. So I'd have to become a contractor or find a Flex position at> > another company.> >> > But I'm curious as to how much a Flex developer should be making. I> > realize much of that depends on your skillset, but does their exist
> > any averages? or possibly some minimums and maximums?> >> > Let's pretend I make around $75K/yr as a full time CF developer. I'm> > by no means a Flex guru, with less

Re: [flexcoders] How much do you charge for Flex development?

2005-07-20 Thread Scott Barnes
$45 AUD an hour is the typical rate at this end, so i guess i may seem
slave labor to the US counterparts? heh.

Plus, i prefer to quote on projects instead of hourly rates, as i feel
at times hourly rates tend to breed distrust or associates a negative
to the deal (ie if you just paid a contracter 30hrs worth of work, can
you honestly say that you would go "yeah, i know he worked the full
30hrs..or is it more like, hmm...he probably only worked 20 put is
tacking on an extra 10 to make the wallet fatter"

I've been on both ends (employer and employee) and i've seen how it
can go pairshape easily enough. Plus project quoting also gives the
client a end figure to work with.

On 7/21/05, Clint Modien <[EMAIL PROTECTED]> wrote:
>  might be comparing apples to oranges there...  
>  
>  Typical flex project = 6 months
>  
>  Typical car repair = 6 hours
> 
>  
>  
> 
> On 7/20/05, Rob Rusher <[EMAIL PROTECTED]> wrote:
> > What?! Are you guys crazy? My mechanic charges me more than that.
> > 
> > Consultancies are going to charge between $100 (newbie) and $250 (guru) an
> > hour for a Flex developer. Sure, as an independent, you will charge less
> but 
> > not that much less.
> > 
> > Maybe I'm spoiled, but Jesse you're worth way more my friend.
> > 
> > Regards,
> > Rob Rusher
> > 
> > RIA Consultant
> > Macromedia Certified Flex Instructor
> > e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher
> > 
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto: [EMAIL PROTECTED] On
> > Behalf Of JesterXL
> > Sent: Wednesday, July 20, 2005 11:04 AM
> > To: flexcoders@yahoogroups.com
> > Subject: Re: [flexcoders] How much do you charge for Flex development? 
> > 
> > Busy/Bad Mood = $60/hour
> > I like you/Not Busy/Good Mood = $30/hour
> > 
> > As far as salary, I'd think because of your server background, 70-90 is
> fair
> > 
> > & market rate (per various job sites & the USA government department of 
> > commerce salary reports) depending on company size, but depends on the
> > direction they are going with Flex.
> > 
> > For example, the reason I'm asked to do contract Flex by clients (beyond
> the
> > 
> > fact there aren't many Flex contractors) is because I know how to get the 
> > GUI to work.  The reverse holds true in having a good server-side
> developer
> > on the team doing Flex because he/she knows the impact on the backend and
> > can offer valuable insight into making the application work better,
> leaving 
> > the GUI/wireframe/frontend visual details up to someone like me.
> > 
> > ...of course, the same logic applies to my Flash projects, hehe.
> > Flex/Flash, here's my typical scenario:
> > 
> > "Jesse, can you do Flex contract?" 
> > 
> > "No, but these people might have time." :: forwards list of contractors ::
> > 
> > *alternate universe where Jesse has time for more than 1 contract job a
> > year*
> > 
> > "Sure, but I'm really busy right now, what are the details of the
> project?" 
> > 
> > :: gets details / specs / whatever wireframes are available, if any ::
> > 
> > "Ok, swag time estimate is X hours @ 60 an hour, my rate, thus that'll
> cost
> > you $XX for my services."
> > 
> > "Geez, we don't have the budget for that" 
> > 
> > :: negotiations ::
> > 
> > "Ok, I've adjusted the scope of what I can do, rate, and hours based on
> our
> > discussions.  We agree to $XX for the project since that fits nicely in
> your
> > 
> > budget.  Let's knock this shiz out of the park!" 
> > 
> > So, I say a rate, but rarely ever get it because of budgetting, which is
> > understandable and I'll adjust what I can do and what I charge
> accordingly,
> > if at all possible.  Now, as far as salary, I'd treat it similiarly to any
> > New Media + Front-end JSP Development type job, and you'd have an accurate
> > assessment of salary range.  Naturally, all the other rules of location,
> > budget, company size, time, etc. all factor in which is beyond the scope
> of 
> > this email; there are plenty of resources online both professional,
> > independent, and governement which can help you make a more educated
> > inference based on the numbers I gave above.
> > 
> > - Original Message - 
> > From: "Devin Holloway" <[EMAIL PROTECTED]>
> > To: 
> > Sent: Wednesday, July 20, 2005 3:59 AM 
> > Subject: [flexcoders] How much do you charge for Flex development?
> > 
> > 
> > 
> > As a CF developer, I've been recently been putting more serious
> > thought into becoming a Flex developer. It would be a long time
> > before the company I work for could move into this direction, if 
> > ever. So I'd have to become a contractor or find a Flex position at
> > another company.
> > 
> > But I'm curious as to how much a Flex developer should be making. I
> > realize much of that depends on your skillset, but does their exist 
> > any averages? or possibly some minimums and maximums?
> > 
> > Let's pretend I make around $75K/yr as a full time CF developer. I'm
> > by no means a Flex guru, with 

RE: [flexcoders] Looking for a consistent way to close the current browser window in Flex

2005-07-20 Thread Tracy Spratt










See if this makes any difference:

getURL("_javascript_:window.opener=self;
window.close();");

 

And I only use IE.  There are likely
browser issues.

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeff Steiner
Sent: Wednesday, July 20, 2005
12:31 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Looking for
a consistent way to close the current browser window in Flex



 

I am looking to close a window after a
Flex app loads in it.  I am using the following function – it seems
to close every now and then but not all the time.

 

function closeWindow() {


   getURL('_javascript_:window.close()');   

   
}

 

Anyone have a sure fire way of doing this?

 

Thanks,



Jeff

Founder

Flex Authority

http://www.flexauthority.com

 

We are actively seeking contributors for
the site.  Have a sample that you want to share with the world?  Send
it to us!











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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] ERROR MESSAGE : Branch between 7543 and 40329 around line 0 exceeds 32K span. If possible, please refactor this component

2005-07-20 Thread Tracy Spratt










If your app is already fairly well
architected, try the bogus code fix.  We have to do this 2-3 times a month.

http://www.cflex.net/showfaq.cfm?Object=faq&channelID=1&faqtype=&defaultfields=&defaultValues=#Question365

Tracy

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of david_gal-reyniez
Sent: Wednesday, July 20, 2005
11:49 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] ERROR
MESSAGE : Branch between 7543 and 40329 around line 0 exceeds 32K span. If
possible, please refactor this component



 

Hi everybody

For people who faces with the same problem
I had...

http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19520

Bye

 







De : flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] De la part de david_gal-reyniez
Envoyé : mardi 19 juillet
2005 17:07
À : flexcoders@yahoogroups.com
Objet : [flexcoders] ERROR
MESSAGE : Branch between 7543 and 40329 around line 0 exceeds 32K span. If
possible, please refactor this component



Hi everyboby!





 





Can anybody explain to me the reason of this regularly error
message I have





 





***





Branch between 7543 and 40329 around line 0 exceeds 32K
span. If possible, please refactor this component





***





 





It seems like a problem of memory but.. I don't know what to
do.





Yours suggeestions will be appreciated!





Thanks





 





Daivd



**


Coface facilite les echanges entre
les entreprises partout dans le monde. Pour cela, elle offre a toutes les
entreprises des solutions pour gerer, financer et proteger leur poste client,
en leur permettant d'externaliser tout ou partie de la gestion et des risques
lies a leurs relations commerciales. Coface est notee AA par Fitch Ratings et
Aa3 par Moody's. 

Pour en savoir plus,
http://www.coface.fr 

Coface facilitates
business-to-business commerce worldwide. It offers all size companies an array
of solutions to manage, finance, and protect their accounts receivables
affording them the option of fully or partly outsourcing trade relationship
management and attendant risks. Coface is rated AA by Fitch ratings and Aa3 by
Moody's. 

More about Coface,
http://www.coface.com 

WARNING : 

- Soyez conscient que notre systeme
Anti-Spam peut parfois rejeter des messages, soit parce que certains mots et
types de fichiers ne sont pas acceptes, ou bien parce que le mail n'a pas ete
identifie correctement. 

- Be aware that from time to time our
Anti-Spam system may reject mails either because some words and types of files
are not allowed or because mails are misidentified. 

**


**


Coface facilite les echanges entre
les entreprises partout dans le monde. Pour cela, elle offre a toutes les
entreprises des solutions pour gerer, financer et proteger leur poste client,
en leur permettant d'externaliser tout ou partie de la gestion et des risques
lies a leurs relations commerciales. Coface est notee AA par Fitch Ratings et
Aa3 par Moody's. 

Pour en savoir plus,
http://www.coface.fr 

Coface facilitates
business-to-business commerce worldwide. It offers all size companies an array
of solutions to manage, finance, and protect their accounts receivables
affording them the option of fully or partly outsourcing trade relationship
management and attendant risks. Coface is rated AA by Fitch ratings and Aa3 by
Moody's. 

More about Coface, http://www.coface.com


WARNING : 

- Soyez conscient que notre systeme
Anti-Spam peut parfois rejeter des messages, soit parce que certains mots et
types de fichiers ne sont pas acceptes, ou bien parce que le mail n'a pas ete
identifie correctement. 

- Be aware that from time to time our
Anti-Spam system may reject mails either because some words and types of files
are not allowed or because mails are misidentified. 

**










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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Tutorial: PopUp Requester Dialog

2005-07-20 Thread charlespaz1
Something I needed to work on, and I've made a short tutorial out of
to share the information.

http://members.cox.net/midian/tutorials/dialog.htm




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

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

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

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





Re: [flexcoders] Re: Wait for Popup to close

2005-07-20 Thread Clint Modien



Ya I remember when I first starting with actionscript a year and a half ago... 

when i popped up a window and told it to be modal and the code kept running i was like... what the hell?

it would be nice in a future version of the flash player to allow for true modal functionality
On 7/20/05, charlespaz1 <[EMAIL PROTECTED]> wrote:
--- In flexcoders@yahoogroups.com, Clint Modien <[EMAIL PROTECTED]> wrote:> what your looking for is not possible in AS 2.0That's what I thought, but it's nice to have another's opinion.
Sometimes someone outside the forest sees the trees you can't see fromwithin.--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
<*> To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/







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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: Wait for Popup to close

2005-07-20 Thread charlespaz1
--- In flexcoders@yahoogroups.com, Clint Modien <[EMAIL PROTECTED]> wrote:
> what your looking for is not possible in AS 2.0

That's what I thought, but it's nice to have another's opinion. 
Sometimes someone outside the forest sees the trees you can't see from
within.





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

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

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

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




Re: [flexcoders] Re: Wait for Popup to close

2005-07-20 Thread Clint Modien



what your looking for is not possible in AS 2.0
On 7/20/05, charlespaz1 <[EMAIL PROTECTED]> wrote:
What I'm looking for is a user verification window, like when deletinga record, it shouldn't be done lightly, so I want a popup to appearasking "Are you sure" then the listener returns the results.  If they
choose yes, then continue execution, otherwise, don't.Now I could add the code to check in the handler, but I want the popupto be more versitile, so what I want to do (if possible) is to openpopup, handler gets results on popup close, then, based on results,
perform a specified action.If it isn't possible, I will have to have 3 different popups with 3handlers for three different actions, which is what I'm trying to avoid.--- In 
flexcoders@yahoogroups.com, "Rob Rusher" <[EMAIL PROTECTED]> wrote:> Don't think procedural. Think broadcast/listener.>> If you're waiting on service results, just add setBusyCursor="true"
to the> service component. This will prevent the user from doing anythinguntil the> results return. Then in your results handler, close the popup.--Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links<*> To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
<*> To unsubscribe from this group, send an email to:[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/






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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: Wait for Popup to close

2005-07-20 Thread charlespaz1
What I'm looking for is a user verification window, like when deleting
a record, it shouldn't be done lightly, so I want a popup to appear
asking "Are you sure" then the listener returns the results.  If they
choose yes, then continue execution, otherwise, don't.

Now I could add the code to check in the handler, but I want the popup
to be more versitile, so what I want to do (if possible) is to open
popup, handler gets results on popup close, then, based on results,
perform a specified action.

If it isn't possible, I will have to have 3 different popups with 3
handlers for three different actions, which is what I'm trying to avoid.

--- In flexcoders@yahoogroups.com, "Rob Rusher" <[EMAIL PROTECTED]> wrote:
> Don't think procedural. Think broadcast/listener.
> 
> If you're waiting on service results, just add setBusyCursor="true"
to the
> service component. This will prevent the user from doing anything
until the
> results return. Then in your results handler, close the popup.





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

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

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

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




RE: [flexcoders] Wait for Popup to close

2005-07-20 Thread Rob Rusher
Don't think procedural. Think broadcast/listener.

If you're waiting on service results, just add setBusyCursor="true" to the
service component. This will prevent the user from doing anything until the
results return. Then in your results handler, close the popup.

Regards,
Rob Rusher
 
RIA Consultant
Macromedia Certified Flex Instructor
e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of charlespaz1
Sent: Wednesday, July 20, 2005 5:05 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Wait for Popup to close

How do you make your application pause execution while waiting for the
results of a Pop up?

i.e.

function test() {
   var myPopUp = mx.managers.PopUpManager.createPopUp(_root, myWindow,
true, false);
   // Pause here, don't show alert until popup is closed
   mx.controls.Alert.show("PopUp closed");
}




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



 




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

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

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

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




Re: [flexcoders] Wait for Popup to close

2005-07-20 Thread Tariq Ahmed
I dunno about actually halting execution. But how about adding a 
listener after you create the popup, and after the event you're 
listening for has been dispatched do whatever you wanna do (Alert 
window, etc...).


charlespaz1 wrote:

>How do you make your application pause execution while waiting for the
>results of a Pop up?
>
>i.e.
>
>function test() {
>   var myPopUp = mx.managers.PopUpManager.createPopUp(_root, myWindow,
>true, false);
>   // Pause here, don't show alert until popup is closed
>   mx.controls.Alert.show("PopUp closed");
>}
>
>
>
>
>--
>Flexcoders Mailing List
>FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
>Yahoo! Groups Links
>
>
>
> 
>
>
>
>  
>





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

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

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

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




Re: [flexcoders] Minimal webapp

2005-07-20 Thread Aldo Bucchi
Hi Rob,

Thanks for your reply!

Using the flex explorer was something I haven't thought about... it's
certainly a great and simple tool for some cases.

Now, for this particular POC I do use the proxy. Moreover, I need to
deploy it in the client's environment ( WLS on AIX ) to perform
integration tests ( consuming co-located ROs and web services ). The
one day limit is a pain in the @ but not a show killer, as I can
deploy the app minutes prior to the evaluation.
I believe there should be some way of telling flex to bypass the mxml
and go straight to the pregenerated swf's. I haven't looked into that
yet, but I'd rather ask the list as there might be associated issues
to consider.

The reason for this reluctancy to provide sources is that we are using
some inhouse integration frameworks ( Flex + Bea Portal ) that have a
lot of eingeneering, and I would like to make it as difficult as I can
for the evaluators to sniff them.

I believe this could be a common scenario... 

- developers licence
- needs to deploy a poc for testing in the client's environment
- wants to protect sources

perhaps I'll file a feature request

Thanks,
-Aldo

On 7/20/05, Rob Rusher <[EMAIL PROTECTED]> wrote:
> Aldo,
> 
> >I am building some POCs and I wouldn't like to deliver the MXML / AS
> >sources. Two questions:
> >
> >- Can I deliver just the compiled SWFs? How?
> 
> Yes you can if the SWF doesn't use the Flex proxy for anything (e.g.
> RemoteObject). You simply set the  to true in
> flex-config.xml, run the page and then copy the generated SWF to wherever.
> 
> >- Will they expire after a day?
> 
> Yes, they will expire if you don't have a license (NC or Commercial).
> 
> >BTW, they are to be deployed in WLS8.1... but I already have them
> >working in a similar setup in my box, so that shouldn't be a problem.
> 
> I would suggest that you deploy your POCs to the Flex Explorer sample
> application. Then just hand out the URL to people so that they can see it
> work as well as see the code. It's very simple; just edit the topics.xml in
> the explorer directory.
> 
> Regards,
> Rob Rusher
> 
> RIA Consultant
> Macromedia Certified Flex Instructor
> e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Aldo Bucchi
> Sent: Wednesday, July 20, 2005 2:47 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Minimal webapp
> 
> Matt,
> 
> >> If you just want the SWF (and don't need to
> > > re-compile) then I'm sure you can get away with a lot less, but assuming
> > > you have the developer license that may only last you a day.
> 
> I am building some POCs and I wouldn't like to deliver the MXML / AS
> sources. Two questions:
> 
> - Can I deliver just the compiled SWFs? How?
> - Will they expire after a day?
> 
> BTW, they are to be deployed in WLS8.1... but I already have them
> working in a similar setup in my box, so that shouldn't be a problem.
> 
> Thanks,
> -Aldo
> 
> 
> On 7/20/05, German M. Gomez <[EMAIL PROTECTED]> wrote:
> > Thanks Matt, that was exactly what i needed.
> >
> >  --- Matt Chotin <[EMAIL PROTECTED]> escribió:
> >
> > > You need your MXML and AS files and everything under WEB-INF/flex
> > > *except* for the generated directory (which may be taking up some
> > > space).  An "empty" flex.war is approximately 11 MB though samples.war
> > > was about 18 MB to start.  If you just want the SWF (and don't need to
> > > re-compile) then I'm sure you can get away with a lot less, but assuming
> > > you have the developer license that may only last you a day.
> > >
> > >
> > >
> > > Matt
> > >
> > >
> > >
> > > 
> > >
> > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> > > Behalf Of German
> > > Sent: Tuesday, July 19, 2005 2:22 PM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Minimal webapp
> > >
> > >
> > >
> > > Hi. I'm using flex for a demo, I did a small master-detail app with
> > > hsql, ibatis SqlMaps, Spring, SpringAdapter and Flex ofcourse. The
> > > thing is, how do i pack that application into a war file, what do i
> > > need to include? I took the explorer demo app and modified it but now
> > > I have 17Mb that i'm sure i don't need.
> > > What are the jars needed?, Do i need the "as" files.I'm new to flex i
> > > still don't get it quite well
> > >
> > > thanks
> > >
> > >
> > >
> > >
> > >
> > >
> > > --
> > > Flexcoders Mailing List
> > > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > > Search Archives:
> > > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > >
> > >
> > >
> > >
> > > SPONSORED LINKS
> > >
> > > Computer software testing
> > >  > > er+software+testing&w2=Macromedia+flex&w3=Development&w4=Software+develo
> > > per&c=4&s=93&.sig=kh2CguJwmatU5oBXjFo9Rg>
> > >
> > > Macromedia flex
> > > 

[flexcoders] Wait for Popup to close

2005-07-20 Thread charlespaz1
How do you make your application pause execution while waiting for the
results of a Pop up?

i.e.

function test() {
   var myPopUp = mx.managers.PopUpManager.createPopUp(_root, myWindow,
true, false);
   // Pause here, don't show alert until popup is closed
   mx.controls.Alert.show("PopUp closed");
}




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

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

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

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




Re: [flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Clint Modien



my mistake... it works for all containersOn 7/20/05, Clint Modien <[EMAIL PROTECTED]> wrote:

and it works for all classes down to UIObject






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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Clint Modien



yes they are not documented in ASDocs

and it works for all classes down to UIObject

the return for createComponent is the component created
the return type for createComponents is *probably* void

i agree they should be in the ASDocs docsOn 7/20/05, Jeff Tapper <[EMAIL PROTECTED]> wrote:
 is it just in"Developing Flex Apps" docs.






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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Jeff Tapper
I've actually seen those, what I'm looking for is the ASDoc, so I can find 
out what class its a method of, return values, things like that.  Anyone 
know if these methods are actually documented in ASDoc, or is it just in 
"Developing Flex Apps" docs.

At 04:32 PM 7/20/2005, Clint Modien wrote:
>http://livedocs.macromedia.com/flex/15/flex_docs_en/1145.htm
>http://livedocs.macromedia.com/flex/15/flex_docs_en/1146.htm
>and for good measure
>http://livedocs.macromedia.com/flex/15/flex_docs_en/1006.htm
>
>i find it helpful to use a wildcard (*)  when searching livedocs
>
>
>On 7/20/05, Jeff Tapper <[EMAIL PROTECTED]> wrote:
>I've been looking for the ASDoc on the createComponent and/or
>createComponents() methods, but havent been able to find them.  I'd assumed
>they were methods of Container, but I cant find it there.  Does this exist
>in ASDoc and I'm just missing it, was it an intentional ommision, or just a
>bug?
>
>Any ideas?
>
>
>
>--
>Flexcoders Mailing List
>FAQ: 
>http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>Search Archives: 
>http://www.mail-archive.com/flexcoders%40yahoogroups.com
>Yahoo! Groups Links
>
>http://groups.yahoo.com/group/flexcoders/
>
>[EMAIL PROTECTED]
>
>
>
>
>
>
>
>--
>Flexcoders Mailing List
>FAQ: 
>http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>Search Archives: 
>http://www.mail-archive.com/flexcoders%40yahoogroups.com
> 
>
>
>
>
>--
>YAHOO! GROUPS LINKS
>
>*  Visit your group 
> "flexcoders" on the web.
>*
>*  To unsubscribe from this group, send an email to:
>* 
> [EMAIL PROTECTED] 
>
>*
>*  Your use of Yahoo! Groups is subject to the 
> Yahoo! Terms of Service.
>
>
>--



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

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

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

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




Re: [flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Clint Modien



http://livedocs.macromedia.com/flex/15/flex_docs_en/1145.htm
http://livedocs.macromedia.com/flex/15/flex_docs_en/1146.htm
and for good measure
http://livedocs.macromedia.com/flex/15/flex_docs_en/1006.htm

i find it helpful to use a wildcard (*)  when searching livedocs
On 7/20/05, Jeff Tapper <[EMAIL PROTECTED]> wrote:
I've been looking for the ASDoc on the createComponent and/orcreateComponents() methods, but havent been able to find them.  I'd assumedthey were methods of Container, but I cant find it there.  Does this exist
in ASDoc and I'm just missing it, was it an intentional ommision, or just abug?Any ideas?--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
<*> To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/







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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Jeff Tapper
I've been looking for the ASDoc on the createComponent and/or 
createComponents() methods, but havent been able to find them.  I'd assumed 
they were methods of Container, but I cant find it there.  Does this exist 
in ASDoc and I'm just missing it, was it an intentional ommision, or just a 
bug?

Any ideas? 



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

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

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

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




RE: [flexcoders] Minimal webapp

2005-07-20 Thread Rob Rusher
Aldo,

>I am building some POCs and I wouldn't like to deliver the MXML / AS
>sources. Two questions:
>
>- Can I deliver just the compiled SWFs? How?

Yes you can if the SWF doesn't use the Flex proxy for anything (e.g.
RemoteObject). You simply set the  to true in
flex-config.xml, run the page and then copy the generated SWF to wherever.

>- Will they expire after a day?

Yes, they will expire if you don't have a license (NC or Commercial).

>BTW, they are to be deployed in WLS8.1... but I already have them
>working in a similar setup in my box, so that shouldn't be a problem.

I would suggest that you deploy your POCs to the Flex Explorer sample
application. Then just hand out the URL to people so that they can see it
work as well as see the code. It's very simple; just edit the topics.xml in
the explorer directory.

Regards,
Rob Rusher
 
RIA Consultant
Macromedia Certified Flex Instructor
e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Aldo Bucchi
Sent: Wednesday, July 20, 2005 2:47 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Minimal webapp

Matt,

>> If you just want the SWF (and don't need to
> > re-compile) then I'm sure you can get away with a lot less, but assuming
> > you have the developer license that may only last you a day.

I am building some POCs and I wouldn't like to deliver the MXML / AS
sources. Two questions:

- Can I deliver just the compiled SWFs? How?
- Will they expire after a day?

BTW, they are to be deployed in WLS8.1... but I already have them
working in a similar setup in my box, so that shouldn't be a problem.

Thanks,
-Aldo


On 7/20/05, German M. Gomez <[EMAIL PROTECTED]> wrote:
> Thanks Matt, that was exactly what i needed.
> 
>  --- Matt Chotin <[EMAIL PROTECTED]> escribió:
> 
> > You need your MXML and AS files and everything under WEB-INF/flex
> > *except* for the generated directory (which may be taking up some
> > space).  An "empty" flex.war is approximately 11 MB though samples.war
> > was about 18 MB to start.  If you just want the SWF (and don't need to
> > re-compile) then I'm sure you can get away with a lot less, but assuming
> > you have the developer license that may only last you a day.
> >
> >
> >
> > Matt
> >
> >
> >
> > 
> >
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> > Behalf Of German
> > Sent: Tuesday, July 19, 2005 2:22 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Minimal webapp
> >
> >
> >
> > Hi. I'm using flex for a demo, I did a small master-detail app with
> > hsql, ibatis SqlMaps, Spring, SpringAdapter and Flex ofcourse. The
> > thing is, how do i pack that application into a war file, what do i
> > need to include? I took the explorer demo app and modified it but now
> > I have 17Mb that i'm sure i don't need.
> > What are the jars needed?, Do i need the "as" files.I'm new to flex i
> > still don't get it quite well
> >
> > thanks
> >
> >
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives:
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> >
> >
> >
> >
> > SPONSORED LINKS
> >
> > Computer software testing
> >  > er+software+testing&w2=Macromedia+flex&w3=Development&w4=Software+develo
> > per&c=4&s=93&.sig=kh2CguJwmatU5oBXjFo9Rg>
> >
> > Macromedia flex
> >  > e+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=
> > 93&.sig=dAUcEV7do91-wrRtVS641g>
> >
> > Development
> >  > sting&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=93&.
> > sig=AlxNUQBOI7Io7S7nhmxV0Q>
> >
> > Software developer
> >  > ware+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4
> > &s=93&.sig=QWIit8JayomoIHLVkV3FDg>
> >
> >
> >
> >
> >
> >
> >
> > 
> >
> > YAHOO! GROUPS LINKS
> >
> >
> >
> > *  Visit your group "flexcoders
> >  " on the web.
> >
> > *  To unsubscribe from this group, send an email to:
> >[EMAIL PROTECTED]
> > 
> >
> > *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > Service  .
> >
> >
> >
> > 
> >
> >
> 
> 
> __
> Correo Yahoo!
> Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
> ¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://

Re: [flexcoders] Disabling theme on a component?

2005-07-20 Thread Sreejith Unnikrishnan


... Should do the job??

Sree


Stacy Young wrote:

> Is it possible to disable the theme on a single component? Don’t want 
> a grid to show any colors for selectedIndex, rollover etc. Can’t set 
> the colours to white either due to alternating row colours…
>
> Thx!
>
> Stace
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
>
>
>
> SPONSORED LINKS
> Computer software testing 
> 
>  
>   Macromedia flex 
> 
>  
>   Development 
> 
>  
>
> Software developer 
> 
>  
>
>
>
> 
> YAHOO! GROUPS LINKS
>
> * Visit your group "flexcoders
>   " on the web.
> * To unsubscribe from this group, send an email to:
>   [EMAIL PROTECTED]
>   
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>   Service .
>
>
> 
>




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

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

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

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




[flexcoders] Re: Flex CPU License(s)

2005-07-20 Thread kaibabsowats
I won't give you definite answer as it does really depend, but give
you a at least number.  

With Java the JVM has a 1.5Gb ram limitation (unless using Sun boxes
or 64 bit correct me if I am wrong).  So I usually try and get 2Gb of
ram minimum.  This allows the JVM use its limit if needed and have
stuff left over for normal OS and Database usage.

The number I can give is that you can definitely handle a couple
hundred simultaneous users on a server like that.  To spec out
anything more you need to benchmark the server with the actual
application.  I had a Dual 3.2Ghz Xeon 2Gb ram handle 1000-2000
simultaneous users for a Java application that was Memory intensive.

It is pretty safe to say if you actually have a couple hundred
simultaneous users you mostly likely have ten of thousand actual
users.  Of course there is no magic number but these are given as is
and really should be benchmarked with the actual application.

Renaun

--- In flexcoders@yahoogroups.com, "jwc_wensan" <[EMAIL PROTECTED]> wrote:
> To All:
> 
> Yesterday I made a post regarding trying to determine how many users
> a single server with one CPU could handle.  I realize "it depends"
> and I did not define any type of application.
> 
> I am trying to get some type of handle on what my costs will be
> regarding CPU licenses, servers, etc.
> 
> So let me try again.  Let's take the Flexstore as an example 
> application.  Based on this, can anyone shed some light as to how 
> many users in an hour the server could adequately handle.
> 
> Where will the bottleneck occur: Flex, server itself, database, etc.
> 
> If an hour is not the right way to measure, then please offer any
> measurement you feel is correct.
> 
> Server Configuration:
> 
> Dell Server @ 3.8 GHz with 1 GB RAM
> JRUN4
> Win 2000 Server
> 1 Flex license
> 
> As Dave and others recommended, I will put the database on a separate
> server.
> 
> I am not trying to tie anyone's hands here, just trying to get some
> perspective.
> 
> Thanks in advance,
> 
> Jack




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

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

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

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





Re: [flexcoders] Minimal webapp

2005-07-20 Thread Aldo Bucchi
Matt,

>> If you just want the SWF (and don't need to
> > re-compile) then I'm sure you can get away with a lot less, but assuming
> > you have the developer license that may only last you a day.

I am building some POCs and I wouldn't like to deliver the MXML / AS
sources. Two questions:

- Can I deliver just the compiled SWFs? How?
- Will they expire after a day?

BTW, they are to be deployed in WLS8.1... but I already have them
working in a similar setup in my box, so that shouldn't be a problem.

Thanks,
-Aldo


On 7/20/05, German M. Gomez <[EMAIL PROTECTED]> wrote:
> Thanks Matt, that was exactly what i needed.
> 
>  --- Matt Chotin <[EMAIL PROTECTED]> escribió:
> 
> > You need your MXML and AS files and everything under WEB-INF/flex
> > *except* for the generated directory (which may be taking up some
> > space).  An "empty" flex.war is approximately 11 MB though samples.war
> > was about 18 MB to start.  If you just want the SWF (and don't need to
> > re-compile) then I'm sure you can get away with a lot less, but assuming
> > you have the developer license that may only last you a day.
> >
> >
> >
> > Matt
> >
> >
> >
> > 
> >
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> > Behalf Of German
> > Sent: Tuesday, July 19, 2005 2:22 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Minimal webapp
> >
> >
> >
> > Hi. I'm using flex for a demo, I did a small master-detail app with
> > hsql, ibatis SqlMaps, Spring, SpringAdapter and Flex ofcourse. The
> > thing is, how do i pack that application into a war file, what do i
> > need to include? I took the explorer demo app and modified it but now
> > I have 17Mb that i'm sure i don't need.
> > What are the jars needed?, Do i need the "as" files.I'm new to flex i
> > still don't get it quite well
> >
> > thanks
> >
> >
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives:
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> >
> >
> >
> >
> > SPONSORED LINKS
> >
> > Computer software testing
> >  > er+software+testing&w2=Macromedia+flex&w3=Development&w4=Software+develo
> > per&c=4&s=93&.sig=kh2CguJwmatU5oBXjFo9Rg>
> >
> > Macromedia flex
> >  > e+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=
> > 93&.sig=dAUcEV7do91-wrRtVS641g>
> >
> > Development
> >  > sting&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=93&.
> > sig=AlxNUQBOI7Io7S7nhmxV0Q>
> >
> > Software developer
> >  > ware+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4
> > &s=93&.sig=QWIit8JayomoIHLVkV3FDg>
> >
> >
> >
> >
> >
> >
> >
> > 
> >
> > YAHOO! GROUPS LINKS
> >
> >
> >
> > *  Visit your group "flexcoders
> >  " on the web.
> >
> > *  To unsubscribe from this group, send an email to:
> >[EMAIL PROTECTED]
> > 
> >
> > *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > Service  .
> >
> >
> >
> > 
> >
> >
> 
> 
> __
> Correo Yahoo!
> Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
> ¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
> 
> 
> 
> 


-- 
: Aldo Bucchi :
mobile (56) 8 429 8300


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

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

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

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




[flexcoders] cellRenderer question

2005-07-20 Thread sanjayd
Hi.

I have a public method inside a cellRenderer and I want to call the
method from the mxml file that holds the grid.

So, my cellRenderer has code like this:







and, I call the method like this, from inside the mxml file that holds
the grid:

  function callTest1InCellRenderer() {
var clObject:Object = myDataGrid.getColumnAt(3).cellRenderer;
clObject.test1();
  }

BUT, this does not work..any suggestions ?

Thanks in advance. Sanjay




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

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

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

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





[flexcoders] Disabling theme on a component?

2005-07-20 Thread Stacy Young










Is it possible to disable the theme on a
single component? Don’t want a grid to show any colors for selectedIndex,
rollover etc. Can’t set the colours to white either due to alternating
row colours…

 

Thx!

Stace









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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Automatic Scrolling via Tab in a Container

2005-07-20 Thread Clint Modien



ok i see what your asking... 
you should be able to do this when the control gets the focus.
set the vPosition = the difference between the form's x value and the controls x value
kinda tricky getting that... you gota use localToGlobal and the back again

var formPoint = {x:yourFormsID.x, y:yourFormsID.y};        
yourFormsID.parent.localToGlobal(formPoint);
var controlPoint= {x:yourControlsID.x, y:yourControlsID.y};
yourControlsID.parent.localToGlobal(podPoint);
var diffPoint = {x:yourFormsID.x - yourControlsID.x, y:yourFormsID.y - yourControlsID.y};
yourFormsID.vPosition = diffPoint.x;  

should work...  should respond to the group and let us know if it
works or not or what the final solution was... I can see this coming up
a lot.

On 7/20/05, Allen Manning <[EMAIL PROTECTED]> wrote:



















Clint,

 

Are you suggesting that I databind to this
property against some maths inside of the container?  I guess I could update
the vPostion when a tab event fires, but I was hoping for something cleaner if
you get my drift.

 

Thanks for your help,

Allen

http://www.prismix.com/


 

 









From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Clint Modien
Sent: 20 July 2005 18:19
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
Automatic Scrolling via Tab in a Container



 

have a peek @ vPosition






On 7/20/05, Allen
Manning <[EMAIL PROTECTED]>
wrote:



Hello Flexcoders,

 

I did a bit of research sorry if it has been posted already.  Any
idea how can I make a container's view port automatically scroll when I tab to
a control outside of the view port?

 




http://www.macromedia.com/2003/mxml">

 

    

    

    

    

    

    

    

    

    

    

    

    

   



 

 

 

Thanks for any help,

Allen

 

http://www.prismix.com/


 

 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com











YAHOO!
GROUPS LINKS


 


  Visit your group
 "flexcoders"
 on the web.
  
  To unsubscribe
 from this group, send an email to:
   [EMAIL PROTECTED]
  
  Your use of
 Yahoo! Groups is subject to the Yahoo! Terms of Service.


 







 

--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005












--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com









  
  
SPONSORED LINKS
  
  
  


Computer software testing
  
  

Macromedia flex
  
  

Development
  
  



Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  











--
Incoming mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005
 

--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005
 








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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: TitleWindow passing vars back to another TitleWindow

2005-07-20 Thread mrvinedit
--- In flexcoders@yahoogroups.com, "Sauro, Nick" <[EMAIL PROTECTED]> wrote:
> can't u do something like
>  
> recpName.text={test.text} which will bind them together?
>  
> Nick Sauro + R O U N D A R C H + bus 212.909.2335 + mob 914.882.3687

If there's a way to do this with a binding, I would like to see it.
:-) 

"{test.text}" won't mean a thing to the first popup - Popup1's
recpName TextInput tag, so it'll throw a warning and an error...
something like a warning about changes to test won't be available and
then an error that test is not a known property.

My belief is you gotta use an event metadata on the 2nd popup,
Window2, and a listener on the first popup, Popup1.




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

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

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

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




[flexcoders] Problem calling HTTPService under Sun One WebServer

2005-07-20 Thread colinblackmore
I am trying to deploy a flex client on Sun's WebServer 6.1 (I know
this is not a supported configuration, but this is the requirement).

The pages compile and display correctly, but whenever an HTTPService
is called, the client waits indefinitely with the wait cursor on the
screen without calling the result handler.

The HTTPService is fine, and can be called directly from the browser.  

When tracing the  debug logs, one possible
problem is the headers in the response from the service call.  The
'Transfer-encoding: chunked' is not present in the (operational)
Tomcat deployment of the same client.

Sun WebServer 6.1 (broken)
INFO -- Cookie in response: domain = 'walsun2.centervilletech.com',
path = '/', client name = 'JSESSIONID', endpoint name = 'JSESSIONID',
value = 'A8F7BD1317EB255D3E24C2FD42C70F7F
INFO -- Header in response: Server : Sun-ONE-Web-Server/6.1
INFO -- Header in response: Date : Wed, 20 Jul 2005 17:28:29 GMT
INFO -- Header in response: Content-type : text/xml; charset=UTF-8
INFO -- Header in response: Transfer-encoding : chunked
INFO -- Begin GET response --
INFO 
...

Tomcat 5.5 (works)
INFO -- Cookie in response: domain = 'localhost', path = '/', client
name = 'JSESSIONID', endpoint name = 'JSESSIONID', value =
'12494FCC43F01E9ECE2AFD27A6F2066F
INFO -- Header in response: Server : Apache-Coyote/1.1
INFO -- Header in response: Pragma : No-cache
INFO -- Header in response: Cache-Control : no-cache
INFO -- Header in response: Expires : Wed, 31 Dec 1969 19:00:00 EST
INFO -- Header in response: Content-Type : text/xml;charset=UTF-8
INFO -- Header in response: Date : Wed, 20 Jul 2005 17:41:09 GMT
INFO -- Begin GET response --
INFO 
...

Has anyone deployed under Sun Webserver 6.1?  Is the Transfer-encoding
 at fault?  Is there a work-around?

Thanks, in advance.

...Col






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

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

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

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




[flexcoders] Error: No service is known to Flash Remoting MX

2005-07-20 Thread charlespaz1
I'm running an integrated install with ColdFusion 6.1 and Flex 1.5 as
per
http://www.macromedia.com/support/documentation/en/flex/1_5/flexforcf.html

The samples run fine EXCEPT for Remote-Objects.  All calls give the
same error: No service named ... is known to Flash Remoting MX.  I've
even created a few of my own java classes, tested them with ColdFusion
using cfobject, and they work, so I know the issue lies with the
integration.

Playing around with ColdFusion 7 on a Windows machine, I found that
with an integrated installation with CF7, Remote-Objects work! Yet Web
Services don't.

Macromedia support just told me follow the steps for a Flex 1.0
integrated install
(http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19258),
which is almost the same except it includes a few filters that don't
exist with Flex 1.5 (SampleSecurityFilter) so would be pointless to
follow.

Help!




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

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

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

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




RE: [flexcoders] Automatic Scrolling via Tab in a Container

2005-07-20 Thread Allen Manning










Clint,

 

Are you suggesting that I databind to this
property against some maths inside of the container?  I guess I could update
the vPostion when a tab event fires, but I was hoping for something cleaner if
you get my drift.

 

Thanks for your help,

Allen

http://www.prismix.com/

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Modien
Sent: 20 July 2005 18:19
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
Automatic Scrolling via Tab in a Container



 

have a peek @ vPosition






On 7/20/05, Allen
Manning <[EMAIL PROTECTED]>
wrote:



Hello Flexcoders,

 

I did a bit of research sorry if it has been posted already.  Any
idea how can I make a container's view port automatically scroll when I tab to
a control outside of the view port?

 



http://www.macromedia.com/2003/mxml">

 

    

    

    

    

    

    

    

    

    

    

    

    

   



 

 

 

Thanks for any help,

Allen

 

http://www.prismix.com/


 

 





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










YAHOO!
GROUPS LINKS


 


  Visit your group
 "flexcoders"
 on the web.
  
  To unsubscribe
 from this group, send an email to:
   [EMAIL PROTECTED]
  
  Your use of
 Yahoo! Groups is subject to the Yahoo! Terms of Service.


 







 

--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005












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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











--
Incoming mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005
 

--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005
 


RE: [flexcoders] Cache issue on CheckBox( CellRenderer)

2005-07-20 Thread Stacy Young










Unless you explicitly remove all items in
the grid or nuke its dataprovider the values will stay populated. (in turn
setting the value in ur
cellrenderer)

 

-Stace

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shahnavaz Alware
Sent: Wednesday, July 20, 2005
1:31 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Cache issue
on CheckBox( CellRenderer)



 

Hi,

 

I have a DataGrid with Checkbox (CellRenderer). I do some
checkbox selection and hit SAVE which brings up a different view. I come back
to the same screen with DataGrid (with Checkbox), my checkbox at same index (I
did the selection last time I came to this page) in the datagrid are already
selected. Is this some kind of Caching issue or is it something I am doing
wrong?

 

Thanks

 

Shahn









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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Cache issue on CheckBox( CellRenderer)

2005-07-20 Thread Shahnavaz Alware










Hi,

 

I have a DataGrid with Checkbox (CellRenderer). I do some checkbox
selection and hit SAVE which brings up a different view. I come back to the
same screen with DataGrid (with Checkbox), my checkbox at same index (I did the
selection last time I came to this page) in the datagrid are already selected. Is
this some kind of Caching issue or is it something I am doing wrong?

 

Thanks

 

Shahn









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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Automatic Scrolling via Tab in a Container

2005-07-20 Thread Clint Modien



have a peek @ vPosition

On 7/20/05, Allen Manning <[EMAIL PROTECTED]> wrote:

















Hello Flexcoders,

 

I did a bit of research sorry if it has been posted
already.  Any idea how can I make a container's view port automatically
scroll when I tab to a control outside of the view port?

 



http://www.macromedia.com/2003/mxml">

 

    

    

    

    

    

    

    

    

    

    

    

    

   



 

 

 

Thanks for any help,

Allen

 

http://www.prismix.com/


 

 









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  











--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005
 








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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] initializing global variables

2005-07-20 Thread Clint Modien



Fantastic... thanks Matt.
On 7/20/05, Matt Chotin <[EMAIL PROTECTED]> wrote:

















If you need this thing to be done right at
startup you can consider a static method like we've recommended in the
past to make a faceless object an event dispatcher.

 



  public static var foo:String;

  static function initGlobal():Boolean

  {

    foo = someValue;

    return true;

  }

  private static staticsInited : Boolean =
initGlobal();



 

Now you can refer to this property as
MyApplication.foo (note MyApplication is the name of your MXML file).

 

You can also just use a singleton
somewhere to hold onto your globals, not everything has to hang off of
Application.application.

 

Matt

 









From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Clint Modien
Sent: Wednesday, July 20, 2005
7:58 AM
To: flexcoders@yahoogroups.com

Subject: Re: [flexcoders]
initializing global variables



 

The behavior is
apparently by default..

http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm





On 7/20/05, JesterXL
<[EMAIL PROTECTED]>
wrote:



Is their creationPolicy not set to "all"?







 





- Original Message - 




From: 
Clint
Modien 





To: 
flexcoders@yahoogroups.com 





Sent: Wednesday, July
20, 2005 10:12 AM





Subject: Re: [flexcoders]
initializing global variables







 



Ya i did try to use the
initialize handler... but apparently it get's called "after" the
initialize handler of my grandchild.

Check the link.



On 7/20/05, Sauro,
Nick <[EMAIL PROTECTED]>
wrote: 

Well, your parent won't be fully created
until its children are, since the children are its data members, so how can the
parent be 'completed', w/o its data/members/children being completed first?

 

As for your global vars, have you tried
using the initialize handler?

 

 



 



Nick
Sauro + R O U N D
 A R C H
 + bus 212.909.2335 + mob 914.882.3687



 



 







From:
 flexcoders@yahoogroups.com
[mailto:
flexcoders@yahoogroups.com] On Behalf Of Clint
Modien
Sent: Wednesday, July 20, 2005
9:53 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] initializing
global variables



OK so umm... 

http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm


I'm confused.

My grandkids and my kids get initialized before I do? (The application)

Uhh... how am I supposed to setup the any global vars in the app?

Even the creationCompletes of my grandkids fires before the app does.


What's the first event to fire in the Application that I can use to initialize
a global var?





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com











YAHOO!
GROUPS LINKS


 


  Visit your group
 "flexcoders"
 on the web.
  
  To unsubscribe
 from this group, send an email to:
   [EMAIL PROTECTED]
  
  Your use of
 Yahoo! Groups is subject to the Yahoo! Terms of Service.


 












--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 









YAHOO!
GROUPS LINKS


 


  Visit your group
 "flexcoders"
 on the web.
  
  To unsubscribe
 from this group, send an email to:
   [EMAIL PROTECTED]
  
  Your use of
 Yahoo! Groups is subject to the Yahoo! Terms of Service.


 




















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders
" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  

















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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] initializing global variables

2005-07-20 Thread Matt Chotin










If you need this thing to be done right at
startup you can consider a static method like we’ve recommended in the
past to make a faceless object an event dispatcher.

 



  public static var foo:String;

  static function initGlobal():Boolean

  {

    foo = someValue;

    return true;

  }

  private static staticsInited : Boolean =
initGlobal();



 

Now you can refer to this property as
MyApplication.foo (note MyApplication is the name of your MXML file).

 

You can also just use a singleton
somewhere to hold onto your globals, not everything has to hang off of
Application.application.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Modien
Sent: Wednesday, July 20, 2005
7:58 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
initializing global variables



 

The behavior is
apparently by default..

http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm





On 7/20/05, JesterXL
<[EMAIL PROTECTED]>
wrote:



Is their creationPolicy not set to "all"?







 





- Original Message - 



From: Clint
Modien 





To: flexcoders@yahoogroups.com 





Sent: Wednesday, July
20, 2005 10:12 AM





Subject: Re: [flexcoders]
initializing global variables







 



Ya i did try to use the
initialize handler... but apparently it get's called "after" the
initialize handler of my grandchild.

Check the link.



On 7/20/05, Sauro,
Nick <[EMAIL PROTECTED]>
wrote: 

Well, your parent won't be fully created
until its children are, since the children are its data members, so how can the
parent be 'completed', w/o its data/members/children being completed first?

 

As for your global vars, have you tried
using the initialize handler?

 

 



 



Nick
Sauro + R O U N D A R C H + bus 212.909.2335 + mob 914.882.3687



 



 







From: flexcoders@yahoogroups.com
[mailto:
flexcoders@yahoogroups.com] On Behalf Of Clint
Modien
Sent: Wednesday, July 20, 2005
9:53 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] initializing
global variables



OK so umm... 

http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm


I'm confused.

My grandkids and my kids get initialized before I do? (The application)

Uhh... how am I supposed to setup the any global vars in the app?

Even the creationCompletes of my grandkids fires before the app does.


What's the first event to fire in the Application that I can use to initialize
a global var?





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com










YAHOO!
GROUPS LINKS


 


  Visit your group
 "flexcoders"
 on the web.
  
  To unsubscribe
 from this group, send an email to:
   [EMAIL PROTECTED]
  
  Your use of
 Yahoo! Groups is subject to the Yahoo! Terms of Service.


 












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









YAHOO!
GROUPS LINKS


 


  Visit your group
 "flexcoders"
 on the web.
  
  To unsubscribe
 from this group, send an email to:
   [EMAIL PROTECTED]
  
  Your use of
 Yahoo! Groups is subject to the Yahoo! Terms of Service.


 




















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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] initializing global variables

2005-07-20 Thread JesterXL





Yeah, that's what you want; you want your 
Application to be initialized after everyone in it is done.
 
As far as global vars, "Singleton is the new 
_global."
 
As such, if you define them in a Singleton class, 
all children will have access to them immediately. If you want them as member 
vars of Application.mxml, yeah, that won't work.
 
- Original Message - 
From: Clint Modien 
To: flexcoders@yahoogroups.com 
Sent: Wednesday, July 20, 2005 10:58 AM
Subject: Re: [flexcoders] initializing global variables
The behavior is apparently by default..http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm
On 7/20/05, JesterXL 
<[EMAIL PROTECTED]> 
wrote:

  Is their creationPolicy not set to 
  "all"?
  
   
  - 
  Original Message - 
  From: 
  Clint Modien 
  To: flexcoders@yahoogroups.com 
  Sent: Wednesday, July 20, 2005 10:12 AM
  Subject: Re: [flexcoders] initializing global 
variables
  Ya i did try to use the initialize handler... but apparently it 
  get's called "after" the initialize handler of my grandchild.Check the 
  link.
  On 7/20/05, Sauro, 
  Nick <[EMAIL PROTECTED]> 
  wrote: 
  
Well, 
your parent won't be fully created until its children are, since the 
children are its data members, so how can the parent be 'completed', w/o its 
data/members/children being completed first?
 
As for 
your global vars, have you tried using the initialize 
handler?
 
 
 
Nick 
Sauro + R 
O U N D 
A R C H 
+ bus 
212.909.2335 + mob 914.882.3687
 


From: flexcoders@yahoogroups.com [mailto: 
flexcoders@yahoogroups.com] On Behalf Of Clint 
ModienSent: Wednesday, July 20, 2005 9:53 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] 
initializing global variables

OK so umm... http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm 
I'm confused.My grandkids and my kids get initialized 
before I do? (The application)Uhh... how am I supposed to setup the 
any global vars in the app?Even the creationCompletes of my 
grandkids fires before the app does.What's the first event to 
fire in the Application that I can use to initialize a global 
var?--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



YAHOO! GROUPS LINKS 

   Visit your group "flexcoders" on the web.  
   To unsubscribe from this group, send an email 
  to:  [EMAIL PROTECTED]  
  
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
  Service. 


--Flexcoders Mailing ListFAQ: 
  http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  
  
  
  YAHOO! GROUPS LINKS 
  
 Visit your group "flexcoders" on the web.  
 To unsubscribe from this group, send an email 
to:  [EMAIL PROTECTED]  

 Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service. 
  
  
  





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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] How much do you charge for Flex development?

2005-07-20 Thread Clint Modien



might be comparing apples to oranges there...  

Typical flex project = 6 months

Typical car repair = 6 hours

On 7/20/05, Rob Rusher <[EMAIL PROTECTED]> wrote:
What?! Are you guys crazy? My mechanic charges me more than that.Consultancies are going to charge between $100 (newbie) and $250 (guru) anhour for a Flex developer. Sure, as an independent, you will charge less but
not that much less.Maybe I'm spoiled, but Jesse you're worth way more my friend.Regards,Rob RusherRIA ConsultantMacromedia Certified Flex Instructor
e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher-Original Message-From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] OnBehalf Of JesterXLSent: Wednesday, July 20, 2005 11:04 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] How much do you charge for Flex development?
Busy/Bad Mood = $60/hourI like you/Not Busy/Good Mood = $30/hourAs far as salary, I'd think because of your server background, 70-90 is fair& market rate (per various job sites & the USA government department of
commerce salary reports) depending on company size, but depends on thedirection they are going with Flex.For example, the reason I'm asked to do contract Flex by clients (beyond thefact there aren't many Flex contractors) is because I know how to get the
GUI to work.  The reverse holds true in having a good server-side developeron the team doing Flex because he/she knows the impact on the backend andcan offer valuable insight into making the application work better, leaving
the GUI/wireframe/frontend visual details up to someone like meof course, the same logic applies to my Flash projects, hehe.Flex/Flash, here's my typical scenario:"Jesse, can you do Flex contract?"
"No, but these people might have time." :: forwards list of contractors ::*alternate universe where Jesse has time for more than 1 contract job ayear*"Sure, but I'm really busy right now, what are the details of the project?"
:: gets details / specs / whatever wireframes are available, if any ::"Ok, swag time estimate is X hours @ 60 an hour, my rate, thus that'll costyou $XX for my services.""Geez, we don't have the budget for that"
:: negotiations ::"Ok, I've adjusted the scope of what I can do, rate, and hours based on ourdiscussions.  We agree to $XX for the project since that fits nicely in yourbudget.  Let's knock this shiz out of the park!"
So, I say a rate, but rarely ever get it because of budgetting, which isunderstandable and I'll adjust what I can do and what I charge accordingly,if at all possible.  Now, as far as salary, I'd treat it similiarly to any
New Media + Front-end JSP Development type job, and you'd have an accurateassessment of salary range.  Naturally, all the other rules of location,budget, company size, time, etc. all factor in which is beyond the scope of
this email; there are plenty of resources online both professional,independent, and governement which can help you make a more educatedinference based on the numbers I gave above.- Original Message -
From: "Devin Holloway" <[EMAIL PROTECTED]>To: Sent: Wednesday, July 20, 2005 3:59 AM
Subject: [flexcoders] How much do you charge for Flex development?As a CF developer, I've been recently been putting more seriousthought into becoming a Flex developer. It would be a long timebefore the company I work for could move into this direction, if
ever. So I'd have to become a contractor or find a Flex position atanother company.But I'm curious as to how much a Flex developer should be making. Irealize much of that depends on your skillset, but does their exist
any averages? or possibly some minimums and maximums?Let's pretend I make around $75K/yr as a full time CF developer. I'mby no means a Flex guru, with less then a month of learning it. Iwould also be seeking a CF position with an emphasis on Flex
development, for, it seems as though I'd have to take a good sizedpay cut if I were to become purely a Flex developer with what littleexperience I have... and therefore would need to offer my CFMLskillset as well, to counter the pay cut. Personaly, getting a CF
position with a Flex emphasis and making approximately the sameamount of money would seem like a bargain to me. But would I be short-changing myself? Would a lack of Flex developers allow a person to beless competitive and ask for more?
And what would contractor generally charge? I don't see myselfbecoming a contractor yet, for I'd rather seek a fulltime positionwhere I could learn first.--Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Se

[flexcoders] Automatic Scrolling via Tab in a Container

2005-07-20 Thread Allen Manning










Hello Flexcoders,

 

I did a bit of research sorry if it has been posted
already.  Any idea how can I make a container’s view port automatically
scroll when I tab to a control outside of the view port?

 





 

    

    

    

    

    

    

    

    

    

    

    

    

   



 

 

 

Thanks for any help,

Allen

 

http://www.prismix.com/

 

 









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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005
 


Re: [flexcoders] initializing global variables

2005-07-20 Thread Clint Modien



The behavior is apparently by default..

http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm
On 7/20/05, JesterXL <[EMAIL PROTECTED]> wrote:









Is their creationPolicy not set to 
"all"?
 
- Original Message - 
From: 
Clint Modien 
To: flexcoders@yahoogroups.com 
Sent: Wednesday, July 20, 2005 10:12 AM
Subject: Re: [flexcoders] initializing global variables
Ya i did try to use the initialize handler... but apparently it 
get's called "after" the initialize handler of my grandchild.Check the 
link.
On 7/20/05, Sauro, 
Nick <[EMAIL PROTECTED]> 
wrote:

  Well, your 
  parent won't be fully created until its children are, since the children are 
  its data members, so how can the parent be 'completed', w/o its 
  data/members/children being completed first?
   
  As for 
  your global vars, have you tried using the initialize 
  handler?
   
   
   
  Nick 
  Sauro + R 
  O U N D 
  A R C H 
  + bus 
  212.909.2335 + mob 914.882.3687
   
  
  
  From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Clint 
  ModienSent: Wednesday, July 20, 2005 9:53 AMTo: flexcoders@yahoogroups.com
Subject: [flexcoders] 
  initializing global variables
  
  OK so umm... http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm 
  I'm confused.My grandkids and my kids get initialized 
  before I do? (The application)Uhh... how am I supposed to setup the 
  any global vars in the app?Even the creationCompletes of my grandkids 
  fires before the app does.What's the first event to fire in the 
  Application that I can use to initialize a global 
  var?--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  
  
  
  YAHOO! GROUPS LINKS 
  
 Visit your group "flexcoders" on the web.  

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

 Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service. 
  
  
  





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  















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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Closing Title Popup with [Escape], works in Mozilla but not IE??

2005-07-20 Thread Allen Manning










Hello Flexcoders,

 

I can close the pop-up with the Escape key in Mozilla
but not IE.  Any ideas?

 



Index.mxml



 



 



    

    

    private function openPopup():Void

    {

    

    /*

    createPopUp(parent:MovieClip,
class:Object [, modal:Boolean, initobj:Object,outsideEvents:Boolean]) :
MovieClip

    */

    var model:Boolean = true;

    var myWin_mc =
mx.managers.PopUpManager.createPopUp(this,TitleWindow,model);

    

    //center of this mc

    myWin_mc.centerPopUp();

    

    //Create the event handler to delete
the pop up when closed 

    var eventHandlerObj = new Object();

    eventHandlerObj.click =
function(event)

    {

 

    event.target.deletePopUp();

 

    }

 

    //Register the event handler with the
TitleWindow container.

    myWin_mc.addEventListener("click",eventHandlerObj);

    

    }

    

    

    

    

    

    



 

 

 



TitleWindow.mxml





 



    

    

    private function initKeyDown():Void

    {

    

    var myListener:Object = new Object();

    

    myListener. handleKeyDown);

    Key.addListener(myListener);

    

    }

    

    private function handleKeyDown (event) : Void


    {

    if (Key.isDown(Key.ESCAPE))

    {

    this.deletePopUp();

    Key.removeListener(handleKeyDown);

    }   

    }

    

 

    

    



 

Thanks,

Allen

http://www.prismix.com/









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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.269 / Virus Database: 267.9.2 - Release Date: 19/07/2005
 


Re: [flexcoders] How much do you charge for Flex development?

2005-07-20 Thread JesterXL
I live in Cumming, Georgia, not Manhattan.  Additionally, the typical Flash 
projects I get are small in scope; either support apps for existing CMS 
systems, custom built small apps (such as a airport control tower radar 
screen configurable by XML used in a recent movie), or custom web apps (most 
recent is a Flashcom freestyle rap app, based on my old MX freestyle app for 
a big r&b artists website).

Budgets typically are low, or already severely ravaged by inhouse team 
members, giving me the outsourced contractor whats left, which typically 
isn't much.

About $600 for a Flashcom app, which I had PLENTY of opportunity to say 
No... and I did, twice, I swear.  I said yes because I get 4 FCS projects a 
year, and even then only 1 is something that is even worthwhile of doing and 
getting paid to do it.

The largest ran for $12k, which wasn't hourly based; it was a budget I 
negotiated and had to work with it because the deadline was harder than 
platnimum.  2 months whether I liked it or not.  However, I felt I could do 
it quick enough to justify my time involved (don't remember the actually end 
result but it was good).

So, either I take the project because even though the budget is far below my 
standards, I dig the work and want the resume piece... or it's only a 2 
weekend project that's worth 500 bucks to me.  I do this for fun, not for a 
living.

The Flex market, however, is totally different.  I've been offered 2 
positions that actually had the potential be real (which I had to cordially 
pass up).  I'm sure based on what the recruiters said, it'd be another 
enterprise company that needed Flex muscle and were willing to pay big 
company salaries/contracting rates.

As for contract, the budgets I did get mirror what Ted Patrick said in the 
past; higher payout rates.

However, I haven't had time to take such jobs, prove their return, and 
adjust my rates for such projects.  I'm sure if they had bigger budgets, I'd 
charge accordingly.  When I have time again, and an opportunity arises, I'm 
sure what you say will be accurate.


- Original Message - 
From: "Rob Rusher" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, July 20, 2005 11:45 AM
Subject: RE: [flexcoders] How much do you charge for Flex development?


What?! Are you guys crazy? My mechanic charges me more than that.

Consultancies are going to charge between $100 (newbie) and $250 (guru) an
hour for a Flex developer. Sure, as an independent, you will charge less but
not that much less.

Maybe I'm spoiled, but Jesse you're worth way more my friend.

Regards,
Rob Rusher

RIA Consultant
Macromedia Certified Flex Instructor
e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of JesterXL
Sent: Wednesday, July 20, 2005 11:04 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] How much do you charge for Flex development?

Busy/Bad Mood = $60/hour
I like you/Not Busy/Good Mood = $30/hour

As far as salary, I'd think because of your server background, 70-90 is fair

& market rate (per various job sites & the USA government department of
commerce salary reports) depending on company size, but depends on the
direction they are going with Flex.

For example, the reason I'm asked to do contract Flex by clients (beyond the

fact there aren't many Flex contractors) is because I know how to get the
GUI to work.  The reverse holds true in having a good server-side developer
on the team doing Flex because he/she knows the impact on the backend and
can offer valuable insight into making the application work better, leaving
the GUI/wireframe/frontend visual details up to someone like me.

...of course, the same logic applies to my Flash projects, hehe.
Flex/Flash, here's my typical scenario:

"Jesse, can you do Flex contract?"

"No, but these people might have time." :: forwards list of contractors ::

*alternate universe where Jesse has time for more than 1 contract job a
year*

"Sure, but I'm really busy right now, what are the details of the project?"

:: gets details / specs / whatever wireframes are available, if any ::

"Ok, swag time estimate is X hours @ 60 an hour, my rate, thus that'll cost
you $XX for my services."

"Geez, we don't have the budget for that"

:: negotiations ::

"Ok, I've adjusted the scope of what I can do, rate, and hours based on our
discussions.  We agree to $XX for the project since that fits nicely in your

budget.  Let's knock this shiz out of the park!"

So, I say a rate, but rarely ever get it because of budgetting, which is
understandable and I'll adjust what I can do and what I charge accordingly,
if at all possible.  Now, as far as salary, I'd treat it similiarly to any
New Media + Front-end JSP Development type job, and you'd have an accurate
assessment of salary range.  Naturally, all the other rules of location,
budget, company size, time, etc. all factor in which is beyond the scope of
this email; there a

[flexcoders] Flex 2.0

2005-07-20 Thread jwc_wensan
To All:

Anyone have any idea, speculation, guess, etc. on release timeframe
of Flex 2.0 ?

Thanks in advance,

Jack






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

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

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

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




RE: [flexcoders] ERROR MESSAGE : Branch between 7543 and 40329 around line 0 exceeds 32K span. If possible, please refactor this component

2005-07-20 Thread david_gal-reyniez





Hi everybody
For people who faces with the same problem I 
had...
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19520
Bye


De : flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] De la part de 
david_gal-reyniezEnvoyé : mardi 19 juillet 2005 
17:07À : flexcoders@yahoogroups.comObjet : 
[flexcoders] ERROR MESSAGE : Branch between 7543 and 40329 around line 0 exceeds 
32K span. If possible, please refactor this component

Hi 
everyboby!
 
Can anybody explain 
to me the reason of this regularly error message I have
 
***
Branch between 7543 
and 40329 around line 0 exceeds 32K span. If possible, please refactor this 
component
***
 
It seems like a 
problem of memory but.. I don't know what to do.
Yours suggeestions 
will be appreciated!
Thanks
 
Daivd
** 

Coface facilite les echanges entre 
les entreprises partout dans le monde. Pour cela, elle offre a toutes les 
entreprises des solutions pour gerer, financer et proteger leur poste client, en 
leur permettant d'externaliser tout ou partie de la gestion et des risques lies 
a leurs relations commerciales. Coface est notee AA par Fitch Ratings et Aa3 par 
Moody's. 
Pour en savoir plus, 
http://www.coface.fr 

Coface facilitates 
business-to-business commerce worldwide. It offers all size companies an array 
of solutions to manage, finance, and protect their accounts receivables 
affording them the option of fully or partly outsourcing trade relationship 
management and attendant risks. Coface is rated AA by Fitch ratings and Aa3 by 
Moody's. 
More about Coface, 
http://www.coface.com 

WARNING : 
- Soyez conscient que notre systeme 
Anti-Spam peut parfois rejeter des messages, soit parce que certains mots et 
types de fichiers ne sont pas acceptes, ou bien parce que le mail n'a pas ete 
identifie correctement. 
- Be aware that from time to time 
our Anti-Spam system may reject mails either because some words and types of 
files are not allowed or because mails are misidentified. 
** 

** 

Coface facilite les echanges entre les entreprises partout dans le monde. Pour cela, elle offre a toutes les entreprises des solutions pour gerer, financer et proteger leur poste client, en leur permettant d'externaliser tout ou partie de la gestion et des risques lies a leurs relations commerciales. Coface est notee AA par Fitch Ratings et Aa3 par Moody's. 

Pour en savoir plus, http://www.coface.fr 

 

Coface facilitates business-to-business commerce worldwide. It offers all size companies an array of solutions to manage, finance, and protect their accounts receivables affording them the option of fully or partly outsourcing trade relationship management and attendant risks. Coface is rated AA by Fitch ratings and Aa3 by Moody's. 

More about Coface, http://www.coface.com 

 

WARNING :  

- Soyez conscient que notre systeme Anti-Spam peut parfois rejeter des messages, soit parce que certains mots et types de fichiers ne sont pas acceptes, ou bien parce que le mail n'a pas ete identifie correctement. 

- Be aware that from time to time our Anti-Spam system may reject mails either because some words and types of files are not allowed or because mails are misidentified.  

**  





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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  













RE: [flexcoders] How much do you charge for Flex development?

2005-07-20 Thread Rob Rusher
What?! Are you guys crazy? My mechanic charges me more than that.

Consultancies are going to charge between $100 (newbie) and $250 (guru) an
hour for a Flex developer. Sure, as an independent, you will charge less but
not that much less.

Maybe I'm spoiled, but Jesse you're worth way more my friend.

Regards,
Rob Rusher
 
RIA Consultant
Macromedia Certified Flex Instructor
e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of JesterXL
Sent: Wednesday, July 20, 2005 11:04 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] How much do you charge for Flex development?

Busy/Bad Mood = $60/hour
I like you/Not Busy/Good Mood = $30/hour

As far as salary, I'd think because of your server background, 70-90 is fair

& market rate (per various job sites & the USA government department of 
commerce salary reports) depending on company size, but depends on the 
direction they are going with Flex.

For example, the reason I'm asked to do contract Flex by clients (beyond the

fact there aren't many Flex contractors) is because I know how to get the 
GUI to work.  The reverse holds true in having a good server-side developer 
on the team doing Flex because he/she knows the impact on the backend and 
can offer valuable insight into making the application work better, leaving 
the GUI/wireframe/frontend visual details up to someone like me.

...of course, the same logic applies to my Flash projects, hehe. 
Flex/Flash, here's my typical scenario:

"Jesse, can you do Flex contract?"

"No, but these people might have time." :: forwards list of contractors ::

*alternate universe where Jesse has time for more than 1 contract job a 
year*

"Sure, but I'm really busy right now, what are the details of the project?"

:: gets details / specs / whatever wireframes are available, if any ::

"Ok, swag time estimate is X hours @ 60 an hour, my rate, thus that'll cost 
you $XX for my services."

"Geez, we don't have the budget for that"

:: negotiations ::

"Ok, I've adjusted the scope of what I can do, rate, and hours based on our 
discussions.  We agree to $XX for the project since that fits nicely in your

budget.  Let's knock this shiz out of the park!"

So, I say a rate, but rarely ever get it because of budgetting, which is 
understandable and I'll adjust what I can do and what I charge accordingly, 
if at all possible.  Now, as far as salary, I'd treat it similiarly to any 
New Media + Front-end JSP Development type job, and you'd have an accurate 
assessment of salary range.  Naturally, all the other rules of location, 
budget, company size, time, etc. all factor in which is beyond the scope of 
this email; there are plenty of resources online both professional, 
independent, and governement which can help you make a more educated 
inference based on the numbers I gave above.

- Original Message - 
From: "Devin Holloway" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, July 20, 2005 3:59 AM
Subject: [flexcoders] How much do you charge for Flex development?



As a CF developer, I've been recently been putting more serious
thought into becoming a Flex developer. It would be a long time
before the company I work for could move into this direction, if
ever. So I'd have to become a contractor or find a Flex position at
another company.

But I'm curious as to how much a Flex developer should be making. I
realize much of that depends on your skillset, but does their exist
any averages? or possibly some minimums and maximums?

Let's pretend I make around $75K/yr as a full time CF developer. I'm
by no means a Flex guru, with less then a month of learning it. I
would also be seeking a CF position with an emphasis on Flex
development, for, it seems as though I'd have to take a good sized
pay cut if I were to become purely a Flex developer with what little
experience I have... and therefore would need to offer my CFML
skillset as well, to counter the pay cut. Personaly, getting a CF
position with a Flex emphasis and making approximately the same
amount of money would seem like a bargain to me. But would I be short-
changing myself? Would a lack of Flex developers allow a person to be
less competitive and ask for more?

And what would contractor generally charge? I don't see myself
becoming a contractor yet, for I'd rather seek a fulltime position
where I could learn first.




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







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



 





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

[flexcoders] Nice to meet you

2005-07-20 Thread Tarik Ahmed






Hey Justin,

Was nice to meet you, you guys have some interesting stuff going on.
Wish you guys the best of luck in your endeavors!

Thanks!


Justin Everett-Church wrote:

  
  
  
  

  
  
  Hi,
   
  I just joined the
Flexcoders list today and I’m sure I’m
going to have lots of questions as I get up to speed.  In the meantime,
I
wanted to let everyone know that Yahoo! Inc. has several Flex positions
open. Currently
we have Sr. Engineer, Design Engineer, and Interaction
Designer-prototyping positions
available. These are full time, on site positions in Sunnyvale, CA. 
 All three are great opportunities to work on some exciting projects
with
great people.
   
  If you would like more
details about any of these positions,
please contact me at [EMAIL PROTECTED].
  
   
  Thanks,
  Justin
   
  
  ___
Justin Everett-Church
Rich Media Evangelist
  Yahoo! Inc.
  [EMAIL PROTECTED] 
YIM: beltransf 
  
   
  









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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  










Re: [flexcoders] How much do you charge for Flex development?

2005-07-20 Thread JesterXL
Busy/Bad Mood = $60/hour
I like you/Not Busy/Good Mood = $30/hour

As far as salary, I'd think because of your server background, 70-90 is fair 
& market rate (per various job sites & the USA government department of 
commerce salary reports) depending on company size, but depends on the 
direction they are going with Flex.

For example, the reason I'm asked to do contract Flex by clients (beyond the 
fact there aren't many Flex contractors) is because I know how to get the 
GUI to work.  The reverse holds true in having a good server-side developer 
on the team doing Flex because he/she knows the impact on the backend and 
can offer valuable insight into making the application work better, leaving 
the GUI/wireframe/frontend visual details up to someone like me.

...of course, the same logic applies to my Flash projects, hehe. 
Flex/Flash, here's my typical scenario:

"Jesse, can you do Flex contract?"

"No, but these people might have time." :: forwards list of contractors ::

*alternate universe where Jesse has time for more than 1 contract job a 
year*

"Sure, but I'm really busy right now, what are the details of the project?"

:: gets details / specs / whatever wireframes are available, if any ::

"Ok, swag time estimate is X hours @ 60 an hour, my rate, thus that'll cost 
you $XX for my services."

"Geez, we don't have the budget for that"

:: negotiations ::

"Ok, I've adjusted the scope of what I can do, rate, and hours based on our 
discussions.  We agree to $XX for the project since that fits nicely in your 
budget.  Let's knock this shiz out of the park!"

So, I say a rate, but rarely ever get it because of budgetting, which is 
understandable and I'll adjust what I can do and what I charge accordingly, 
if at all possible.  Now, as far as salary, I'd treat it similiarly to any 
New Media + Front-end JSP Development type job, and you'd have an accurate 
assessment of salary range.  Naturally, all the other rules of location, 
budget, company size, time, etc. all factor in which is beyond the scope of 
this email; there are plenty of resources online both professional, 
independent, and governement which can help you make a more educated 
inference based on the numbers I gave above.

- Original Message - 
From: "Devin Holloway" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, July 20, 2005 3:59 AM
Subject: [flexcoders] How much do you charge for Flex development?



As a CF developer, I've been recently been putting more serious
thought into becoming a Flex developer. It would be a long time
before the company I work for could move into this direction, if
ever. So I'd have to become a contractor or find a Flex position at
another company.

But I'm curious as to how much a Flex developer should be making. I
realize much of that depends on your skillset, but does their exist
any averages? or possibly some minimums and maximums?

Let's pretend I make around $75K/yr as a full time CF developer. I'm
by no means a Flex guru, with less then a month of learning it. I
would also be seeking a CF position with an emphasis on Flex
development, for, it seems as though I'd have to take a good sized
pay cut if I were to become purely a Flex developer with what little
experience I have... and therefore would need to offer my CFML
skillset as well, to counter the pay cut. Personaly, getting a CF
position with a Flex emphasis and making approximately the same
amount of money would seem like a bargain to me. But would I be short-
changing myself? Would a lack of Flex developers allow a person to be
less competitive and ask for more?

And what would contractor generally charge? I don't see myself
becoming a contractor yet, for I'd rather seek a fulltime position
where I could learn first.




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







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

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

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

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





RE: [flexcoders] Business Delegate, command class, service locator, etc, etc

2005-07-20 Thread Steven Webster
Hi there,

Just a *quick* response for now ... the code for the credit card example
*is* available at http://flexbook.iterationtwo.com/ (scroll to the bottom of
the filelist for downloading code, and there's a ZIP with ALL code).

You also want to checkout the Cairngorm Store example, which is a reference
implementation with Flex and Cairngorm 0.99.

Best,

Steven 


--
Steven Webster
Technical Director
iteration::two
[EMAIL PROTECTED]
 
Office:  +44 (0)131 338 6108
Mobile: +44 (0)7977 216 223
 
This e-mail and any associated attachments transmitted with it may contain
confidential information and must not be copied, or disclosed, or used by
anyone other than the intended recipient(s). If you are not the intended
recipient(s) please destroy this e-mail, and any copies of it, immediately.
 
Please also note that while software systems have been used to try to ensure
that this e-mail has been swept for viruses, iteration::two do not accept
responsibility for any damage or loss caused in respect of any viruses
transmitted by the e-mail. Please ensure your own checks are carried out
before any attachments are opened.

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of a8i364io
Sent: 19 July 2005 09:50
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Business Delegate, command class, service locator,
etc, etc

hello everyone,

this is my first post to the group.  I am a long-time CF guy and have bought
(5 copies!) and read the RIA book and had Figleaf come inhouse to give Flex
beginning training.  We want to start really getting some applications out
the door, but I want to make sure I understand the framework and best
practices before we get too far.  They didn't teach us that stuff in class.

Since the code for the credit card application in the book isn't available,
does someone have a graphical representation of the various architectural
best practices and how they interact with each other?  I downloaded the
cairngorm files - which I assume somewhat follow architectural suggestions
set forth in the book - but I haven't yet been able to make much sense of
them.

many thanks.




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



 



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

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

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

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




Re: [flexcoders] initializing global variables

2005-07-20 Thread JesterXL





Is their creationPolicy not set to 
"all"?
 
- Original Message - 
From: Clint Modien 
To: flexcoders@yahoogroups.com 
Sent: Wednesday, July 20, 2005 10:12 AM
Subject: Re: [flexcoders] initializing global variables
Ya i did try to use the initialize handler... but apparently it 
get's called "after" the initialize handler of my grandchild.Check the 
link.
On 7/20/05, Sauro, 
Nick <[EMAIL PROTECTED]> 
wrote:

  Well, your 
  parent won't be fully created until its children are, since the children are 
  its data members, so how can the parent be 'completed', w/o its 
  data/members/children being completed first?
   
  As for 
  your global vars, have you tried using the initialize 
  handler?
   
   
   
  Nick 
  Sauro + R 
  O U N D 
  A R C H 
  + bus 
  212.909.2335 + mob 914.882.3687
   
  
  
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint 
  ModienSent: Wednesday, July 20, 2005 9:53 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] 
  initializing global variables
  
  OK so umm... http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm 
  I'm confused.My grandkids and my kids get initialized 
  before I do? (The application)Uhh... how am I supposed to setup the 
  any global vars in the app?Even the creationCompletes of my grandkids 
  fires before the app does.What's the first event to fire in the 
  Application that I can use to initialize a global 
  var?--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  
  
  
  YAHOO! GROUPS LINKS 
  
 Visit your group "flexcoders" on the web.  
 To unsubscribe from this group, send an email 
to:  [EMAIL PROTECTED]  

 Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service. 
  
  
  





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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Flex CPU License(s)

2005-07-20 Thread jwc_wensan
To All:

Yesterday I made a post regarding trying to determine how many users
a single server with one CPU could handle.  I realize "it depends"
and I did not define any type of application.

I am trying to get some type of handle on what my costs will be
regarding CPU licenses, servers, etc.

So let me try again.  Let's take the Flexstore as an example 
application.  Based on this, can anyone shed some light as to how 
many users in an hour the server could adequately handle.

Where will the bottleneck occur: Flex, server itself, database, etc.

If an hour is not the right way to measure, then please offer any
measurement you feel is correct.

Server Configuration:

Dell Server @ 3.8 GHz with 1 GB RAM
JRUN4
Win 2000 Server
1 Flex license

As Dave and others recommended, I will put the database on a separate
server.

I am not trying to tie anyone's hands here, just trying to get some
perspective.

Thanks in advance,

Jack





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

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

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

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




Re: [flexcoders] initializing global variables

2005-07-20 Thread Clint Modien



Ya i did try to use the initialize handler... but apparently it get's called "after" the initialize handler of my grandchild.

Check the link.On 7/20/05, Sauro, Nick <[EMAIL PROTECTED]> wrote:







Well, your parent won't be fully created until its children 
are, since the children are its data members, so how can the parent be 
'completed', w/o its data/members/children being completed 
first?
 
As for your global vars, have you tried using the 
initialize handler?
 
 
 
Nick 
Sauro + R 
O U N D 
A R C H + 
bus 
212.909.2335 + mob 914.882.3687
 


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Clint 
ModienSent: Wednesday, July 20, 2005 9:53 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] initializing global 
variables
OK so umm... http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm
I'm 
confused.My grandkids and my kids get initialized before I do? (The 
application)Uhh... how am I supposed to setup the any global vars in the 
app?Even the creationCompletes of my grandkids fires before the app 
does.What's the first event to fire in the Application that I can 
use to initialize a global 
var?





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  















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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] initializing global variables

2005-07-20 Thread Jeff Tapper
nitialize fires as the app starts, creationComplete fires when all children 
are created.

At 09:52 AM 7/20/2005, you wrote:
>OK so umm...
>
>http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm
>
>I'm confused.
>
>My grandkids and my kids get initialized before I do? (The application)
>
>Uhh... how am I supposed to setup the any global vars in the app?
>
>Even the creationCompletes of my grandkids fires before the app does.
>
>
>What's the first event to fire in the Application that I can use to 
>initialize a global var?
>
>
>--
>Flexcoders Mailing List
>FAQ: 
>http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>Search Archives: 
>http://www.mail-archive.com/flexcoders%40yahoogroups.com
> 
>
>
>
>
>--
>YAHOO! GROUPS LINKS
>
>*  Visit your group 
> "flexcoders" on the web.
>*
>*  To unsubscribe from this group, send an email to:
>* 
> [EMAIL PROTECTED] 
>
>*
>*  Your use of Yahoo! Groups is subject to the 
> Yahoo! Terms of Service.
>
>
>--



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

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

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

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




RE: [flexcoders] initializing global variables

2005-07-20 Thread Sauro, Nick





Well, your parent won't be fully created until its children 
are, since the children are its data members, so how can the parent be 
'completed', w/o its data/members/children being completed 
first?
 
As for your global vars, have you tried using the 
initialize handler?
 
 
 
Nick 
Sauro + R 
O U N D 
A R C H + 
bus 
212.909.2335 + mob 914.882.3687
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Clint 
ModienSent: Wednesday, July 20, 2005 9:53 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] initializing global 
variables
OK so umm... http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htmI'm 
confused.My grandkids and my kids get initialized before I do? (The 
application)Uhh... how am I supposed to setup the any global vars in the 
app?Even the creationCompletes of my grandkids fires before the app 
does.What's the first event to fire in the Application that I can 
use to initialize a global 
var?





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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] initializing global variables

2005-07-20 Thread Clint Modien



OK so umm... 

http://livedocs.macromedia.com/flex/15/flex_docs_en/0505.htm

I'm confused.

My grandkids and my kids get initialized before I do? (The application)

Uhh... how am I supposed to setup the any global vars in the app?

Even the creationCompletes of my grandkids fires before the app does.


What's the first event to fire in the Application that I can use to initialize a global var?






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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Minimal webapp

2005-07-20 Thread German M. Gomez
Thanks Matt, that was exactly what i needed.

 --- Matt Chotin <[EMAIL PROTECTED]> escribió:

> You need your MXML and AS files and everything under WEB-INF/flex
> *except* for the generated directory (which may be taking up some
> space).  An "empty" flex.war is approximately 11 MB though samples.war
> was about 18 MB to start.  If you just want the SWF (and don't need to
> re-compile) then I'm sure you can get away with a lot less, but assuming
> you have the developer license that may only last you a day.
> 
>  
> 
> Matt
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of German
> Sent: Tuesday, July 19, 2005 2:22 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Minimal webapp
> 
>  
> 
> Hi. I'm using flex for a demo, I did a small master-detail app with
> hsql, ibatis SqlMaps, Spring, SpringAdapter and Flex ofcourse. The
> thing is, how do i pack that application into a war file, what do i
> need to include? I took the explorer demo app and modified it but now
> I have 17Mb that i'm sure i don't need.
> What are the jars needed?, Do i need the "as" files.I'm new to flex i
> still don't get it quite well
> 
> thanks
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> 
> 
> 
> 
> SPONSORED LINKS 
> 
> Computer software testing
>  er+software+testing&w2=Macromedia+flex&w3=Development&w4=Software+develo
> per&c=4&s=93&.sig=kh2CguJwmatU5oBXjFo9Rg>  
> 
> Macromedia flex
>  e+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=
> 93&.sig=dAUcEV7do91-wrRtVS641g>  
> 
> Development
>  sting&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=93&.
> sig=AlxNUQBOI7Io7S7nhmxV0Q>  
> 
> Software developer
>  ware+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4
> &s=93&.sig=QWIit8JayomoIHLVkV3FDg>  
> 
>  
> 
>  
> 
>  
> 
> 
> 
> YAHOO! GROUPS LINKS 
> 
>  
> 
> *  Visit your group "flexcoders
>  " on the web.
> 
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>  
> 
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service  . 
> 
>  
> 
> 
> 
> 


__
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis! 
¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar


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

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

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

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




RE: [flexcoders] TitleWindow passing vars back to another TitleWindow

2005-07-20 Thread Sauro, Nick





can't u do something like
 
recpName.text={test.text} which will bind them 
together?
 
Nick 
Sauro + R 
O U N D 
A R C H + 
bus 
212.909.2335 + mob 914.882.3687
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
kreddington1Sent: Tuesday, July 19, 2005 8:44 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] TitleWindow 
passing vars back to another TitleWindow
OK, here's a sample of what I'm trying to do.  I want 
Window2 to populate recpName.text which can be found in Window1 when the 
input field in Window2 is changed. If I change Window1 to be 
mx:Application, then recpName.text gets populated correctly, but once I 
change it back to TitleWindow, it breaks.Thank you for your 
help,KimWindow1:http://www.macromedia.com/2003/mxml" 
width="400" height="400" xmlns="*" >  
  
  
    
        
Window2:http://www.macromedia.com/2003/mxml" 
width="400" height="400" xmlns="*" >  
  
  
      
  
  --- In 
flexcoders@yahoogroups.com, "Sauro, Nick" <[EMAIL PROTECTED]> wrote:i'm not 
fully understanding the problem here, a code excerpt might 
helpclarifyNick Sauro + R O U N D A R C H + bus 212.909.2335 + 
mob 914.882.3687From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] OnBehalf 
Of kreddington1Sent: Tuesday, July 19, 2005 4:03 PMTo: 
flexcoders@yahoogroups.comSubject: Fwd: RE: [flexcoders] TitleWindow passing 
vars back to anotherTitleWindowUsing data binding, I run 
into the same problem.  The 2nd window doesn't seem to be able to talk 
to the first window. Is there another method I could 
try?Thanks--- In flexcoders@yahoogroups.com, "Sauro, Nick" 
<[EMAIL PROTECTED]> wrote:you should look into data binding.Nick 
Sauro + R O U N D A R C H + bus 212.909.2335 + mob 
914.882.3687From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] OnBehalf 
Of Kim ReddingtonSent: Tuesday, July 19, 2005 11:33 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] TitleWindow passing vars 
back to anotherTitleWindowI have created a TitleWindow that 
opens another TitleWindow.  The 2ndwindow contains a form.  I 
would like the data entered in the form to bepassed back to the 1st 
titlewindow.If I make the first TitleWindow be an application, then I 
can use parentDocument.name.text = name.textto pass the name back to 
the original screen, but if I try to use thissame line of code to pass 
the data from the 2nd TitleWindow to a 1stTitleWindow, then the text control 
shows up blank.Does this make sense?  Is it possible to pass data 
back to an openTitleWindow?Thanks,Kim    
_Kim ReddingtonPrincipal 
Consultant/DeveloperDeluxe Technologieshttp://www.deluxetechnologies.com 
 
508-231-8744  --Flexcoders Mailing 
ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.com 
YAHOO! GROUPS LINKS 
  *  
Visit your group "flexcoders 
" on the web.    
*  To unsubscribe from this group, send an 
email to:  
[EMAIL PROTECTED] 
    
*  Your use of Yahoo! Groups is subject to the 
Yahoo! Terms ofService  
. --- End forwarded message 
-Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.com 
YAHOO! GROUPS LINKS 
  *  
Visit your group "flexcoders 
" on the web.    
*  To unsubscribe from this group, send an 
email to:  
[EMAIL PROTECTED] 
    *  
Your use of Yahoo! Groups is subject to the Yahoo! Terms ofService  
. --- End forwarded message 
---





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








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] How much do you charge for Flex development?

2005-07-20 Thread Clint Modien



I've been offered as much as $70/hr as a lead on a project. (Project was for a year.)

I think the going rate is $55/hr for "a" flex resource.

Never been offered salary before.

On 7/20/05, Devin Holloway <[EMAIL PROTECTED]> wrote:
As a CF developer, I've been recently been putting more seriousthought into becoming a Flex developer. It would be a long timebefore the company I work for could move into this direction, ifever. So I'd have to become a contractor or find a Flex position at
another company.But I'm curious as to how much a Flex developer should be making. Irealize much of that depends on your skillset, but does their existany averages? or possibly some minimums and maximums?
Let's pretend I make around $75K/yr as a full time CF developer. I'mby no means a Flex guru, with less then a month of learning it. Iwould also be seeking a CF position with an emphasis on Flexdevelopment, for, it seems as though I'd have to take a good sized
pay cut if I were to become purely a Flex developer with what littleexperience I have... and therefore would need to offer my CFMLskillset as well, to counter the pay cut. Personaly, getting a CFposition with a Flex emphasis and making approximately the same
amount of money would seem like a bargain to me. But would I be short-changing myself? Would a lack of Flex developers allow a person to beless competitive and ask for more?And what would contractor generally charge? I don't see myself
becoming a contractor yet, for I'd rather seek a fulltime positionwhere I could learn first.--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
<*> To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/







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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] create children from dataprovider

2005-07-20 Thread ROUSSELIE David ROSI/SIFAC
hello, 

I would like to create children from the dataProvider attribut like TileList. 
Where is the cleaner place to iterate over dataProvider to call createChild ? 
In "createChildren", "dataProvider" not yet initialized and is undefined. For 
the moment, I create children in a handle method when receiving 
"creationComplete" event.

Thanks,

-- 
David Rousselie


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

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

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

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




[flexcoders] Re: dynamic hight for textarea

2005-07-20 Thread npw99uk
Thats Great Thank you

--- In flexcoders@yahoogroups.com, "Philippe Maegerman" <[EMAIL PROTECTED]> 
wrote:
> This could help:
>  
> 
> http://www.macromedia.com/2003/mxml";>
> 
> 
> 
>  vScrollPolicy="off">
> 
>  
> Philippe Maegerman
>  
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of npw99uk
> Sent: mercredi 20 juillet 2005 12:06
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] dynamic hight for textarea
> 
> 
> Hi all, i was wondering about the textarea and is it possible to 
> dynamically change the size (height and width) dependant upon the 
> text, so no scroll bar would appear
> 
> I was wondering about the possiblity of using the layoutHeight and 
> layoutWidth in combination with the text length. 
> 
> Any tips here would be good
> 
> Thanks
> 
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> 
> 
> 
> 
> 
> YAHOO! GROUPS LINKS 
> 
> 
>   
> *  Visit your group "flexcoders
>  " on the web.
> 
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>  
> 
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service  . 
> 
> 
> 
> 
> 
> 
> --
> **STATEMENT OF CONFIDENTIALITY** 
> 
> This e-mail and any attached files are confidential and intended 
solely for the use of the individual to whom it is addressed. If you 
have received this email in error please send it back to the person 
that sent it to you. Any views or opinions presented are solely 
those of author and do not necessarily represent those the Emakina 
Company. Unauthorized publication, use, dissemination, forwarding, 
printing or copying of this email and its associated attachments is 
strictly prohibited.
> 
> We also inform you that we have checked that this message does not 
contain any virus but we decline any responsability in case of any 
damage caused by an a non detected virus.
> --






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

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

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

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




RE: [flexcoders] dynamic hight for textarea

2005-07-20 Thread Philippe Maegerman





This could help:
 
http://www.macromedia.com/2003/mxml">

 
Philippe 
Maegerman

 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of npw99ukSent: 
mercredi 20 juillet 2005 12:06To: 
flexcoders@yahoogroups.comSubject: [flexcoders] dynamic hight for 
textarea
Hi all, i was wondering about the textarea and is it possible to 
dynamically change the size (height and width) dependant upon the text, 
so no scroll bar would appearI was wondering about the possiblity of 
using the layoutHeight and layoutWidth in combination with the text length. 
Any tips here would be goodThanks





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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






--**STATEMENT OF CONFIDENTIALITY** 
This e-mail and any attached files are confidential and intended solely for the use of the individual to whom it is addressed. If you have received this email in error please send it back to the person that sent it to you. Any views or opinions presented are solely those of author and do not necessarily represent those the Emakina Company. Unauthorized publication, use, dissemination, forwarding, printing or copying of this email and its associated attachments is strictly prohibited.
We also inform you that we have checked that this message does not contain any virus but we decline any responsability in case of any damage caused by an a non detected virus.--


[flexcoders] Re: BubbleChart: Multiple Bubble Colors and Axis Formatting

2005-07-20 Thread Jim Laing
Just thought I'd bump this, since the Macromedia people are back on
the list now ...

Jim

On 7/19/05, Jim Laing <[EMAIL PROTECTED]> wrote:
> Hello all,
> 
> This shouldn't be too difficult, but I haven't had much experience
> with Flex charts, so the answer isn't apparent to me: I'd like to have
> a BubbleChart which has a single BubbleSeries (see below). However,
> I'd like each bubble in the series to be a different color based on a
> varying attribute (in the example below, the attribute would be
> discipline_id). So, in the example below, all 3 bubbles are currently
> the default orange color, but I'd like them to be red, blue, green
> (and so on, for any number of data records/disciplines). I'd also like
> to have a legend which displays the mapping between the discipline_id
> attribute and the bubble color.
> 
> Finally, I'd like to format the chart so that the axis lines
> corresponding to x == 1 and y == 1 are bold. Essentially, this chart
> should be a four-quadrant chart with an origin of (1,1).
> 
> If anyone can point me in the right direction toward accomplishing any
> of these goals, it would be greatly appreciated. Thanks!
> 
> Jim
> 
> 
> --- DisciplinesBubble.mxml
> ---
> 
>  xmlns:mx="http://www.macromedia.com/2003/mxml";>
> 
> 
> 
> 1.7579
> 0.5947
> 2100
> 11
> 
> 
> 1.52
> 0.765
> 1000
> 611
> 
> 
> 1.7146
> 0.6168
> 3100
> 2593
> 
> 
>  dataTipFunction="formatDataTip" height="100%" id="chart"
> showDataTips="true" width="100%">
> 
> 
> 
> 
> 
> 
> 
> 
>  radiusField="EARNED_POSSIBLE" xField="CPI" yField="SPI"/>
> 
> 
> 
> 
>


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

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

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

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




[flexcoders] dynamic hight for textarea

2005-07-20 Thread npw99uk
Hi all, i was wondering about the textarea and is it possible to 
dynamically change the size (height and width) dependant upon the 
text, so no scroll bar would appear

I was wondering about the possiblity of using the layoutHeight and 
layoutWidth in combination with the text length. 

Any tips here would be good

Thanks







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

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

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

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





[flexcoders] How much do you charge for Flex development?

2005-07-20 Thread Devin Holloway

As a CF developer, I've been recently been putting more serious 
thought into becoming a Flex developer. It would be a long time 
before the company I work for could move into this direction, if 
ever. So I'd have to become a contractor or find a Flex position at 
another company.

But I'm curious as to how much a Flex developer should be making. I 
realize much of that depends on your skillset, but does their exist 
any averages? or possibly some minimums and maximums?

Let's pretend I make around $75K/yr as a full time CF developer. I'm 
by no means a Flex guru, with less then a month of learning it. I 
would also be seeking a CF position with an emphasis on Flex 
development, for, it seems as though I'd have to take a good sized 
pay cut if I were to become purely a Flex developer with what little 
experience I have... and therefore would need to offer my CFML 
skillset as well, to counter the pay cut. Personaly, getting a CF 
position with a Flex emphasis and making approximately the same 
amount of money would seem like a bargain to me. But would I be short-
changing myself? Would a lack of Flex developers allow a person to be 
less competitive and ask for more?

And what would contractor generally charge? I don't see myself 
becoming a contractor yet, for I'd rather seek a fulltime position 
where I could learn first.




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

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

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

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