RE: [flexcoders] help...geting error when using http service

2005-08-11 Thread Amit Sanon





hey 
manish
   great guess man... or was it really a guess... but it solved 
my problem
thanks 
a lot
 
regards 
Amit

  -Original Message-From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED]On Behalf Of Manish 
  JethaniSent: Friday, August 12, 2005 3:31 AMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] help...geting 
  error when using http serviceOn 8/11/05, Amit Sanon 
  <[EMAIL PROTECTED]> wrote:> whenever i try to use httpservice tag 
  i get an error> > ---  HTTPService Fault:A start tag had no 
  corresponding end tag ---Just taking a guess, I think your service is 
  returning invalid XML. Set resultFormat="text" on your HTTPService element 
  and dump theresult to the TextArea and see what's going 
  on.Manish





--
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: Loading in the background

2005-08-11 Thread kaibabsowats
In regards to the MediaDisplay and downloading all the media before 
playing, one way is to do:
mediaDisplay.setMedia( "somemedia" );
mediaDisplay.stop();

Then there is a "start" event which fires when the MediaDisplay 
thinks there is enough buffered to start playing.  If you want to 
set your own buffer amount before start playing just use the 
progress event and do something like this:

if( mediaDisplay.bytesLoaded > mediaDisplay.bytesTotal * 0.5 )
mediaDisplay.play();

Renaun


--- In flexcoders@yahoogroups.com, "Adam Cath" <[EMAIL PROTECTED]> wrote:
> Hi Andrew,
> 
> 2) You can create the MediaDisplay and set visible=false so it 
doesn't show up until you want it. If it doesn't start buffering, 
you should be able to kick-start it by calling load().
> 
> 1) What do you mean by "load content"? You can download whatever 
you want, whenever you want, from a remote object or web service. 
You can load assets like images by creating them, but making them 
invisible (like what I suggested above). 
> 
> Hope this helps,
> Adam
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of elvithrar
> Sent: Wednesday, August 10, 2005 5:58 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Loading in the background
> 
> Im quite new to flex and was hoping somebody could answer the
> following questions:
> 
> Does flex allow you to load content in the background so if i 
decide
> to go to a new "page" the content could already be there?
> 
> Also, probably more importantly, is it possible to start streaming 
for
> a MediaDisplay in the background so once a user views the 
MediaDisplay
> the  
> whole video is buffered or a significant portion has already been
> buffered?
> 
> Thanks
> 
> Andrew
> 
> 
> 
> 
> 
> --
> 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





 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hpdnna4/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123829840/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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: Another Proxy? PHP?

2005-08-11 Thread heybluez
Hi.

Can you expand on this?  If I am sending a request from flex, how
would i use RewriteRule?

Thanx!

--- In flexcoders@yahoogroups.com, Manish Jethani
<[EMAIL PROTECTED]> wrote:
> On 8/12/05, heybluez <[EMAIL PROTECTED]> wrote:
> 
> > I have a client that does not want to use the Flex proxy for
> > HTTPService requests.  Unfortunately, you need to have a
> > crossdomain.xml file on all the requested servers.  This, is probably
> > unlikely to be the case all the time...if even part of the time.  SO I
> > was thinking of building a PHP "proxy" or something to route through.
> >  Question is, are there any other solutions before I start?  Has
> > anyone done something similar and wants to kindly share? :)
> 
> IIRC I simply put a RewriteRule in my .htaccess.  No need to write any
> proxy.  Just ask your Apache web server to redirect, that's it.
> 
> Manish




 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hd4gnro/M=362335.6886445.7839731.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123825121/A=2894361/R=0/SIG=13jmebhbo/*http://www.networkforgood.org/topics/education/digitaldivide/?source=YAHOO&cmpgn=GRP&RTP=http://groups.yahoo.com/";>In
 low income neighborhoods, 84% do not own computers. At Network for Good, help 
bridge the Digital Divide!.
~-> 

--
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] Accordion panel Ignoring click events

2005-08-11 Thread Cary Newfeldt






Hi Manish, 

Yes, thank you that worked. 

regards, 

Cary. 

Manish Jethani wrote:

  On 8/12/05, Cary Newfeldt <[EMAIL PROTECTED]> wrote:

  
  
 I'm doing the following 
 
 [1] One accordion panel
 [2] Two VBoxes 
 [3] Each VBox has a custom button embedded 
 [4] Each button will pop up an alert when pressed. 
 [5] When executing the application 
- The first button will execute alert message
- The second button will fail to execute alert message

  
  
You're attaching event listeners to the buttons in the Accordion's
creationComplete, but the second button is not yet created by then,
because the Accordion by default only created children when they are
needed (i.e. when you open the second pane).  You could set the
Accordion's creationPolicy to ="all", but that's not what you want
(see the docs).  What you really want is to set click handler directly
in the MXML declaration of the buttons.

  

Manish


 Yahoo! Groups Sponsor ~--> 
"http://us.ard.yahoo.com/SIG=12h7a9kkf/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123803001/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life - brought to you by One Economy.
~-> 

--
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 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] Loading in the background

2005-08-11 Thread Adam Cath
Hi Andrew,

2) You can create the MediaDisplay and set visible=false so it doesn't show up 
until you want it. If it doesn't start buffering, you should be able to 
kick-start it by calling load().

1) What do you mean by "load content"? You can download whatever you want, 
whenever you want, from a remote object or web service. You can load assets 
like images by creating them, but making them invisible (like what I suggested 
above). 

Hope this helps,
Adam


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
elvithrar
Sent: Wednesday, August 10, 2005 5:58 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Loading in the background

Im quite new to flex and was hoping somebody could answer the
following questions:

Does flex allow you to load content in the background so if i decide
to go to a new "page" the content could already be there?

Also, probably more importantly, is it possible to start streaming for
a MediaDisplay in the background so once a user views the MediaDisplay
the  
whole video is buffered or a significant portion has already been
buffered?

Thanks

Andrew





--
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



 







 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hev2det/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123817013/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] mxmlc: Error with configuration file... Invalid content starting with...

2005-08-11 Thread Tracy Spratt
Title: mxmlc: Error with configuration file... Invalid content starting with...








I’m trying to use mxmlc to compile an app.  I got the error in the subject, so I reverted to the original flex-config file and still get the error.

The app compiles fine normally.  Any ideas?  More of the trace below.

Tracy

flex.util.ChainedRuntimeException: Error with configuration file or starting ser

vices.

    at flex.tools.CmdLineOptions.createToolServices(CmdLineOptions.java:441)

    at flex.tools.CmdLineOptions.parseArguments(CmdLineOptions.java:139)

    at flex.tools.CmdLineOptions.(CmdLineOptions.java:118)

    at flex.tools.CmdLineOptions.(CmdLineOptions.java:106)

    at flex.tools.Mxmlc.main(Mxmlc.java:63)

Caused by: org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid conten

t starting with element 'show-deprecation-warnings'. One of '{"http://www.macrom

edia.com/2003/flex-config":show-binding-warnings, "http://www.macromedia.com/200

3/flex-config":web-service-proxy-debug, "http://www.macromedia.com/2003/flex-con

fig":http-service-proxy-debug, "http://www.macromedia.com/2003/flex-config":remo

te-objects-debug, "http://www.macromedia.com/2003/flex-config":show-stacktraces-

in-browser, "http://www.macromedia.com/2003/flex-config":create-compile-report,

"http://www.macromedia.com/2003/flex-config":show-source-in-compiler-errors, "ht

tp://www.macromedia.com/2003/flex-config":log-compiler-errors}' is expected.

    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)

    at javax.xml.parsers.SAXParser.parse(Unknown Source)

    at javax.xml.parsers.SAXParser.parse(Unknown Source)

    at flex.config.ConfiguratorParser.parse(ConfiguratorParser.java:1459)

    at flex.config.Configurator.init(Configurator.java:37)

    at flex.core.ToolServiceImpl.setupConfigurator(ToolServiceImpl.java:33)

    at flex.core.FlexService.start(FlexService.java:22)

    at flex.tools.CmdLineOptions.createToolServices(CmdLineOptions.java:437)

    ... 4 more







--
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] Moving Cursor inside textArea

2005-08-11 Thread JesterXL
Selection.setSelection(yourText.length, yourText.length);

- Original Message - 
From: "Josh Noland" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, August 11, 2005 8:32 PM
Subject: [flexcoders] Moving Cursor inside textArea



Does anybody know how to move the cursor inside a textArea?  I am
implementing a system that allows a user to use shortcut phrases that are
exploded into text.  For instance when the user types hz it is exploaded to
horizontal.  The problem I am having is that when I add the additional
characters the cursor is still in the middle of the word so I need to move
it to the end of the entered text.

Josh







--
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








 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hkjsimd/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123815378/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!.
~-> 

--
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] Calling ArrayStructures in CFCs from Flex

2005-08-11 Thread dfatta
Title: Message





Jeff,
 
Great 
example! It almost works for me except the cfc I call from Flex is a facade to 
my cfc query.  The cfc query returns a variable that needs to be converted 
to an array or whatever before being put into a structure.  Do you have any 
ideas how to do this?  Many thanks, Darius
 
 
      
   
 
      
        
    
    
   
    
   
    
    
  
 
  
 
  
 
 

  
  -Original Message-From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
  Battershall, JeffSent: Thursday, August 11, 2005 8:38 
  AMTo: flexcoders@yahoogroups.comSubject: RE: 
  [flexcoders] Calling ArrayStructures in CFCs from 
  FlexI'm jonny-come-lately to this thread, but I send 
  and return arrays andstructures to/from CFCs all the time.  I've 
  abandoned passing backCFQueries as such but convert them to an array of 
  structures first asthat is what Flex UIComponents seem to like. 
  Example code:access="public">  
        
        
      
      
  datasource="#getDataSource()#">  
        
    
    
      
      
        
        
        
        
      
    
    
      
      
    If you were 
  dealing with a dynamic list of columns the code could bealtered as 
  such:  
      
        
      
    
    
      
    Produced in 
  this fashion, Flex WILL accept this result as an array ofstructures. I'm 
  mystified at the problem you're experiencing. 
  Jeff-Original Message-From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] OnBehalf Of 
  MalcolmSent: Wednesday, August 10, 2005 7:48 PMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Calling 
  ArrayStructures in CFCs from FlexHi Darius,I too went 
  through the same pain (days & days of trying see what datatypes I 
  could successfully return from a CFC).I'm still learning but in my 
  somewhat limited experience I could find noway to return an array 
  datatype, it just wouldn't do it no matter what Itried, same goes for 
  structures. I have successfully returned 
  thefollowingdatatypes::String:Query:Boolean:Numeric 
  (yet to try):Date (yet to try)It's interesting to note that Flex 
  (somehow) in the background actuallyconverts a ColdFusion query to an 
  array. (Search the group on how thesecan be accessed)At the moment 
  I am mostly using queries to get data back. This has theunfortunate side 
  effect of losing typing (everything in the query is astring), thus you may 
  need cast some results etc to their correct typein 
  Flex.Malcolm-Original Message-From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] OnBehalf Of 
  coldfsSent: Friday, 5 August 2005 7:29 AMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Calling ArrayStructures in 
  CFCs from FlexHi,Using Tom Link's blog (http://tomlink.net/blog/index.cfm?mode=entry&entry=B662BEF9-7E97-A3B0-E3FB286E23BDAA50) 
  and other sources, I've been trying for days to translate queries to 
  arrays of structures (and vice versa).  Whatever I do, the cfc 
  doesn't except my values from Flex as arrays.  I know it's a chunk of 
  code to review, but you'd help a sane man going slowly 
  mad...:-)Many 
  thanks,Darius---index.mxml:---http://www.macromedia.com/2003/mxml">  
    
      
    
      
  endpoint="http://gx270dev.net/flashservices/gateway" 
  source="Model.mUtilities.mUpdate.qry_UpdateAuthorization" 
  fault="mx.controls.Alert.show(event.fault.faultstring)" 
  showBusyCursor="true">  
    result="doResult(event.result)"/>  
    
         
  wordWrap="true" 
  dataProvider="{RecordSetModel}">  
      
    
      
      
    
      
      
  width="200" headerText="Update Form" 
  columnName="Function"/>  
      
      
  width="320" headerText="Description" 
  columnName="Description"/>  
      
       
    
      
    
    
    
      
    
  --fx_UpdateAuthorization.cfc--  
    ("component","qry_UpdateAuthorization")>  
      
    returntype="array">  
    type="array" required="yes">  
    required="yes">  
    required="yes">  
    type="array" 
  required="yes">  
    required="yes">  
    (obj.GetUpdateAuthorization(AuthorizedUserIdObject,CountyCodeObject,CaseFlagObject,CourtOrderAvailableFlagObject,DsnObject))>  
    
  -qry_UpdateAuthorization.cfc-  
    returntype="query">  
    required="yes">  

[flexcoders] Moving Cursor inside textArea

2005-08-11 Thread Josh Noland

Does anybody know how to move the cursor inside a textArea?  I am 
implementing a system that allows a user to use shortcut phrases that are 
exploded into text.  For instance when the user types hz it is exploaded to 
horizontal.  The problem I am having is that when I add the additional 
characters the cursor is still in the middle of the word so I need to move 
it to the end of the entered text.

Josh






 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hfbke37/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123815192/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] individual border settings?

2005-08-11 Thread Douglas Knudsen
right, I was expecting to be able to set individual properties per
border location.  eg, have a box with the left border green and 10px
thick and have the right border be blue and 2px thich and dashed.

well, interesting, IIRC they claim that Flex supports CSS when it only
supprts these few things
 http://livedocs.macromedia.com/flex/15/flex_docs_en/0549.htm

aha!  http://livedocs.macromedia.com/flex/15/flex_docs_en/2193.htm
 the list of available styles in the Halo theme, no 'seperation of
borders' here.  Now, the way this page is written, sounds like you can
create your own theme that supports styles different then this list. 
this true?

DK

On 8/11/05, Manish Jethani <[EMAIL PROTECTED]> wrote:
> On 8/12/05, Douglas Knudsen <[EMAIL PROTECTED]> wrote:
> > according to
> > http://livedocs.macromedia.com/flex/15/asdocs_en/mx/containers/Box.html
> > we can not set the left border to blue and right border to green.  Is
> > this correct?  Or are there some un-documented CSS settings or
> > something?  seems the case with other containers too.
> 
> You can show only some sides of the border ("left", "bottom", etc.)
> using the borderSides style.
> 
> Manish
> 
> 
> 
> --
> 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?


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hbf7v33/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123812413/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!.
~-> 

--
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] setVariable: only works on localhost?

2005-08-11 Thread Tracy Spratt
Title: setVariable: only works on localhost?








I have determined my setVariable problem(it does not communicate with the app) is the result of the way I specify the application swf in the custom wrapper.

This source reference using “localhost” works:



This one using the server name does NOT:



In this test case, myApp is really on local host (still breaks), but at the customers site, the Flex server is on a different box than the web server.

Is this a known issue?  Any suggestions?

I can’t put the myApp swf on the web server because I am using the flex server proxy for named services, can I?  Licensing aside for now(cust. has full license), is it possible to have the swf on a different box than the Flex server and still use the flex proxy?

I though about using the dhtml->gateway.swf flashvars->local connection->myApp solution, but I am afraid local connection might not work either, under my scenario.

Any ideas will be appreciated.

Tracy







--
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] Another Proxy? PHP?

2005-08-11 Thread Manish Jethani
On 8/12/05, heybluez <[EMAIL PROTECTED]> wrote:

> I have a client that does not want to use the Flex proxy for
> HTTPService requests.  Unfortunately, you need to have a
> crossdomain.xml file on all the requested servers.  This, is probably
> unlikely to be the case all the time...if even part of the time.  SO I
> was thinking of building a PHP "proxy" or something to route through.
>  Question is, are there any other solutions before I start?  Has
> anyone done something similar and wants to kindly share? :)

IIRC I simply put a RewriteRule in my .htaccess.  No need to write any
proxy.  Just ask your Apache web server to redirect, that's it.

Manish


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hgm7bnh/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123805307/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] help...geting error when using http service

2005-08-11 Thread Manish Jethani
On 8/11/05, Amit Sanon <[EMAIL PROTECTED]> wrote:
> whenever i try to use httpservice tag i get an error
> 
> ---  HTTPService Fault:A start tag had no corresponding end tag ---

Just taking a guess, I think your service is returning invalid XML. 
Set resultFormat="text" on your HTTPService element and dump the
result to the TextArea and see what's going on.

Manish


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hu92ps0/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123804878/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] ColorPicker in a cellRenderer

2005-08-11 Thread Manish Jethani
On 8/11/05, Burge David A (Contractor) <[EMAIL PROTECTED]> wrote:

> I'm trying to use the ColorPicker in a cell renderer of a DataGrid
> component.  I have no problem getting it to initially display except for the
> selected color.  When the component is first drawn all the ColorPickers are
> black, when I mouse over a row in the DataGrid the ColorPicker for that row
> is redrawn with the correct selected color. 

Weird.  Anyway, some tricks always work. ;-)  Put this in the last
line of your setValue method implemetation.

doLater(myCP, "setSelectedColor", [new Number(item[getDataLabel()])]);

Manish


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hb9b2j0/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123804546/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] Combobox : Display tooltip scrolling over the elements

2005-08-11 Thread Manish Jethani
On 8/11/05, Valy Sivec <[EMAIL PROTECTED]> wrote:

> I poke around the combobox component without any
> luck... no tooltip :((

Set comboBox.__dropdown.showDataTips in the "open" handler for the ComboBox.

 

Manish


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12h4mjpc7/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123803636/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] Another Proxy? PHP?

2005-08-11 Thread JesterXL
Here's what I've used to proxy gzipped XML files:


 $file = gzfile($HTTP_POST_VARS["filename"]);
 echo "theXML=" . implode("", $file);

If you pass it "file" variable, which is basically a url to a gzipped file, 
it'll echo it back as a string.

In your case, you could merely forward the request to and from whatever 
service your accessing using PHP's file commands.

- Original Message - 
From: "heybluez" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, August 11, 2005 5:03 PM
Subject: [flexcoders] Another Proxy? PHP?


Hey,

I have a client that does not want to use the Flex proxy for
HTTPService requests.  Unfortunately, you need to have a
crossdomain.xml file on all the requested servers.  This, is probably
unlikely to be the case all the time...if even part of the time.  SO I
was thinking of building a PHP "proxy" or something to route through.
 Question is, are there any other solutions before I start?  Has
anyone done something similar and wants to kindly share? :)

Thanks!
Michael






--
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









 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hfcg7qu/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123803385/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] Accordion panel Ignoring click events

2005-08-11 Thread Manish Jethani
On 8/12/05, Cary Newfeldt <[EMAIL PROTECTED]> wrote:

>  I'm doing the following 
>  
>  [1] One accordion panel
>  [2] Two VBoxes 
>  [3] Each VBox has a custom button embedded 
>  [4] Each button will pop up an alert when pressed. 
>  [5] When executing the application 
> - The first button will execute alert message
> - The second button will fail to execute alert message

You're attaching event listeners to the buttons in the Accordion's
creationComplete, but the second button is not yet created by then,
because the Accordion by default only created children when they are
needed (i.e. when you open the second pane).  You could set the
Accordion's creationPolicy to ="all", but that's not what you want
(see the docs).  What you really want is to set click handler directly
in the MXML declaration of the buttons.

  

Manish


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12h7a9kkf/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123803001/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] individual border settings?

2005-08-11 Thread Manish Jethani
On 8/12/05, Douglas Knudsen <[EMAIL PROTECTED]> wrote:
> according to
> http://livedocs.macromedia.com/flex/15/asdocs_en/mx/containers/Box.html
> we can not set the left border to blue and right border to green.  Is
> this correct?  Or are there some un-documented CSS settings or
> something?  seems the case with other containers too.

You can show only some sides of the border ("left", "bottom", etc.)
using the borderSides style.

Manish


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hvg4k4s/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123802686/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] Another Proxy? PHP?

2005-08-11 Thread heybluez
Hey,

I have a client that does not want to use the Flex proxy for
HTTPService requests.  Unfortunately, you need to have a
crossdomain.xml file on all the requested servers.  This, is probably
unlikely to be the case all the time...if even part of the time.  SO I
was thinking of building a PHP "proxy" or something to route through.
 Question is, are there any other solutions before I start?  Has
anyone done something similar and wants to kindly share? :)

Thanks!
Michael





 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hmokifo/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123801497/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] individual border settings?

2005-08-11 Thread Douglas Knudsen
according to 
http://livedocs.macromedia.com/flex/15/asdocs_en/mx/containers/Box.html
we can not set the left border to blue and right border to green.  Is
this correct?  Or are there some un-documented CSS settings or
something?  seems the case with other containers too.


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


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12h6efk99/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123799234/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] Accordion panel Ignoring click events

2005-08-11 Thread Cary Newfeldt






Hi, 

I'm doing the following 

[1] One accordion panel
[2] Two VBoxes 
[3] Each VBox has a custom button embedded 
[4] Each button will pop up an alert when pressed. 
[5] When executing the application 
       - The first button will execute alert message
       - The second button will fail to execute alert message

I am not sure why this is happening. I stripped down to the minimum
example to see if the code I was using was the issue.  I tested using
only one Vbox with the two buttons sans the accordion panel and both buttons
worked in that example. 

I have scoured maybe forums and the flexcoders mailing list for the
issue, but I can not find any information and I'm stumped as to why the
second button is being ignored. I'm assuming it has something to do
with viewstack container and scoping, but that's only my uneducated
guess. Anyone with some insight for me?

Here is the code example ->
http://www.dotaku.com/accordion_btn_test.zip

Sorry there is no live link; my server install is intranet only at the
moment. 

thanks for the time, 

Cary. 








--
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] example of something that can be used in an outlook style calendar tool

2005-08-11 Thread Douglas Knudsen
ok, one of my first endeavours into the Flex/Flash UI stuffs.  You can
use something like this in a calendaring/scheduling tool.  Its not
performant or best-practise styled at all, that's to come.  Seeing as
how I can't really post a finished project as that code would be 
owned by my employer, I will post this rough draft though.  :)  Had
some help from the good folks here, so giving back some.  any
criticisms or suggestions are of course welcome.

peas...DK


http://www.macromedia.com/2003/mxml";
height="100%" width="100%"  >




 




  



 











  
  
  
   


  







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


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hl3s80n/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123795057/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!.
~-> 

--
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] problem with cell renderer showing data in datagrid twice

2005-08-11 Thread Craig Newroth




here are the files
cnewroth55 <[EMAIL PROTECTED]> wrote:
okay, heres one for all; i have a datagrid and the last cell i wanted to put a combo box in it with a set of selections for a user to pick from. got the cell renederer to work and it puts the combo box in it, however if yu select an item from them combo box, it will put that selection in the next row that is 'invisible' or below the datagrids visible rows.graphic representation:__[][][combo box]<-i select an item here say '1'    (say there are 7 visible rows to datagrid)__here is the next row (8) that you cannot see unless you use scroll bar--[][][combo
 box] <-the item '1' shows up here...and in subsequent selection(s) numbering the amount of visible rows in the dg..?here is the cellrenderer code file and the main mxml fileany thoughts as to why or what I am doing wrong?(guess I will have to attach the files in a seperate reply to this post, dont see where to attach them here)
		 Start your day with Yahoo! - make it your home page 





--
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.



  









MyCheckRenderer.mxml
Description: 2002487617-MyCheckRenderer.mxml


refresh.mxml
Description: 3102065804-refresh.mxml


[flexcoders] problem with cell renderer showing data in datagrid twice

2005-08-11 Thread cnewroth55
okay, heres one for all; i have a datagrid and the last cell i 
wanted 
to put a combo box in it with a set of selections for a user to pick 
from. got the cell renederer to work and it puts the combo box in 
it, 
however if yu select an item from them combo box, it will put that 
selection in the next row that is 'invisible' or below the datagrids 
visible rows.
graphic representation:
__
[][][combo box]<-i select an item here 
say '1'
(say there are 7 visible rows to datagrid)
__
here is the next row (8) that you cannot see unless you use scroll 
bar
--
[][][combo box] <-the item '1' shows up here...and in 
subsequent selection(s) numbering the amount of visible rows in the 
dg..?
here is the cellrenderer code file and the main mxml file
any thoughts as to why or what I am doing wrong?
(guess I will have to attach the files in a seperate reply to this 
post, dont see where to attach them here)





 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hel909n/M=362335.6886445.7839731.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123792338/A=2894361/R=0/SIG=13jmebhbo/*http://www.networkforgood.org/topics/education/digitaldivide/?source=YAHOO&cmpgn=GRP&RTP=http://groups.yahoo.com/";>In
 low income neighborhoods, 84% do not own computers. At Network for Good, help 
bridge the Digital Divide!.
~-> 

--
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] Changing a modal popup to non-modal

2005-08-11 Thread Peter Watson
Try using something like this in the script block of the popup.mxml

import mx.managers.SystemManager;
  var myPop;

function createPop(){
myPop = mx.managers.PopUpManager.createPopUp(this, Pop1, true);
doLater(this, "fixfocus");
}

function fixfocus(){
SystemManager.activate(myPop);
  }

- peter

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
kreddington1
Sent: Thursday, August 11, 2005 1:34 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Changing a modal popup to non-modal

Unfortunately, I am already using "this".  Here is a copy of the 
code:

var addressPop:TitleWindow = TitleWindow(PopUpManager.createPopUp
(this, newAddress, true, initObj));

What happens is this:
The first window popsup, the user clicks on a link which pulls up a 
second window.  The user can enter data in this second window and 
have it returned to the first window.  This all works fine.  The 
only problem I have is the tabbing.  When the user presses the tab 
while the second window is up, the focus returns to the first 
window, even though the second window is on top and is modal.

Does anyone have any other ideas?


--- In flexcoders@yahoogroups.com, "Mercer, Dustin" 
<[EMAIL PROTECTED]> wrote:
Kim,

 

Just curious, when you are creating the popup, what are you using as 
the
first param to the createPopUp method?  This is what defines the 
parent
of the window being created.  If you are passing application or 
_root,
you may run into some of these focusing issues.  Try passing "this" 
as
the first parameter to the createPopUp method (this being the first
TitleWindow).  I.E.  createPopUp( this, MyPopUpWindow.mxml, true ).  
I
am not sure if that is the exact syntax, but this should give you 
enough
of an idea.  

 

What this does is actually make the second TitleWindow a Modal 
window of
the first TitleWindow, not a second modal window to the 
application.  I
have also had this problem before and that seem to fix me.

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
On
Behalf Of Kim Reddington
Sent: Wednesday, August 10, 2005 7:58 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Changing a modal popup to non-modal

 

I have a TitleWindow that pops up a second TitleWindow.  Both are 
modal.
I want the user to be able to tab through the fields in the second
window. The tab works fine, if the 1st window is non-modal, but if 
the
first window is modal, then the tab brings the user back to the first
window instead of staying in the second window.

 

Is there a way to get the tabs to work properly while still keeping 
both
windows modal?

 

If not, then is there a way to make the first window NON-modal before
popping up the second window

 

for example,

 

function openSecondPopUp() {

this.modal = false;   //obviously I made up this code
and am looking for the real code to put here

var secondPopUp = .

}

 

 

Thank you for your help,

Kim

_
Kim Reddington
Principal Consultant/Developer
Deluxe Technologies
http://www.deluxetechnologies.com 
 
508-231-8744
  

 



--
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  . 

 

  _
--- 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 
Yahoo! Groups Links



 




 Yahoo! Groups Sponsor --

RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Matt Chotin










Announced, not released J  You can still file bugs
on the feedback forms.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Craig Newroth
Sent: Thursday, August 11, 2005
10:39 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re:
Flash Player 8 Beta - found problem??!!



 



and as Studio 8 was released on mnayday that is what I intend to
doyes, that did help, thx Alias











--
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] Re: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Craig Newroth



and as Studio 8 was released on mnayday that is what I intend to doyes, that did help, thx Alias
Alias <[EMAIL PROTECTED]> wrote:
Craig,This sounds like it's actually the result of a *fix* that's in the newplayer. If an object's _alpha is set to zero, it shouldn't bedisplayed at all - however, there were some issues with renderingdevice text with alpha, which is due to the limited font informationthe host platform passes back. However, as I understand it, the flash8 player has much improved font rendering capabilities.So on a player level, this is expected behavior - it's just one ofthose unfortunate cases where a bug becomes a fact of life, and fixingit ends up causing problems. I'd say - design for the new player.HTH,AliasOn 7/14/05, Craig Newroth <[EMAIL PROTECTED]> wrote:>  > okay, maybe i did not make my self clear...when I was using Flash PLayer 7> and set the property 'alpha' to zero, then not only could
 I NOT see the bar> (which is what I wanted) but i COULD STILL see the text in the control. Now> in Flah Player 8, if i set the SAME property (alpha) in the SAME control to> zero not only can I NOT see the BAR in the control, but the text is> invisible now also... > If i set the property to "1" then I cannot see the bar, but CAN still see> the text of the 'LinkBar" tag...>  > > > PR Muruganandh <[EMAIL PROTECTED]> wrote: >  >  > > Hi > >   > > In FP7[IE] & FP8[FireFox] > >   > > The following code works the same way > >   > >  > > http://www.macromedia.com/2003/mxml"> > > >  > >   > > If I change alpha="100", then also FP7[IE] & FP8[FireFox] works similar! > >   > > Might be some problem with this > > mouseOver="triggerShowEffectNeedReports()" ! > >   > >   > > - anand > >   > >   >  >  >  > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On> Behalf Of Abdul Qabiz> Sent: Thursday, July 14, 2005 6:05 PM> To: flexcoders@yahoogroups.com> Subject: RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!! > >   > > Hi, > >   > > We tried reproducing the same here
 at our end and we don't see any> difference between two players (FP7 & FP8 Beta). > >   > > -abdul > >   >  >  > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On> Behalf Of Craig Newroth> Sent: Thursday, July 14, 2005 5:41 PM> To: flexcoders@yahoogroups.com> Subject: Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!! >  > > and here is what I did to get it to do what I wanted, evidently the Flash> player 8 takes it literally on the alpha property :) - i set it to 1 (one)> instead of zero (0) and it is back to being transparent like I wanted it to> be... whew! >  > > WIll post that to the feedback Andrew, thx >  > > Craig >  > > > > Andrew
 Spaulding <[EMAIL PROTECTED]> wrote: >  > > Well I'm yet to find a bug but there seems to be some noticable> improvements in performance.> > Be sure to post your bug using the feedback form found here> http://www.macromedia.com/bin/fp8betafeedback.cgi?> > Cheers,> > Andrew Spaulding> www.flexdaddy.info> > > > --- In flexcoders@yahoogroups.com, "cnewroth55" <[EMAIL PROTECTED]> wrote:> > Okay, saw the post about the beta Flash Player 8 beta, and as I like > > to jump in with both feet, installed it for IE, Netscape 7.2 and Fire > > Fox 1.0.4...went to one of my flex apps and found that I could no > > longer see my label in the Link tag in my app. I was setting the > > property 'alpha' to  zero so that the "bar" that highlights the
 > > selection is invisible and just the rollovers would be seen. Removing > > the alpha property lets my labe be seen but then (as I am using > > haloBlue) i get a big ugly blue bar across my link label...I have a > > graphic behind the link bar and did not want this to show up (the > > bar)...it used to work in Flash player 7...so beta team thought you > > would like to knowI really, really dont want to give up my alpha :)> > > > ps. did noticed a slight improvement in load speed...> > > > this on longer works> > > > modalTransparency="0" borderStyle="none" alpha="0" > > textRollOverColor="#0099CC" mouseOver="triggerShowEffectNeedReports> > ()" />> > > > > --> Flexcoders
 Mailing List> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com > > >  >  >  > > Start your day with Yahoo! - make it your home page > > --> Flexcoders Mailing List> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com > > > > --> Flexcoders Mailing List> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com > > > > > --> Flexcoders Mailing List> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogro

Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Craig Newroth



which would be the preferred method Sjors, except that i did not see a visible property to this single item in the menu bar itself, either the whole bar is 'visible' with all it's sub itmes, or the entire bar is invisible, and this was not what I wanted...
Sjors Pals <[EMAIL PROTECTED]> wrote:
Well i think not "rendering" objects with alpha zero is a big mistake.There is a visible property, and i think that should be the criteria to render an object.Especially when you look to backward compatibility i hope macromedia will decide to (not) fix this isue.Greets,SjorsAlias wrote:> Craig,>> This sounds like it's actually the result of a *fix* that's in the new> player. If an object's _alpha is set to zero, it shouldn't be> displayed at all - however, there were some issues with rendering> device text with alpha, which is due to the limited font information> the host platform passes back. However, as I understand it, the flash> 8 player has much improved font rendering capabilities.>> So on a player level, this is expected behavior - it's just one
 of> those unfortunate cases where a bug becomes a fact of life, and fixing> it ends up causing problems. I'd say - design for the new player.>> HTH,> Alias>> On 7/14/05, Craig Newroth <[EMAIL PROTECTED]> wrote:> > > > okay, maybe i did not make my self clear...when I was using Flash > PLayer 7> > and set the property 'alpha' to zero, then not only could I NOT see > the bar> > (which is what I wanted) but i COULD STILL see the text in the > control. Now> > in Flah Player 8, if i set the SAME property (alpha) in the SAME > control to> > zero not only can I NOT see the BAR in the control, but the text is> > invisible now also...> > If i set the property to "1" then I cannot see the bar, but CAN > still see> > the text of the 'LinkBar" tag...> > > >> >> > PR
 Muruganandh <[EMAIL PROTECTED]> wrote:> > > > > >> > Hi> >> >  > >> > In FP7[IE] & FP8[FireFox]> >> >  > >> > The following code works the same way> >> >  > >> > > >> > http://www.macromedia.com/2003/mxml">> >> > > > > >> >  > >> > If I change alpha="100", then also FP7[IE] & FP8[FireFox] works > similar!> >> >  > >> > Might be some problem with this> >> > mouseOver="triggerShowEffectNeedReports()" !>
 >> >  > >> >  > >> > - anand> >> >  > >> >  > > > >  > > > >> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On> > Behalf Of Abdul Qabiz> > Sent: Thursday, July 14, 2005 6:05 PM> > To: flexcoders@yahoogroups.com> > Subject: RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!> >> >  > >> > Hi,> >> >  > >> > We tried reproducing the same here at our end and we don't see any> > difference between two players (FP7 & FP8 Beta).> >> >  > >> > -abdul> >> >  > >  > > > >> >
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On> > Behalf Of Craig Newroth> > Sent: Thursday, July 14, 2005 5:41 PM> > To: flexcoders@yahoogroups.com> > Subject: Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!!> > > >> > and here is what I did to get it to do what I wanted, evidently the > Flash> > player 8 takes it literally on the alpha property :) - i set it to 1 > (one)> > instead of zero (0) and it is back to being transparent like I > wanted it to> > be... whew!> > > >> > WIll post that to the feedback Andrew, thx> > > >> > Craig> > > >> >> >> > Andrew Spaulding <[EMAIL PROTECTED]> wrote:> > > >> > Well I'm yet to find a bug but there seems to be some noticable>
 > improvements in performance.> >> > Be sure to post your bug using the feedback form found here> > http://www.macromedia.com/bin/fp8betafeedback.cgi?> >> > Cheers,> >> > Andrew Spaulding> > www.flexdaddy.info> >> >> >> > --- In flexcoders@yahoogroups.com, "cnewroth55" <[EMAIL PROTECTED]> wrote:> > > Okay, saw the post about the beta Flash Player 8 beta, and as I like> > > to jump in with both feet, installed it for IE, Netscape 7.2 and Fire> > > Fox 1.0.4...went to one of my flex apps and found that I could no> > > longer see my label in the Link tag in my app. I was setting the> > > property 'alpha' to  zero so that the "bar" that highlights the> > > selection is invisible and just the rollovers would be seen.
 Removing> > > the alpha property lets my labe be seen but then (as I am using> > > haloBlue) i get a big ugly blue bar across my link label...I have a> > > graphic behind the link bar and did not want this to show up (the> > > bar)...it used to work in Flash player 7...so beta team thought you> > > would like to knowI really, really dont want to give up my > alpha :)> > >> > > ps. did noticed a slight improvement in load speed...> > >> > > this on longer works> > > > > > modalTransparency="0" borderStyle="none" alpha="0"> > > textRollOverColor="#0099CC" mouseOver="triggerShowEffectNeedReports> > > ()" />> >> >> >> >> > -->
 > Flexcoders Mailing List> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> > Search Archives: > http:/

RE: [flexcoders] Changing a modal popup to non-modal

2005-08-11 Thread kreddington1
Unfortunately, I am already using "this".  Here is a copy of the 
code:

var addressPop:TitleWindow = TitleWindow(PopUpManager.createPopUp
(this, newAddress, true, initObj));

What happens is this:
The first window popsup, the user clicks on a link which pulls up a 
second window.  The user can enter data in this second window and 
have it returned to the first window.  This all works fine.  The 
only problem I have is the tabbing.  When the user presses the tab 
while the second window is up, the focus returns to the first 
window, even though the second window is on top and is modal.

Does anyone have any other ideas?


--- In flexcoders@yahoogroups.com, "Mercer, Dustin" 
<[EMAIL PROTECTED]> wrote:
Kim,

 

Just curious, when you are creating the popup, what are you using as 
the
first param to the createPopUp method?  This is what defines the 
parent
of the window being created.  If you are passing application or 
_root,
you may run into some of these focusing issues.  Try passing "this" 
as
the first parameter to the createPopUp method (this being the first
TitleWindow).  I.E.  createPopUp( this, MyPopUpWindow.mxml, true ).  
I
am not sure if that is the exact syntax, but this should give you 
enough
of an idea.  

 

What this does is actually make the second TitleWindow a Modal 
window of
the first TitleWindow, not a second modal window to the 
application.  I
have also had this problem before and that seem to fix me.

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
On
Behalf Of Kim Reddington
Sent: Wednesday, August 10, 2005 7:58 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Changing a modal popup to non-modal

 

I have a TitleWindow that pops up a second TitleWindow.  Both are 
modal.
I want the user to be able to tab through the fields in the second
window. The tab works fine, if the 1st window is non-modal, but if 
the
first window is modal, then the tab brings the user back to the first
window instead of staying in the second window.

 

Is there a way to get the tabs to work properly while still keeping 
both
windows modal?

 

If not, then is there a way to make the first window NON-modal before
popping up the second window

 

for example,

 

function openSecondPopUp() {

this.modal = false;   //obviously I made up this code
and am looking for the real code to put here

var secondPopUp = .

}

 

 

Thank you for your help,

Kim

_
Kim Reddington
Principal Consultant/Developer
Deluxe Technologies
http://www.deluxetechnologies.com 
 
508-231-8744
  

 



--
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  . 

 

  _
--- End forwarded message ---





 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hg8nmoa/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123788834/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] Actionscripted Compiler?

2005-08-11 Thread Aldo Bucchi
Hi all,

Has anyone built a compiler, or a subset thereof?
Lex parser / tokenizer
AST / EBNF / Grammar parser
etc...?

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


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12h3sq0td/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123784983/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!.
~-> 

--
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] Calling ArrayStructures in CFCs from Flex

2005-08-11 Thread Battershall, Jeff
I'm jonny-come-lately to this thread, but I send and return arrays and
structures to/from CFCs all the time.  I've abandoned passing back
CFQueries as such but convert them to an array of structures first as
that is what Flex UIComponents seem to like. 

Example code:




   



 





  


   

   

If you were dealing with a dynamic list of columns the code could be
altered as such:









  



Produced in this fashion, Flex WILL accept this result as an array of
structures. I'm mystified at the problem you're experiencing. 

Jeff

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Malcolm
Sent: Wednesday, August 10, 2005 7:48 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Calling ArrayStructures in CFCs from Flex


Hi Darius,

I too went through the same pain (days & days of trying see what data
types I could successfully return from a CFC).

I'm still learning but in my somewhat limited experience I could find no
way to return an array datatype, it just wouldn't do it no matter what I
tried, same goes for structures. I have successfully returned the
following
datatypes:

:String
:Query
:Boolean

:Numeric (yet to try)
:Date (yet to try)

It's interesting to note that Flex (somehow) in the background actually
converts a ColdFusion query to an array. (Search the group on how these
can be accessed)

At the moment I am mostly using queries to get data back. This has the
unfortunate side effect of losing typing (everything in the query is a
string), thus you may need cast some results etc to their correct type
in Flex.

Malcolm

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of coldfs
Sent: Friday, 5 August 2005 7:29 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Calling ArrayStructures in CFCs from Flex

Hi,

Using Tom Link's blog (http://tomlink.net/blog/index.cfm?
mode=entry&entry=B662BEF9-7E97-A3B0-E3FB286E23BDAA50) and other 
sources, I've been trying for days to translate queries to arrays of 
structures (and vice versa).  Whatever I do, the cfc doesn't except 
my values from Flex as arrays.  I know it's a chunk of code to 
review, but you'd help a sane man going slowly mad...:-)

Many thanks,
Darius

---
index.mxml:
---

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






http://gx270dev.net/flashservices/gateway"; 
source="Model.mUtilities.mUpdate.qry_UpdateAuthorization" 
fault="mx.controls.Alert.show(event.fault.faultstring)" 
showBusyCursor="true">




   
 
  


   
 






--
fx_UpdateAuthorization.cfc
--

















-
qry_UpdateAuthorization.cfc
-


















   





-
Base.cfc
-













/**
 * Converts a query object into an array of structures.
 * 
 * @param query  The query to be transformed 
 * @return This function returns a structure. 
 * @author Nathan Dintenfass ([EMAIL PROTECTED]) 
 * @version 1, September 27, 2001 
 */
function QueryToArrayOfStructures(theQuery){
var theArray = arraynew(1);
var cols = ListtoArray(theQuery.columnlist);
var row = 1;
var thisRow = "";
var col = 1;
for(row = 1; row LTE theQuery.recordcount; row = row 
+ 1){
thisRow = structnew();
for(col = 1; col LTE arraylen(cols); col = 
col + 1){
thisRow[cols[col]] = theQuery[cols
[col]][row

[flexcoders] Re: How to render a foreground color on an

2005-08-11 Thread donalstar
Very elegant solution. Thanks, Manish.
--- In flexcoders@yahoogroups.com, Manish Jethani 
<[EMAIL PROTECTED]> wrote:
> On 8/11/05, Donal Carroll <[EMAIL PROTECTED]> wrote:
> 
> > I'm also listing the Laszlo code snippet so you'll see what I'm 
talking
> > about: 
> >   
> > 
> >  
> >  
> > 
> >  > resource="common/browse/color_chip_fill.swf"
> > fgcolor="red"/>
> >  > resource="common/browse/color_chip_fill.swf"
> > fgcolor="green"/>
> >  > resource="common/browse/color_chip_fill.swf"
> > fgcolor="yellow"/> 
> > 
> >  
> > 
> 
> OK, I wonder why you need to load an external SWF to do this.  
Anyway,
> here's the Flex equivalent:
> 
> 
> http://www.macromedia.com/2003/mxml";
>   xmlns="*" backgroundColor="white" horizontalAlign="left">
>   
> LaszloStyleView {
>   header-height: 0;
>   panel-border-style: roundCorners;
>   corner-radius: 8;
>   drop-shadow: false;
> }
>   
>styleName="LaszloStyleView" backgroundColor="red" />
>styleName="LaszloStyleView" backgroundColor="green" />
>styleName="LaszloStyleView" backgroundColor="yellow" />
> 
> 
> You style a Panel so that it shows round corners.  No need to load 
external SWF.
> 
> Manish




 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hr161n8/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123781862/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] Combobox : Display tooltip scrolling over the elements

2005-08-11 Thread Valy Sivec
Hello,

I poke around the combobox component without any
luck... no tooltip :((

Below is the code I used. Any ideas?

Thanks,
Valy





http://www.macromedia.com/2003/mxml";
 height="480" 
 width="800" 
 marginBottom="0" 
 marginLeft="0" 
 marginRight="0" 
 marginTop="0" 
 creationComplete="appInit()">
 
 
  

 
 
   
  
 
 

   

   



--- Manish Jethani <[EMAIL PROTECTED]> wrote:

> On 8/10/05, Abdul Qabiz <[EMAIL PROTECTED]>
> wrote:
> > Does this work this way?
> > 
> > comboBox.dropDown.showDataTips = true?
> > 
> > ComboBox contains a List, so you can get the
> reference of list using
> > 'dropDown' property of ComboBox and then set List
> properties on it, as
> > shown above.
> 
> Correction:  There's no dropDown property.  There's
> an internal
> __dropdown variable that refers to the List of the
> ComboBox.  Access
> that.
> 
> Manish
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hdjqpgs/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123781353/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] alternate cell colours in a grid

2005-08-11 Thread Douglas Knudsen
hmm, that's tasty.  thanks Adam.  This alternates row colours in a
grid, I need to alternate cell colours in a single row.  A little mod
of the below yields this function which I can call in the Grid
initialise event.

function initRowHeaders()   {
for(var i:Number = 0; i < headerRow.numChildren; i++)   
{

headerRow.getChildAt(i).setStyle('backgroundColor', i % 2
== 0 ? 'red' : 'blue');
}

}


DK


On 8/10/05, Adam Cath <[EMAIL PROTECTED]> wrote:
> Douglas,
> 
> You can set the style in an event handler, like so:
> 
> 
>   
>  initialize="row[r.currentIndex]
> .setStyle('backgroundColor',
>   r.currentIndex % 2 == 0
> ? 0xFF
> : 0xDD)">
>   
> ...
>   
> 
>   
> 
> 
> Enjoy,
> Adam
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Douglas Knudsen
> Sent: Wednesday, August 10, 2005 2:02 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] alternate cell colours in a grid
> 
>  got this code below building a grid dynamicallyhow to alternate
> teh gridItem colours???
> I tried
> backgroundColor='{ currentIndex%2 == 0 ? "#EE" : "#CCC" }'
> but apparently can't use bindings in style settings
> 
> oh..can't use bindings in the styleName property either.
> 
> DK
> 
> 
> 
> 
> 
> 
> 
> 
> oh,
> 
>  function getGridHeader() : Array   {
> builds a array of values: 7AM, 8AM, 9AM, .,
> 9PM
> }
> return myArray;
> }
> 
> --
> 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
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> --
> 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?


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hr389jk/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123781161/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Sjors Pals
Well i think not "rendering" objects with alpha zero is a big mistake.
There is a visible property, and i think that should be the criteria to 
render an object.

Especially when you look to backward compatibility i hope macromedia 
will decide to (not) fix this isue.

Greets,

Sjors


Alias wrote:

> Craig,
>
> This sounds like it's actually the result of a *fix* that's in the new
> player. If an object's _alpha is set to zero, it shouldn't be
> displayed at all - however, there were some issues with rendering
> device text with alpha, which is due to the limited font information
> the host platform passes back. However, as I understand it, the flash
> 8 player has much improved font rendering capabilities.
>
> So on a player level, this is expected behavior - it's just one of
> those unfortunate cases where a bug becomes a fact of life, and fixing
> it ends up causing problems. I'd say - design for the new player.
>
> HTH,
> Alias
>
> On 7/14/05, Craig Newroth <[EMAIL PROTECTED]> wrote:
> > 
> > okay, maybe i did not make my self clear...when I was using Flash 
> PLayer 7
> > and set the property 'alpha' to zero, then not only could I NOT see 
> the bar
> > (which is what I wanted) but i COULD STILL see the text in the 
> control. Now
> > in Flah Player 8, if i set the SAME property (alpha) in the SAME 
> control to
> > zero not only can I NOT see the BAR in the control, but the text is
> > invisible now also...
> > If i set the property to "1" then I cannot see the bar, but CAN 
> still see
> > the text of the 'LinkBar" tag...
> > 
> >
> >
> > PR Muruganandh <[EMAIL PROTECTED]> wrote:
> > 
> > 
> >
> > Hi
> >
> >  
> >
> > In FP7[IE] & FP8[FireFox]
> >
> >  
> >
> > The following code works the same way
> >
> >  
> >
> > 
> >
> > http://www.macromedia.com/2003/mxml";>
> >
> > 
> > 
> >
> >  
> >
> > If I change alpha="100", then also FP7[IE] & FP8[FireFox] works 
> similar!
> >
> >  
> >
> > Might be some problem with this
> >
> > mouseOver="triggerShowEffectNeedReports()" !
> >
> >  
> >
> >  
> >
> > - anand
> >
> >  
> >
> >  
> > 
> >  
> > 
> >
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> > Behalf Of Abdul Qabiz
> > Sent: Thursday, July 14, 2005 6:05 PM
> > To: flexcoders@yahoogroups.com
> > Subject: RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!
> >
> >  
> >
> > Hi,
> >
> >  
> >
> > We tried reproducing the same here at our end and we don't see any
> > difference between two players (FP7 & FP8 Beta).
> >
> >  
> >
> > -abdul
> >
> >  
> >  
> > 
> >
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> > Behalf Of Craig Newroth
> > Sent: Thursday, July 14, 2005 5:41 PM
> > To: flexcoders@yahoogroups.com
> > Subject: Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!!
> > 
> >
> > and here is what I did to get it to do what I wanted, evidently the 
> Flash
> > player 8 takes it literally on the alpha property :) - i set it to 1 
> (one)
> > instead of zero (0) and it is back to being transparent like I 
> wanted it to
> > be... whew!
> > 
> >
> > WIll post that to the feedback Andrew, thx
> > 
> >
> > Craig
> > 
> >
> >
> >
> > Andrew Spaulding <[EMAIL PROTECTED]> wrote:
> > 
> >
> > Well I'm yet to find a bug but there seems to be some noticable
> > improvements in performance.
> >
> > Be sure to post your bug using the feedback form found here
> > http://www.macromedia.com/bin/fp8betafeedback.cgi?
> >
> > Cheers,
> >
> > Andrew Spaulding
> > www.flexdaddy.info
> >
> >
> >
> > --- In flexcoders@yahoogroups.com, "cnewroth55" <[EMAIL PROTECTED]> wrote:
> > > Okay, saw the post about the beta Flash Player 8 beta, and as I like
> > > to jump in with both feet, installed it for IE, Netscape 7.2 and Fire
> > > Fox 1.0.4...went to one of my flex apps and found that I could no
> > > longer see my label in the Link tag in my app. I was setting the
> > > property 'alpha' to  zero so that the "bar" that highlights the
> > > selection is invisible and just the rollovers would be seen. Removing
> > > the alpha property lets my labe be seen but then (as I am using
> > > haloBlue) i get a big ugly blue bar across my link label...I have a
> > > graphic behind the link bar and did not want this to show up (the
> > > bar)...it used to work in Flash player 7...so beta team thought you
> > > would like to knowI really, really dont want to give up my 
> alpha :)
> > >
> > > ps. did noticed a slight improvement in load speed...
> > >
> > > this on longer works
> > >  > > modalTransparency="0" borderStyle="none" alpha="0"
> > > textRollOverColor="#0099CC" mouseOver="triggerShowEffectNeedReports
> > > ()" />
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> >
> >
> > 
> >  
> > 
> >
> > Star

[flexcoders] ColorPicker in a cellRenderer

2005-08-11 Thread Burge David A (Contractor)
Title: ColorPicker in a cellRenderer







I'm trying to use the ColorPicker in a cell renderer of a DataGrid component.  I have no problem getting it to initially display except for the selected color.  When the component is first drawn all the ColorPickers are black, when I mouse over a row in the DataGrid the ColorPicker for that row is redrawn with the correct selected color.

Here's the cell renderer code:


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


  var getDataLabel:Function;


  function setValue(str:String, item:Object) {
    if (item == undefined)
    {
  visible = false;
  return;
    }
    visible = true;
    myCP.selectedColor = new Number(item[getDataLabel()]);
  }


    
    



Including it into the DataGrid with:


    


Any ideas?


Thanks,


David








--
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] Re: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Alias
Craig,

This sounds like it's actually the result of a *fix* that's in the new
player. If an object's _alpha is set to zero, it shouldn't be
displayed at all - however, there were some issues with rendering
device text with alpha, which is due to the limited font information
the host platform passes back. However, as I understand it, the flash
8 player has much improved font rendering capabilities.

So on a player level, this is expected behavior - it's just one of
those unfortunate cases where a bug becomes a fact of life, and fixing
it ends up causing problems. I'd say - design for the new player.

HTH,
Alias

On 7/14/05, Craig Newroth <[EMAIL PROTECTED]> wrote:
>  
> okay, maybe i did not make my self clear...when I was using Flash PLayer 7
> and set the property 'alpha' to zero, then not only could I NOT see the bar
> (which is what I wanted) but i COULD STILL see the text in the control. Now
> in Flah Player 8, if i set the SAME property (alpha) in the SAME control to
> zero not only can I NOT see the BAR in the control, but the text is
> invisible now also... 
> If i set the property to "1" then I cannot see the bar, but CAN still see
> the text of the 'LinkBar" tag...
>  
> 
> 
> PR Muruganandh <[EMAIL PROTECTED]> wrote: 
>  
>  
> 
> Hi 
> 
>   
> 
> In FP7[IE] & FP8[FireFox] 
> 
>   
> 
> The following code works the same way 
> 
>   
> 
>  
> 
> http://www.macromedia.com/2003/mxml";> 
> 
> 
>  
> 
>   
> 
> If I change alpha="100", then also FP7[IE] & FP8[FireFox] works similar! 
> 
>   
> 
> Might be some problem with this 
> 
> mouseOver="triggerShowEffectNeedReports()" ! 
> 
>   
> 
>   
> 
> - anand 
> 
>   
> 
>   
>  
>  
>  
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Abdul Qabiz
> Sent: Thursday, July 14, 2005 6:05 PM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!! 
> 
>   
> 
> Hi, 
> 
>   
> 
> We tried reproducing the same here at our end and we don't see any
> difference between two players (FP7 & FP8 Beta). 
> 
>   
> 
> -abdul 
> 
>   
>  
>  
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Craig Newroth
> Sent: Thursday, July 14, 2005 5:41 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!! 
>  
> 
> and here is what I did to get it to do what I wanted, evidently the Flash
> player 8 takes it literally on the alpha property :) - i set it to 1 (one)
> instead of zero (0) and it is back to being transparent like I wanted it to
> be... whew! 
>  
> 
> WIll post that to the feedback Andrew, thx 
>  
> 
> Craig 
>  
> 
> 
> 
> Andrew Spaulding <[EMAIL PROTECTED]> wrote: 
>  
> 
> Well I'm yet to find a bug but there seems to be some noticable
> improvements in performance.
> 
> Be sure to post your bug using the feedback form found here
> http://www.macromedia.com/bin/fp8betafeedback.cgi?
> 
> Cheers,
> 
> Andrew Spaulding
> www.flexdaddy.info
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "cnewroth55" <[EMAIL PROTECTED]> wrote:
> > Okay, saw the post about the beta Flash Player 8 beta, and as I like 
> > to jump in with both feet, installed it for IE, Netscape 7.2 and Fire 
> > Fox 1.0.4...went to one of my flex apps and found that I could no 
> > longer see my label in the Link tag in my app. I was setting the 
> > property 'alpha' to  zero so that the "bar" that highlights the 
> > selection is invisible and just the rollovers would be seen. Removing 
> > the alpha property lets my labe be seen but then (as I am using 
> > haloBlue) i get a big ugly blue bar across my link label...I have a 
> > graphic behind the link bar and did not want this to show up (the 
> > bar)...it used to work in Flash player 7...so beta team thought you 
> > would like to knowI really, really dont want to give up my alpha :)
> > 
> > ps. did noticed a slight improvement in load speed...
> > 
> > this on longer works
> >  > modalTransparency="0" borderStyle="none" alpha="0" 
> > textRollOverColor="#0099CC" mouseOver="triggerShowEffectNeedReports
> > ()" />
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> 
> 
>  
>  
>  
> 
> Start your day with Yahoo! - make it your home page 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: htt

RE: [flexcoders] COLUMNCHART + REPEATER

2005-08-11 Thread david_gal-reyniez





Thank Matt.
I have a better control about the building of my chart with 
the method creationComplete() which you advise me to use.
Indeed I could optimize my chart! For example, 
the LinearAxis generates by default the property autoAdjust to true. It 
was problematic to watch a Date in this format 11.8...Thank you 
again for all people who participates actively to this forum, it's a great 
experience!
Have a good day.
David


De : flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] De la part de Matt 
ChotinEnvoyé : samedi 30 juillet 2005 02:29À : 
flexcoders@yahoogroups.comObjet : RE: [flexcoders] COLUMNCHART + 
REPEATER


I think we might have a 
known bug on charts being used within Repeaters where the various fill objects 
may not assign correctly.  Rather than assign in the repeater maybe you’ll 
need to use the creationComplete event of the chart to go ahead and assign those 
values.  In your event handler use event.target.repeaterIndices[0] to get 
the index (I think).
 
Matt
 




From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] 
On Behalf Of 
david_gal-reyniezSent: Thursday, July 28, 2005 9:59 
AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] COLUMNCHART + 
REPEATER
 

Hi 
everybody,

 

I try to generate 4 charts thanks to 
the REPEATER object but I partially success.

Can you help me to success 
totally...

The chart contains the good values, 
the legend generates the good labels et the defined 
colors.

The problem is to get the value for 
the both axis (in this case : day and resources) et to have the same color 
for the chart and its corresponding label.

 

Thanks very much for your 
help!

 

// METHOD : Create the data for the 
Chart

public function 
setOverviewThree():Array{ var tempArray:Array = new 
Array();  var arrDay:Array = new Array(); arrDay = 
setTheLastThirtyDays(30);   // 
Call a methode which gives the last 30 days from 
today  for (var i:Number=0; i<30; 
i++) {  var resources_i:Number = 
Math.ceil(20*Math.random());var o:Object = new 
Object();  o.day = arrDay[i];  o.resources = 
resources_i;  tempArray.push(o);   }  tempArray.sort(0, 
2); return tempArray;}

 

 

// METHOD : Create the data for the 
4 charts

 

public function 
createChart():Array{ var tempArray:Array = new 
Array();  var arrTitle:Array = new Array(); arrTitle 
= ["NAME1", "NAME2", "NAME3", "NAME4"];   var 
arrData:Array = new Array(); arrData = [setOverviewThree(), 
setOverviewThree(), setOverviewThree(), 
setOverviewThree()];  var arrColors:Array = new 
Array(); arrColors = [0x99, 0x99, 0x669966, 
0xCC99FF];  var arrLabels:Array = new 
Array(); arrLabels = ["name1", "name2", "name3", 
"name4"];  for (var i:Number=0; i {  var o:Object = new 
Object();o.title = 
arrTitle[i];o.chartData = 
arrData[i];var labels:String = 
arrLabels[i];  var fill:SolidColor = new 
SolidColor(arrColors[i]);  var stroke:Stroke = new 
Stroke(0x00);o.legend=[{ label:labels, 
fill:fill, 
stroke:stroke}];tempArray.push(o); }  return 
tempArray;}

 

 

 

// MXML 
FILE

  dataProvider="{ 
arrCharts }" 
>styleName="text"text="{ 
arrCharts[rpCharts.currentIndex].title 
}"width="100%" 
/>  visible="true"width="100%"height="100%"verticalAlign="middle"horizontalGap="0"> styleName="chart"x="20"height="160"width="100%"  &! 
nbsp;&nb 
sp;minWidth="500"visible="true"dataProvider="{ 
arrCharts[rpCharts.currentIndex].chartData 
}"// 
<<   styleName="chart"  labelGap="4" 
/> styleName="chart"  labelGap="8" 
/>  styleName="chart" showDataEffect="Fade" xField="day" 
 name="resources">  

Re: [flexcoders] Load testing Flex apps

2005-08-11 Thread Sreejith Unnikrishnan
Maybe you want to take a look at:
http://www.macromedia.com/devnet/flex/articles/amf_perftest.html

Kevin Ewok wrote:

> I have a Flex app that does basic remoteMethod CRUD operations. Does
> anyone know of any testing software that can test scalability,
> perforamce, load, etc (since Flex is deployed to the application server)?
>
> I've haven't heard of any software that can mimic flash front-end
> actions.
>
> Thanks in advance.
>
>
>
>
>
>
>
> --
> 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 .
>
>
> 
>




 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hktoq1v/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123777431/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] tree with checkbox

2005-08-11 Thread Paolo Bernardini
I'm trying to implement a tree with a checkbox renderer, but so far 
with no luck. 

I've tried the example at macromedia, 
http://www.macromedia.com/support/documentation/en/flex/1/cellrendere
rs/cellrenderers13.html but it doesn't work properly. It behave in a 
strange way, basically as soon as you roll over a row of the tree 
the checkbox covers the disclosure arrow icon making it difficult if 
not impossible to open a branch. 

I've tried to modify the code relative to the position of the 
checkbox:

 

_check._x = disclosure._x;
  disclosure._x = _check._x + _check._width + 2;
  nodeIcon._x = disclosure._x + disclosure._width + 2;
  cell._x = nodeIcon._x + nodeIcon._width + 2;

 

but all the changes made at disclosure._x = _check._x + 
_check._width + 2 ; were disregarded.

 

I've even tried using a different approach, by using different icons 
for displaying the different state of the check box but then 
realising that I needed a real checkbox implementation for my 
purpose. 

 

Any help would be really appreciated (the macromedia example would 
be perfect if only works as expected )






 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hocv52a/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123775931/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!.
~-> 

--
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] Load testing Flex apps

2005-08-11 Thread Kevin Ewok
I have a Flex app that does basic remoteMethod CRUD operations. Does
anyone know of any testing software that can test scalability,
perforamce, load, etc (since Flex is deployed to the application server)? 

I've haven't heard of any software that can mimic flash front-end
actions. 

Thanks in advance.







 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hemcov4/M=362335.6886445.7839731.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123775583/A=2894361/R=0/SIG=13jmebhbo/*http://www.networkforgood.org/topics/education/digitaldivide/?source=YAHOO&cmpgn=GRP&RTP=http://groups.yahoo.com/";>In
 low income neighborhoods, 84% do not own computers. At Network for Good, help 
bridge the Digital Divide!.
~-> 

--
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] check box-radio button

2005-08-11 Thread Niklas Richardson
Crud!  Hit enter too soon!

Instead, you can do it this way:





On 11/08/05, Niklas Richardson <[EMAIL PROTECTED]> wrote:
> Actually, that's a super bad idea.  Don't do it that way otherwise
> you'll get a circular reference and your browser / Flash will crash!
> 
> 
> On 11/08/05, Niklas Richardson <[EMAIL PROTECTED]> wrote:
> > You can bind each other's selected property to the other.
> >
> > Something like this:
> >
> >  > selected="{!myCheckBox2.selected}">
> >
> >  > selected="{!myCheckBox1.selected}">
> >
> >
> > On 11/08/05, Nithya R <[EMAIL PROTECTED]> wrote:
> > >
> > > hai
> > >
> > > i have two check boxes and i want them to function like radio buttons, ie 
> > > it
> > > must not allow multiple selection and must support toggle funtion... how 
> > > to
> > > do this? any link orsample available?
> > >
> > > thanks
> > > nithya
> > >
> > > Send instant messages to your online friends http://uk.messenger.yahoo.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.
> > >
> > >  
> > >
> > >
> > >
> >
> >
> > --
> > Niklas Richardson
> > Prismix Ltd
> >
> > Flex and ColdFusion Experts!
> >
> 
> 
> --
> Niklas Richardson
> Prismix Ltd
> 
> Flex and ColdFusion Experts!
> 


-- 
Niklas Richardson
Prismix Ltd

Flex and ColdFusion Experts!


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12h0228km/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123772628/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] check box-radio button

2005-08-11 Thread Niklas Richardson
Actually, that's a super bad idea.  Don't do it that way otherwise
you'll get a circular reference and your browser / Flash will crash!


On 11/08/05, Niklas Richardson <[EMAIL PROTECTED]> wrote:
> You can bind each other's selected property to the other.
> 
> Something like this:
> 
>  selected="{!myCheckBox2.selected}">
> 
>  selected="{!myCheckBox1.selected}">
> 
> 
> On 11/08/05, Nithya R <[EMAIL PROTECTED]> wrote:
> >
> > hai
> >
> > i have two check boxes and i want them to function like radio buttons, ie it
> > must not allow multiple selection and must support toggle funtion... how to
> > do this? any link orsample available?
> >
> > thanks
> > nithya
> >
> > Send instant messages to your online friends http://uk.messenger.yahoo.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.
> >
> >  
> >
> >
> >
> 
> 
> --
> Niklas Richardson
> Prismix Ltd
> 
> Flex and ColdFusion Experts!
> 


-- 
Niklas Richardson
Prismix Ltd

Flex and ColdFusion Experts!


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hqmtte6/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123772469/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!.
~-> 

--
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] check box-radio button

2005-08-11 Thread Niklas Richardson
You can bind each other's selected property to the other.

Something like this:






On 11/08/05, Nithya R <[EMAIL PROTECTED]> wrote:
>  
> hai 
>   
> i have two check boxes and i want them to function like radio buttons, ie it
> must not allow multiple selection and must support toggle funtion... how to
> do this? any link orsample available? 
>   
> thanks 
> nithya
> 
> Send instant messages to your online friends http://uk.messenger.yahoo.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. 
>  
>  
>  
> 
> 


-- 
Niklas Richardson
Prismix Ltd

Flex and ColdFusion Experts!


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hoh7u7m/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123771943/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] Flash Component for Flex

2005-08-11 Thread Stanislav Zayarsky
Hello,

I want to create advanced flash component and use it in Flex.

So I have started to write Flash component for flex and... suddenly I
realized that I can't use attachMovie command! But I want to attach
symbols from library...

Does anyone know smth about this issue?

Best regards
Stanislav


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hto4pg5/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123771829/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] check box-radio button

2005-08-11 Thread Nithya R



hai
 
i have two check boxes and i want them to function like radio buttons, ie it must not allow multiple selection and must support toggle funtion... how to do this? any link orsample available?
 
thanks
nithyaSend instant messages to your online friends http://uk.messenger.yahoo.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.



  









RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-08-11 Thread Craig Newroth




sorry it took so long to respond...here is the file
Craig
 
Abdul Qabiz <[EMAIL PROTECTED]> wrote:


Hi,
 
Can you please send the test file (mxml + swf) to me. I would like to see it...
 
We tried compiling your code with Flex 1.5 and running the app in firefox and IE with Flash Player 8. I can't reproduce it...
 
But I would like to see your file..
 
 
-abdul


From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Craig NewrothSent: Thursday, July 14, 2005 9:28 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

okay, maybe i did not make my self clear...when I was using Flash PLayer 7 and set the property 'alpha' to zero, then not only could I NOT see the bar (which is what I wanted) but i COULD STILL see the text in the control. Now in Flah Player 8, if i set the SAME property (alpha) in the SAME control to zero not only can I NOT see the BAR in the control, but the text is invisible now also...
If i set the property to "1" then I cannot see the bar, but CAN still see the text of the 'LinkBar" tag...
PR Muruganandh <[EMAIL PROTECTED]> wrote:









Hi
 
In FP7[IE] & FP8[FireFox]
 
The following code works the same way
 


 
 
If I change alpha="100", then also FP7[IE] & FP8[FireFox] works similar! 
 
Might be some problem with this
mouseOver="triggerShowEffectNeedReports()" !
 
 
- anand
 
 




From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul QabizSent: Thursday, July 14, 2005 6:05 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!
 
Hi,
 
We tried reproducing the same here at our end and we don't see any difference between two players (FP7 & FP8 Beta).
 
-abdul
 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Craig NewrothSent: Thursday, July 14, 2005 5:41 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

and here is what I did to get it to do what I wanted, evidently the Flash player 8 takes it literally on the alpha property :) - i set it to 1 (one) instead of zero (0) and it is back to being transparent like I wanted it to be... whew!

WIll post that to the feedback Andrew, thx

Craig

Andrew Spaulding <[EMAIL PROTECTED]> wrote:

Well I'm yet to find a bug but there seems to be some noticableimprovements in performance.Be sure to post your bug using the feedback form found herehttp://www.macromedia.com/bin/fp8betafeedback.cgi?Cheers,Andrew Spauldingwww.flexdaddy.info--- In flexcoders@yahoogroups.com, "cnewroth55" <[EMAIL PROTECTED]> wrote:> Okay, saw the post about the beta Flash
 Player 8 beta, and as I like > to jump in with both feet, installed it for IE, Netscape 7.2 and Fire > Fox 1.0.4...went to one of my flex apps and found that I could no > longer see my label in the Link tag in my app. I was setting the > property 'alpha' to  zero so that the "bar" that highlights the > selection is invisible and just the rollovers would be seen. Removing > the alpha property lets my labe be seen but then (as I am using > haloBlue) i get a big ugly blue bar across my link label...I have a > graphic behind the link bar and did not want this to show up (the > bar)...it used to work in Flash player 7...so beta team thought you > would like to knowI really, really dont want to give up my alpha :)> > ps. did noticed a slight improvement in load speed...> > this on longer works>     > modalTransparency="0" borderStyle="none" alpha="0" > textRollOverColor="#0099CC" mouseOver="triggerShowEffectNeedReports> ()" />--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



Start your day with Yahoo! - make it your home page --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 


Do you Yahoo!?Yahoo! Mail - You care about security. So do we. --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com --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. 



		 Start your day with Yahoo! - ma

[flexcoders] help...geting error when using http service

2005-08-11 Thread Amit Sanon
whenever i try to use httpservice tag i get an error

---  HTTPService Fault:A start tag had no corresponding end tag ---

i have a code written like this--



{username.text}
{password.text}



 and the corresponding entry in flex-config.xml is as 


   
 
 http://{localserver}/*
 https://{localserver}/*
 
   


cant figure out what is wrong

thanks
Amit




 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hqmqepj/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123768651/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] selectedItem in a list shows an icon (Revisited)

2005-08-11 Thread Niklas Richardson
Hi everyone,

I revisited the selectedItem demo I created yesterday to see how the
code would perform with larger data sets.

You can read about my findings here:

http://www.prismix.com/blog/archives/2005/08/selecteditem_in_1.cfm

Basically, it performed well with 1000 items in the array, and it
performed sluggishly with 1 items in the array.

Have a play with the demo on the blog if you like.

Cheers

Niklas


-- 
Niklas Richardson
Prismix Ltd

Flex and ColdFusion Experts!


 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hc98u7t/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123768530/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!.
~-> 

--
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] Text content larger than 16384 bytes may not be included at compile-time (740684

2005-08-11 Thread cnewroth55
I have an xml file that is 26000 lines long and am trying to read it 
into a datagrid, when i do i get the error listed as the subject:

Text content larger than 16384 bytes may not be included at compile-
time (740684)

any idead why i am getting this? have nto seen this before

thx all






 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12h0nbfie/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123767565/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!.
~-> 

--
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] Flex UI Component chart

2005-08-11 Thread flexhansen
Hi!

Some time ago I found a nice UI component chart for Flex. I think it
was part of a devnet article, but i'm not sure.

Can't seem to locate it again :( - anyone have a link?!

Thank you for your help!

Kind regards


  -michael





 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hvmuq3i/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123763616/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] help.. passing arguments to a method using remoteobject

2005-08-11 Thread Amit Sanon





Thanks 
a lot... ur suggestion really solved my problem
 
regards
Amit 


  -Original Message-From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED]On Behalf Of Philippe 
  MaegermanSent: Thursday, August 11, 2005 1:24 PMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] help.. passing 
  arguments to a method using remoteobject
  You can use  inside yout 
  method
  
   
  
 {text1.text}
 {text2.text}
  
   

  Documentation here :  http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=1175.htm
   
  Philippe 
  Maegerman
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Amit 
  SanonSent: jeudi 11 août 2005 7:52To: 
  flexcoders@yahoogroups.comSubject: [flexcoders] help.. passing 
  arguments to a method using remoteobject
  i cannot figure out how to pass arguments... pls send an 
  example code as to how to pass arguments to a method using remote 
  objecti have a class as follows  class A{  
  public int func1(int i, string st)  { 
  ...  }}i created a remote object 
  like...  
  and made a call to this 
  method asfunction getReply(){  
  remot.func1(1,"amit");}but was not successfull.. it gave an error 
  cannot invoke method func1
  --**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








  
  
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: help.. passing arguments to a method using remoteobject

2005-08-11 Thread Daniel Harfleet
Amit, 

can you give the list an idea of what the error actually says ? Are
you also getting errors on your J2EE server ? If so what are these ?
Have you switched on the gateway debug ? 


If your flex server is installed locally we suggest enabling server
side "debug" level logging in /WEB-INF/flex/gateway-config.xml to
watch the raw trace information in the Flex server console / logs from
the AMF Gateway as it processes your RemoteObject requests.


hope this helps

dan


--- In flexcoders@yahoogroups.com, "Philippe Maegerman" <[EMAIL PROTECTED]> 
wrote:
> You can use  inside yout method
> 
>
>   
>  {text1.text}
>  {text2.text}
>   
>
> 
> Documentation here : 
http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=1175.htm
>  
> Philippe Maegerman
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Amit Sanon
> Sent: jeudi 11 août 2005 7:52
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] help.. passing arguments to a method using
remoteobject
> 
> 
> i cannot figure out how to pass arguments... pls send an example code 
> as to how to pass arguments to a method using remote object
> 
> i have a class as follows
>   
> class A
> {
>   public int func1(int i, string st)
>   {
>  ...
>   }
> }
> 
> i created a remote object like...
> 
> 
>   
> 
> 
> and made a call to this method as
> 
> function getReply()
> {
>   remot.func1(1,"amit");
> }
> 
> but was not successfull.. it gave an error cannot invoke method func1
> 
> 
> 
> 
> 
> 
> 
> 
> --
> 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.
> --




 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hnbvubc/M=362335.6886445.7839731.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123759093/A=2894361/R=0/SIG=13jmebhbo/*http://www.networkforgood.org/topics/education/digitaldivide/?source=YAHOO&cmpgn=GRP&RTP=http://groups.yahoo.com/";>In
 low income neighborhoods, 84% do not own computers. At Network for Good, help 
bridge the Digital Divide!.
~-> 

--
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: An interesting problem with models....

2005-08-11 Thread Daniel Harfleet
If you want an Array to act as a DataProvider, you must use the
DataProvider methods, as these fire the relevant events to let
controls know about changes

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

http://livedocs.macromedia.com/flex/15/asdocs_en/mx/controls/listclasses/DataProvider.html


hope this helps

daniel



--- In flexcoders@yahoogroups.com, Tariq Ahmed <[EMAIL PROTECTED]> wrote:
> Hi Mika, thanks! That lead me down the right track. Your first 
> suggestion is basically the solution.
> 
> Thanks!
> 
> 
> Mika Kiljunen wrote:
> 
> > Perhaps you should modify the values on the model through the list's 
> > dataProviders editField or replaceItemAt, since the changes made to 
> > the model directly won't be reflected to the list?
> >
> > You could set the list's dataprovider once more after you modify the 
> > list directly, this might help too.
> >
> >  
> >
> > So something like this:
> >
> >
> >
> >  > labelField="revenue"/>
> >
> > function processCurrentItems()
> > {
> > myList.dataProvider.replaceItemAt(0,13);
> > myList.dataProvider.replaceItemAt(1,14);
> > myList.dataProvider.replaceItemAt(2,15);
> > myList.dataProvider.replaceItemAt(3,16);
> >
> > }
> >
> >  
> >
> > OR
> >
> >  
> >
> >  > labelField="revenue"/>
> >
> > function processCurrentItems()
> > {
> > sectionModel.region[0].revenue = 13;
> > sectionModel.region[1].revenue = 14;
> > sectionModel.region[2].revenue = 15;  
> > sectionModel.region[3].revenue = 16;  
> >
> > myList.dataProvider = sectionModel;
> >
> > }
> >
> >  
> >
> >  
> >
> > -Mika
> >
> >  
> >
> >

> >
> > *From:* flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] 
> > *On Behalf Of *Tariq Ahmed
> > *Sent:* 10. elokuuta 2005 7:54
> > *To:* flexcoders@yahoogroups.com
> > *Subject:* [flexcoders] An interesting problem with models
> >
> >  
> >
> > A model, remoteobject, and a list walk into a bar, and the bartender 
> > ... j/k
> >
> > I got a weird problem that I've narrowed down into a simple
> > reproduceable test case.
> >
> > Got a simple model:
> > 
> > 
> > 
> >   
> > 
> >   
> >
> > And I got a function that just hard code updates the values:
> > function processCurrentItems()
> > {
> > sectionModel.region[0].revenue = 13;
> > sectionModel.region[1].revenue = 14;
> > sectionModel.region[2].revenue = 15;  
> > sectionModel.region[3].revenue = 16;  
> > }
> >
> > And then these two components displaying data:
> > 
> > 
> >
> > Now the list should show 13,14,15,16 after the above function is
called,
> > and it does if called from the Application initialize call. But,
if it's
> > called as a result from a remoteObject call, the model is updated, but
> > the List doesn't the change, however the Label does.
> >
> > Attached is a working sample.
> >
> > It turns out the List is updating in the remoteobject case, but the
> > display only updates if you move your mouse over each individual item.
> > Though why it works fine if the same code is executed as a result
of an
> > initialize call is beyond me.
> >
> > In the actual problem that I have - instead of a list I have a
PieChart,
> > and its display does not update even though the model is updated
(though
> > to complicate things the exact same code works on another machine).
> >
> > Any ideas? Some caching thing?
> >




 Yahoo! Groups Sponsor ~--> 
http://us.ard.yahoo.com/SIG=12hu9ft8s/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123758457/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

--
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] help.. passing arguments to a method using remoteobject

2005-08-11 Thread Philippe Maegerman





You can use  inside yout 
method

   
  
 {text1.text}
 {text2.text}
  
   

Documentation here :  http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=1175.htm
 
Philippe 
Maegerman


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Amit 
SanonSent: jeudi 11 août 2005 7:52To: 
flexcoders@yahoogroups.comSubject: [flexcoders] help.. passing 
arguments to a method using remoteobject
i cannot figure out how to pass arguments... pls send an example 
code as to how to pass arguments to a method using remote objecti 
have a class as follows  class A{  public int 
func1(int i, string st)  { 
...  }}i created a remote object 
like...  
and 
made a call to this method asfunction getReply(){  
remot.func1(1,"amit");}but was not successfull.. it gave an error 
cannot invoke method func1





--
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.--