Re: [flexcoders] Cool Flex Site with Free 30 day trial

2005-11-10 Thread Sjors Pals
Yup, really lame, just use their contact info ;)

6960 W. O'Bannon Drive
Suite 110
Las Vegas, NV 89117

Application looks really nice, one of the best Flex Sites i have seen.


Greets,

Sjors

Johan Lopes wrote:
 Shame their service seems to be geared only towards the US. I live in
 London UK and had to use California as my state and 90210 as my
 postcode to get access to the trial :(

 Anyways, yes it looks cool and the UI interaction is very response
 too. It's great to see Flex being used like this.

 Johan


 --
 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
 Web site design development 
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ
  
   Computer software development 
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw
  
   Software design and development 
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ
  

 Macromedia flex 
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw
  
   Software development best practice 
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw
  



 
 YAHOO! GROUPS LINKS

 *  Visit your group flexcoders
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
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] Submitting a form

2005-10-03 Thread Sjors Pals
A colleague build a formengine in flex based on xml configuration files.
The engine is working nice, but i detected a problem when we submit the 
data to the server.
The information is Send as one big string, because we want to reuse the 
existing backend on the server.

Code:

mx:HTTPService id=myService url=http://10.0.0.50:8080/static/x/;
  method=GET fault=alert(event.fault.faultstring);
  result=alert('HTTPService responded!')
mx:request id=myRequest
result/result
/mx:request   
/mx:HTTPService

and from the class we try to post it:
appView.myService.myRequest.result = resultString;
appView.myService.send(resultString);

The resultString is filled with the formdata. When i submit the server 
responses succesful.
The problem is that when i check the logfiles on my webserver that the 
page was requested, but no information was send, also the page is 
requested by a GET method and not by POST.

The request page is NOT a webservice, and the data send is not xml

Can someone tell me what's wrong? Or is there maybe a better way to 
tackle this problem.

Greets,

Sjors





 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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] Submitting a form

2005-10-03 Thread Sjors Pals
not really, the string is something like this:

'formname=aandelenxxx_test=12132xxx_test2=sdasdxxx_super=asdfasdfyy_blah=1yy_test3=234234';

Greets,

Sjors

Abdul Qabiz wrote:

 If I get it correctly, you want to send request as XML?

 Then you can set the contentType property of HTTPService to

 contentType=application/xml


 -abdul

 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Sjors Pals
 Sent: Monday, October 03, 2005 5:05 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Submitting a form

 A colleague build a formengine in flex based on xml configuration files.
 The engine is working nice, but i detected a problem when we submit the
 data to the server.
 The information is Send as one big string, because we want to reuse the
 existing backend on the server.

 Code:

 mx:HTTPService id=myService url=http://10.0.0.50:8080/static/x/;
   method=GET fault=alert(event.fault.faultstring);
   result=alert('HTTPService responded!')
 mx:request id=myRequest
 result/result
 /mx:request  
 /mx:HTTPService

 and from the class we try to post it:
 appView.myService.myRequest.result = resultString;
 appView.myService.send(resultString);

 The resultString is filled with the formdata. When i submit the server
 responses succesful.
 The problem is that when i check the logfiles on my webserver that the
 page was requested, but no information was send, also the page is
 requested by a GET method and not by POST.

 The request page is NOT a webservice, and the data send is not xml

 Can someone tell me what's wrong? Or is there maybe a better way to
 tackle this problem.

 Greets,

 Sjors






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

 *  Visit your group flexcoders
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
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] Submitting a form

2005-10-03 Thread Sjors Pals
Well i just want to post the string to an other application (perl)
Little bit the same way as you post a normal html form to a page.

I want to know or this is possible in flex?

Greets,

Sjors



Abdul Qabiz wrote:

 Ok, I am confused.

 Do you want to send the request as an URL-encoded string or XML string?

 -abdul


 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Sjors Pals
 Sent: Monday, October 03, 2005 5:22 PM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Submitting a form

 not really, the string is something like this:

 'formname=aandelenxxx_test=12132xxx_test2=sdasdxxx_super=asdfasdfyy_
 blah=1yy_test3=234234';

 Greets,

 Sjors

 Abdul Qabiz wrote:

  If I get it correctly, you want to send request as XML?
 
  Then you can set the contentType property of HTTPService to
 
  contentType=application/xml
 
 
  -abdul
 
  -Original Message-
  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
 On
  Behalf Of Sjors Pals
  Sent: Monday, October 03, 2005 5:05 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Submitting a form
 
  A colleague build a formengine in flex based on xml configuration
 files.
  The engine is working nice, but i detected a problem when we submit
 the
  data to the server.
  The information is Send as one big string, because we want to reuse
 the
  existing backend on the server.
 
  Code:
 
  mx:HTTPService id=myService
 url=http://10.0.0.50:8080/static/x/;
method=GET fault=alert(event.fault.faultstring);
result=alert('HTTPService responded!')
  mx:request id=myRequest
  result/result
  /mx:request 
  /mx:HTTPService
 
  and from the class we try to post it:
  appView.myService.myRequest.result = resultString;
  appView.myService.send(resultString);
 
  The resultString is filled with the formdata. When i submit the server
  responses succesful.
  The problem is that when i check the logfiles on my webserver that the
  page was requested, but no information was send, also the page is
  requested by a GET method and not by POST.
 
  The request page is NOT a webservice, and the data send is not xml
 
  Can someone tell me what's wrong? Or is there maybe a better way to
  tackle this problem.
 
  Greets,
 
  Sjors
 
 
 
 
 
 
  --
  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
 
  *  Visit your group flexcoders
http://groups.yahoo.com/group/flexcoders on the web.

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

  *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service http://docs.yahoo.com/info/terms/.
 
 
 
 
 




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








 --
 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
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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] ms access

2005-09-16 Thread Sjors Pals
What did you try so far? Did you read anything about flex and 
datasources? Don't wanna be rude but i think you should first try a 
little bit your self.

Greets,

Sjors

Burak wrote:

 hi,

 dear friends, how I can get data from a database such as ms access in
 order to insert them
 in datagrid?

 --
 Burak BAYSAL




 --
 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
 Web site design development 
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Software+design+and+developmentw3=Macromedia+flexw4=Software+development+best+practicec=4s=131.sig=FkTWphZzV9mFulU7V3u7pQ
  
   Software design and development 
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Software+design+and+developmentw3=Macromedia+flexw4=Software+development+best+practicec=4s=131.sig=w0jnvy4gyxC04c4dhRnw6A
  
   Macromedia flex 
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Software+design+and+developmentw3=Macromedia+flexw4=Software+development+best+practicec=4s=131.sig=XXu7YeegB3Vi-5Qngf6oNQ
  

 Software development best practice 
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Software+design+and+developmentw3=Macromedia+flexw4=Software+development+best+practicec=4s=131.sig=ZT_U6e_iPgXSriY_dI9nIg
  



 
 YAHOO! GROUPS LINKS

 *  Visit your group flexcoders
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

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

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

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

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




Re: [flexcoders] how to prevent the flex app from loading the data in the cache?

2005-09-06 Thread Sjors Pals
Make sure you set the right headers in your asp output:

Put something like this in your asp response:


Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 2
Response.AddHeader pragma,no-cache
Response.AddHeader cache-control,private
Response.CacheControl = No-Store

Greets,

Sjors


xiankevin2005 wrote:

 my app invokes some asp files by using a httpservice.the records in the
 database are displayed in the datagrid.

 when the app was published as a swf file and was made to work on the
 web,after inserting new records into the database,i retrieve all the
 records again.however,there's nothing changed in the datagrid.it seems
 that the app loads data from the cache...but,when working in
 FlashPlayer,everything goes normally.what can i do to force my app to
 load the latest data rather than that in the cache?




 --
 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
 Web site design development 
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Software+design+and+developmentw3=Macromedia+flexw4=Software+development+best+practicec=4s=131.sig=FkTWphZzV9mFulU7V3u7pQ
  
   Software design and development 
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Software+design+and+developmentw3=Macromedia+flexw4=Software+development+best+practicec=4s=131.sig=w0jnvy4gyxC04c4dhRnw6A
  
   Macromedia flex 
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Software+design+and+developmentw3=Macromedia+flexw4=Software+development+best+practicec=4s=131.sig=XXu7YeegB3Vi-5Qngf6oNQ
  

 Software development best practice 
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Software+design+and+developmentw3=Macromedia+flexw4=Software+development+best+practicec=4s=131.sig=ZT_U6e_iPgXSriY_dI9nIg
  



 
 YAHOO! GROUPS LINKS

 *  Visit your group flexcoders
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
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
 
   
 
  ?xml version=1.0 encoding=utf-8?
 
  mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
 
  mx:Link label=Anand textRollOverColor=#0099CC alpha=0/
  /mx:Application
 
   
 
  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
   mx:Link label={link1Data[0]} color=#123154
   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: 
 

Re: [flexcoders] Hope all is watching the Avalon space..

2005-08-01 Thread Sjors Pals
You don't have to wait: http://www.xamlon.com/

Greets,

Sjors


Tolulope Olonade wrote:

 There have been clamours from the .Net developer fold for Macromedia 
 to make flex as native to .NET platform as well as it is with the java 
 platform.

 What do you think will happen when MS releases a platform that allow 
 .NET developers use the same Visual Studio.NET(2005 Maybe) + zero 
 licensing fees (it runs on Server 2003), to create applications that’s 
 puts the kind of rich programming components jus like flex/flash ?

 Take a look here:

 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnlong/html/hgtomayavalonctp.asp

 What do you think will happen?

 



 --
 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
   http://groups.yahoo.com/group/flexcoders on the web.
 * To unsubscribe from this group, send an email to:
   [EMAIL PROTECTED]
   mailto:[EMAIL PROTECTED]
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




 Yahoo! Groups Sponsor ~-- 
font face=arial size=-1a 
href=http://us.ard.yahoo.com/SIG=12hobs1ht/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1122902103/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/a./font
~- 

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

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

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

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





Re: [flexcoders] Flex and Databas Project

2005-07-30 Thread Sjors Pals
Well i don't think too much people are gonna help you this way.
Just start building it your self and if you get stuck, ask your 
questions on this list.

Not too much people are you gonna help this way. I would also advice you 
to read the FAQ of this mailinglist.
There are some rules regarding posting to this list and also a lot of 
information which can help you designing your Flex Applications.

Greets,

Sjors


[EMAIL PROTECTED] wrote:

 Good day to you,

 Recently, I started designing a small Project on MXML, using
 a small database such as XML or any database, trying to
 develop this Excel Spreadsheet attached with this message.

 I wish if someone can help me and design this small system..
 I would be so grateful.


 Best regards,
 Ahmed Abdel Aziz




 --
 Message sent from the
 Unlimited Mail Free Services Platform.
 http://www.unlimitedmail.net
 --


 --
 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
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.







 Yahoo! Groups Sponsor ~-- 
font face=arial size=-1a 
href=http://us.ard.yahoo.com/SIG=12hnbf4is/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1122742349/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/a./font
~- 

--
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] Running an auction with Flex

2005-07-25 Thread Sjors Pals
I think the most easies way is to write a webservice and then use SOAP 
to communicate.
As a test you can maybe use the Ebay soapservice.

Greets,

Sjors


[EMAIL PROTECTED] wrote:

 Is it possible for someone to make a web page that will run an auction 
 say to sell items? If so does anyone know of sample I can look at?

 --
 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
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




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

* 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: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread Sjors Pals






I don't think that's true, even at bigger organisations you see a shift
to use of free (opensource) software.
Even when 225k is not a lot of money for a company, if you can safe it,
its easy money.

Its also a strange thing that you pay 30% more for a flex license in
europe, and please, don't say those are the shippingcosts  :-P 


Greets,

Sjors




Rick Bullotta wrote:

  
  

  
  
  

  
  
  You would
have a hard time convincing me
that, if there are application development benefits and sunk costs
in development, that (after discounts) $60-125K is an issue
  
  
  
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Anthony Merryfield
  Sent: Tuesday, July
19, 2005 10:26
AM
  To: flexcoders@yahoogroups.com
  Subject: RE:
[flexcoders] Re: If I
buy a flex license can I host other peoples apps on the license?
  
  
  
  Just because
a company is worth multiples
of billions doesn't mean that the money is tied up in IT...
  
  
  
  
  
  
  
  
  T.
  
  
-Original
Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]On Behalf Of Rick Bullotta
Sent: 19 July 2005
15:21
To: flexcoders@yahoogroups.com
Subject: RE:
[flexcoders] Re: If I
buy a flex license can I host other peoples apps on the license?

Your
multibillion dollar company is hedging on $120K-$225K???
And dont you have a purchasing organization that can negotiate a
volume price?
I find that
hard to believe




From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan
Bezuidenhout
Sent: Tuesday, July
19, 2005 10:05
AM
To: flexcoders@yahoogroups.com
Subject: Re:
[flexcoders] Re: If I
buy a flex license can I host other peoples apps on the license?


On a
slightly different note.

I
can tell
you that in our multibillion dollar organization Flex is
most
likely
about to be thrown out. We were going to buy something
like
8 or 14
additional licenses to the multitude we already have, and
the
pricing
is just totally ridiculous for what we need it for.

Management
is ready to cut their losses and redevelop with something
non-proprietary
and we (the ones that really wanted Flex) have egg on
our
faces.

I
think we
have come to the point where MM has priced Flex totally out
of
the
market.

Jonathan


  
  
  
This communication together with any attachments transmitted with it
("this E-Mail") is intended only for the use of the addressee and may
contain information which is privileged and confidential. If the reader
of this
E-Mail is not the intended recipient or the employee or agent
responsible for
delivering it to the intended recipient you are hereby notified that
any use,
dissemination, forwarding, printing or copying of this E-Mail is
strictly
prohibited. Addressees should check this E-mail for viruses. The
Company makes
no representations as regards the absence of viruses in this E-Mail. If
you
have received this E-Mail in error please notify our IT Service Desk
immediately by e-mail at [EMAIL PROTECTED] Please then immediately
delete,
erase or otherwise destroy this E-Mail and any copies of it.
  
Any opinions expressed in this E-Mail are those of the author and do
not
necessarily constitute the views of the Company. Nothing in this E-Mail
shall
bind the Company in any contract or obligation.
  
For the purposes of this E-Mail "the Company" means The Carphone
Warehouse Group Plc and/or any of its subsidiaries.
  
Please feel free to visit our website: http://
www.carphonewarehouse.com or
http://www.phonehouse.com
  
The Carphone Warehouse Group Plc (Registered in England
No. 3253714) 1 Portal Way,
  London W3
6RS
  

  
  








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





  




  
  
  YAHOO! GROUPS LINKS



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



  










Re: [flexcoders] how to control antialiased text in flex?

2005-07-14 Thread Sjors Pals
Another good way is to use fonts which where designed for use in flash.
Yesterday i found this site, with some really nice fonts:

http://www.orgdot.com/aliasfonts/

Greets,

Sjors





Matt Horn wrote:

 Not to my knowledge, but you can do a couple of things to get around it.
  
  - don't embed any fonts
  - use a text input field -- Flash never aliases font in them
  - change the style to a device font for areas where you want to use 
 non-anti-aliased fonts
  
 hth,
  
 matt horn
 flex docs

 
 *From:* flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] *On Behalf Of *Nithya R
 *Sent:* Thursday, July 14, 2005 6:34 AM
 *To:* flexcoders
 *Subject:* [flexcoders] how to control antialiased text in flex?

 hai
  
 is there any possibility for controlling antiakiased text in flex?
 say switching on/off?
  
 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



 --
 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
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




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

* 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 Public Beta

2005-07-12 Thread Sjors Pals
Nice but i can't find the release notes, can someone tell me or there is 
a document online?

Greets

Sjors

bhaq1972 wrote:

 I've noticed a increase in speed of rendering (about 10-30%).

 but still have issues with datagrids with many columns (very
 slowstill trying to find the problem!)

 regards
 bod


 --- In flexcoders@yahoogroups.com, Dirk Eismann [EMAIL PROTECTED]
 wrote:
  In case you haven't heard the news, the Flash Player 8 Public Beta is
  available:
 
  http://www.macromedia.com/software/flashplayer/public_beta/
 
  I tested it with several Flex applications and already noticed about
 30%
  less memory consumption and less CPU cooking compared to Flash
 Player
  7. Kudos to the Flash Player Team!
 
  Dirk.




 --
 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
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




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

* 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] Flash Player 8 Public Beta

2005-07-12 Thread Sjors Pals
I was wondering or there is some kind of test page where we can actually 
see the new features of the flashplayer (especially stuff like upload).

Greets

Sjors

JesterXL wrote:

 If you other Flexerz could test your apps, this would really help
 Macromedia, thanks!

 - Original Message -
 From: Dirk Eismann [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Tuesday, July 12, 2005 5:34 AM
 Subject: [flexcoders] Flash Player 8 Public Beta


 In case you haven't heard the news, the Flash Player 8 Public Beta is
 available:

 http://www.macromedia.com/software/flashplayer/public_beta/

 I tested it with several Flex applications and already noticed about 30%
 less memory consumption and less CPU cooking compared to Flash Player
 7. Kudos to the Flash Player Team!

 Dirk.


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

 *  Visit your group flexcoders
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




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

* 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] Filesize generated swf's

2005-07-12 Thread Sjors Pals
Keep in mind that a lot of usability tests where written in a time that 
everybody used a 56k modem.
Nowadays people take 500k in less then 4 seconds from the web. Maybe its 
time to reconsider this 150kb limit.

Greets

Sjors


Joost Nuijten wrote:

 Hi,

 We are working on a Flex-based website. We've discovered that the 
 generated
 SWF's are at least 400Kb. This is too large. According to usability 
 rules a
 webpage should exceed 150Kb per page.

 We created an empty mxml-template (containing only a 
 mx:application-tag) and
 the filesize was still 263Kb. Does anybody have an idea how to reduce the
 filesize?

 One thing that will help is to remove all the @embed-codes and load images
 at runtime. But that's not enough to get the filesize down to 150Kb.

 Regards,
 Joost Nuijten





 --
 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
   http://groups.yahoo.com/group/flexcoders on the web.

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

 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




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

* 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] Gartner's Take on Rich Internet Applications

2005-07-08 Thread Sjors Pals
Its no hype, as far as i read its hard to implement and it uses there 
own runtimes.
I don't think this product is really suitable for internet apps, but 
more a replacement for traditional desktop applications.

Its funny that these kind of products are considered as RIA's since the 
only Internet thing about it that you run a plugin in a browser window :-\

I think this product might be a replacement for tradional Windows 
applications on the office, but no competitor in the real RIA market 
(flex,laszlo,backbase,etc)

I think its just a marketing strategy to call this product a RIA 
Software Platform, imho there is no place in the market for a product 
that uses there own runtimes in the browser, little bit same story as 
General Interface Objects and Facado.

Greets,

Sjors Pals






Tolulope Olonade wrote:

 Whats all the hype about NEXAWEB.?

 Has anybody seen solutions implemented using the tech?

 How does it stack against FLEX?

 Why did Gartner select over Flex?

 Can somebody shed more light ?

 

 *From:* Nexaweb Technologies, Inc. [mailto:[EMAIL PROTECTED]
 *Sent:* Thursday, July 07, 2005 7:24 PM
 *To:* Tolulope Olonade
 *Subject:* Gartner's Take on Rich Internet Applications

 You are receiving this invitation because you have shown interest in 
 Nexaweb products or technology.
 If you do not wish to receive future invitations to Nexaweb Webinars, 
 click here: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED].

 You’re invited to attend a Nexaweb Webinar featuring Gartner analyst 
 Mark Driver. The Webinar Title is: Gartner's Take on Rich Internet 
 Applications: Enterprise Case Studies Rich Internet Application (RIA) 
 technology has been identified as one of the major software trends for 
 2005. Register for this webcast to hear Gartner’s perspective on 
 current RIA dynamics and what you can expect from its evolution. Get 
 insight into which business and technical challenges RIA can solve and 
 the technical features that are critical to the success of RIA 
 solutions. This webcast will also feature real-world case studies that 
 highlight innovative enterprises that employ RIA technology. Register 
 today! You will: * Understand the key business benefits RIA currently 
 offers * Discover the critical features of a complete RIA solution * 
 Hear how Fortune 1000 companies are taking advantage of the strong 
 return on investment that RIA provides Speakers: Mark Driver is Vice 
 President and Research Director at Gartner, Scott Cranton is Director 
 of Product Strategy at Nexaweb Technologies, Inc.



 --
 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 
 http://groups.yahoo.com/gads?t=msk=Computer+software+testingw1=Computer+software+testingw2=Macromedia+flexw3=Developmentw4=Software+developerc=4s=93.sig=kh2CguJwmatU5oBXjFo9Rg
  
 http://groups.yahoo.com/gads?t=msk=Computer+software+testingw1=Computer+software+testingw2=Macromedia+flexw3=Developmentw4=Software+developerc=4s=93.sig=kh2CguJwmatU5oBXjFo9Rg
  
   Macromedia flex 
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Computer+software+testingw2=Macromedia+flexw3=Developmentw4=Software+developerc=4s=93.sig=dAUcEV7do91-wrRtVS641g
  
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Computer+software+testingw2=Macromedia+flexw3=Developmentw4=Software+developerc=4s=93.sig=dAUcEV7do91-wrRtVS641g
  
   Development 
 http://groups.yahoo.com/gads?t=msk=Developmentw1=Computer+software+testingw2=Macromedia+flexw3=Developmentw4=Software+developerc=4s=93.sig=AlxNUQBOI7Io7S7nhmxV0Q
  
 http://groups.yahoo.com/gads?t=msk=Developmentw1=Computer+software+testingw2=Macromedia+flexw3=Developmentw4=Software+developerc=4s=93.sig=AlxNUQBOI7Io7S7nhmxV0Q
  

 Software developer 
 http://groups.yahoo.com/gads?t=msk=Software+developerw1=Computer+software+testingw2=Macromedia+flexw3=Developmentw4=Software+developerc=4s=93.sig=QWIit8JayomoIHLVkV3FDg
  
 http://groups.yahoo.com/gads?t=msk=Software+developerw1=Computer+software+testingw2=Macromedia+flexw3=Developmentw4=Software+developerc=4s=93.sig=QWIit8JayomoIHLVkV3FDg
  



 
 YAHOO! GROUPS LINKS

 * Visit your group flexcoders
   http://groups.yahoo.com/group/flexcoders on the web.
 * To unsubscribe from this group, send an email to:
   [EMAIL PROTECTED]
   mailto:[EMAIL PROTECTED]
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.


 




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

Re: [flexcoders] Http Service -- urgent

2005-06-13 Thread Sjors Pals
 From the faq:

5. Guidelines to effective question-asking

Include a useful subject; this will help people find their own questions
and answers later.

Explain what you are trying to accomplish.

Explain the error (include compilation errors or a description of the
runtime behavior).

Be prepared to break your problem down into a simpler scenario in case
someone wants to try to debug the code themselves.  Remember, private
web services are inaccessible; you may need to create some dummy data to
emulate problems.

Phrases to avoid:

URGENT (we all have deadlines, no one is intentionally delaying a
response to you)

Please send code (this is very frustrating to read as it implies you
aren't interested in learning anything on your own.  Where code is
appropriate you can expect someone to provide it, but in many cases you
will learn more by doing it on your own with appropriate guidance.  It
may be that you're on a deadline and just want to finish, but many of
those who respond regularly would prefer to teach you to fish so that
you can answer your own questions next time and even help out others).


Greets,

Sjors


tony_lic wrote:

 Hi All,
   Can any one provide with an example coding or application for using
 a httpservice. I cannot find a suitable example in the view.
this is very urgent.
if i give a https url in the config file under the named service 
 when i run it i get a strange error.probably i think i'm not aware of
 using a httpservice as i'm a novice to flex.

 with kind regards,
 tony.



 
 *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]
   mailto:[EMAIL PROTECTED]

 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.





 
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] e-mail client sample Flex

2005-05-23 Thread Sjors Pals






Maybe you can use this one:
http://www.bindingpoint.com/service.aspx?skey=04e3710f-fda1-4f46-88b3-b6d977ddb449

I would test it with some sample mailadress and not with serious
business acounts ;)

Greets,

Sjors


Steven Webster wrote:

  
  
  Francesco,
  
  There is a sample email client
application in the book "Developing Rich Clients with Macromedia Flex"
  that works with a 3rd party
hotmail webservice; however, I know that there were problems recently
with
  the web-service, that the
web-service author explained to me (but I can't remember).
  
  Best,
  
  Steven
  
  
  
  
  --
  Steven Webster
Technical Director
  iteration::two
  
  
  This e-mail and any
associated attachments transmitted with it may contain confidential
information and must not be copied, or disclosed, or used by anyone
other than the intended recipient(s). If you are not the intended
recipient(s) please destroy this e-mail, and any copies of it,
immediately.

Please also note that while software systems have been used to try to
ensure that this e-mail has been swept for viruses, iteration::two do
not accept responsibility for any damage or loss caused in respect of
any viruses transmitted by the e-mail. Please ensure your own checks
are carried out before any attachments are opened.
  
  
  
  
  

 From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of Francesco
Sent: 23 May 2005 08:33
To: flexcoders@yahoogroups.com
Subject: [flexcoders] e-mail client sample Flex


hi,


I'm trying to create it, but i've some problem
and Hotmail and yahoo doesn't offer any WebService to check mail...

My problem is that when i select a leaf in the
tree on the left, i'd like that on the datagrid on the right will
appear a list of element.
i.e. when i choose inbox on the left on the
right will appear all the inbox-emails...

Perhaps i've to organize better the xml source (Outlook_dati_3.xml)...

Any suggestion?


Does anyone have a e-mail client
samplewith sources?
  











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 the Yahoo! Terms of Service.











Re: [flexcoders] Re: Flex as a Windows Service?

2005-05-20 Thread Sjors Pals
There is a small tool called firedeamon which makes it possible to run 
all programs as a service, i use it self to run some gameservers as 
service and it works very well.

Greets,

Sjors

Rich Butler wrote:

 We're running the standalone Flex install which has its own jrun4
 install...

 Rich

 --- In flexcoders@yahoogroups.com, Carson Hager
 [EMAIL PROTECTED] wrote:
  Flex itself isn't a server.  It's just a j2ee web application. 
 You're
  likely running tomcat. If so, you can definitely configure tomcat
 to run
  as a service.
  
  
  Carson
 
  
 
  Carson Hager
  Cynergy Systems, Inc.
  http://www.cynergysystems.com http://www.cynergysystems.com/ 
 
  Email:  [EMAIL PROTECTED]
  Office:  866-CYNERGY ext. 89
  Mobile: 1.703.489.6466
 
 
  
 
_ 
 
  From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On
  Behalf Of Richard Butler
  Sent: Friday, May 20, 2005 11:58 AM
  To: [flexcoders]
  Subject: [flexcoders] Flex as a Windows Service?
 
 
  Hi all,
 
  This may be a dumb question, so forgive me, but is it possible to
 run
  Flex as a Windows Service? The DOS window thing seems a nasty way
 of
  running it, or maybe that's just us...
 
  Cheers,
  Rich
 
 
  --
 
  Richard Butler.
  Monochrome.
  Upper Floor 164a Portsmouth Road Cobham Surrey KT11 1HS.
 
  Free: 08000 199 742
  Tel: +44 (0) 1932 862 874
  Fax: +44 (0) 1932 866 065
 
  www.monochrome.co.uk
 
 
 
_ 
 
  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]
  mailto:[EMAIL PROTECTED]
 subject=Unsubscribe
 
  *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
  Service http://docs.yahoo.com/info/terms/ .



 
 *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]
   mailto:[EMAIL PROTECTED]

 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.





 
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] Serious corruption in Flex-generated SWF

2005-05-17 Thread Sjors Pals
I got a similar problem a few months ago when i changed the width of a 
h-slider programmatically.
I did try everything but in the end i made 2 sliders with corresponding 
values and instead of resizing i did a show/hide trick.

Will try or i can setup a sample which reproduces it.

Greets,

Sjors



Tracy Spratt wrote:

Yes, actually, I get this behavior every week or so, and it is also with
an accordion container and standard VBox and HBoxes.  I don't have any
idea what causes it however.  For me, simply refreshing the app corrects
the problem so mine is a rendereing issue and not a compile issue.

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tim Blair
Sent: Tuesday, May 17, 2005 6:58 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Serious corruption in Flex-generated SWF

Morning all,

We're having severe issues with components within a Flex-generated SWF
being displayed corrupt.  The problem is that this doesn't happen all
the time, and I can't seem to find a reproducable method of forcing
the corruption.

Examples of the sort of thing we're seeing can be seen here:
http://kryten.rawnet.com/flex/flex-corrupt.html

All corruption occurs at the same time (i.e. when one thing goes, they
all go), but not all components are affected.  The problem only seems to
affect components displayed within an accordian, but again not all
contained components are effected.  If you look at example 1 on the page
above, the items under edit existing... are corrupt, whereas those
under the create new... heading are displayed fine.

Does anyone have any idea what's going on here?  Has anyone seen this
before?

Thanks,

Tim.

--
---
Badpen Tech - CF and web-tech: http://tech.badpen.com/
---
RAWNET LTD - independent digital media agency
We are big, we are funny and we are clever!
 New site launched at http://www.rawnet.com/
---
This message may contain information which is legally
privileged and/or confidential.  If you are not the
intended recipient, you are hereby notified that any
unauthorised disclosure, copying, distribution or use
of this information is strictly prohibited. Such
notification notwithstanding, any comments, opinions,
information or conclusions expressed in this message
are those of the originator, not of rawnet limited,
unless otherwise explicitly and independently indicated
by an authorised representative of rawnet limited.
---



Yahoo! Groups Links









*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]
  mailto:[EMAIL PROTECTED]
   
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
  http://docs.yahoo.com/info/terms/. 


  




 
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] Auto-complete

2005-05-11 Thread Sjors Pals






Well its not too hard if you just make a serverside script which
suggests the words, and then just parse it in flex, i did build a
google like sample in html:

http://www.ria-info.com/test.html


Regards,

Sjors

Steven Webster wrote:

 Has anyone implemented a flex-based solution for 
 auto-complete on a TextInput (think Google Suggest)? 
  
We blogged about something similar here:
  
  http://www.richinternetapps.com/archives/79.html
  
Best,
  
Steven
  
  











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 the Yahoo! Terms of Service.











Re: [flexcoders] My Company's Flex Site Live

2005-04-08 Thread Sjors Pals

I don't agree, a Negative reply has sometimes more information in it as 
someone who says: Hey Great site
I also think Flex is a little bit overkill for this site, even flash is 
overkill for this website.
As far as i can see flash is only used for some roleovers and navigation 
issues, where javascript could have done the job.

Can i ask the Poster why Flex was used for this website?
And was Flex chosen before the concept of this site was made?

Greets,

Sjors


Simon Fifield wrote:

 Hi Flexcoders,
  
 I think that its great that James has posted a link to his Flex site. 
 I also think that some of the negative comments and feedback about the 
 site are just going to put off other people from posting links to 
 their sites here.
  
 How about posting some POSITIVE feedback to James and help the 
 collective encouragement here.
  
 I think everyone responds much better to POSITIVE than negative - eh?
  
 Simon
  
  

 -Original Message-
 *From:* James Ward [mailto:[EMAIL PROTECTED]
 *Sent:* 08 April 2005 01:14
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] My Company's Flex Site Live

 I want to thank everyone on this list for all the help over the
 past few
 months!  Just minutes ago we launched our all Flex site:

 http://www.pillardata.com

 Flex is beautiful and this community makes it even better!  Thank you
 all!

 -James



 
 *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]
   mailto:[EMAIL PROTECTED]

 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.





 
Yahoo! Groups Links

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

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

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





Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Sjors Pals

4CPU? Why on earth would someone like to use that on precompiled stuff?

Regards,

Sjors Pals


Michel Jansen wrote:

 Matt Horn wrote:

  An old dutch saying : Prices can only go down...  Laszo/BackBase
  time??
 
  Was this before or after the tulip craze? :)

 You can make a joke off this but i think that raising the price for your
 licenses more than 100% is not the smartest thing to do!  It can be
 actually cheaper for the 4 CPU License with Gold Support but i am
 loosing a customer here ;-((

 Good luck...

 Michel

 
  matt
 
  *Yahoo! Groups Sponsor*
  ADVERTISEMENT
  click here
  
 http://us.ard.yahoo.com/SIG=129fbir5d/M=298184.6018725.7038619.3001176/D=groups/S=1705007207:HM/EXP=1112363230/A=2593423/R=0/SIG=11el9gslf/*http://www.netflix.com/Default?mqso=60190075
  

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

 mailto:[EMAIL PROTECTED]

  * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service http://docs.yahoo.com/info/terms/.
 
 


 *Yahoo! Groups Sponsor*
 ADVERTISEMENT
 click here 
 http://us.ard.yahoo.com/SIG=129g81obs/M=298184.6018725.7038619.3001176/D=groups/S=1705007207:HM/EXP=1112363780/A=2593423/R=0/SIG=11el9gslf/*http://www.netflix.com/Default?mqso=60190075
  



 
 *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]
   mailto:[EMAIL PROTECTED]

 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
   Service http://docs.yahoo.com/info/terms/.





 
Yahoo! Groups Links

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

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

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





Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Sjors Pals

Well i think that when MM keeps their technology for their selves that 
the chance is big that someone takes legal action.
And there is an other danger, if MM keeps the Cards for their selves the 
chance is big, someone else says: lets make our own cards and spread 
them for free.




Jeff Steiner wrote:

 My guess is that you will be back.

 Lazslo, while the samples look great, is still based upon Flash player 5
 (Beta 3 of Lazslo is player 6).  It is one of those things where you 
 have to
 wonder - how does Lazslo know what to extend of the Flash Player.  The
 people that are contributing to it make guesses and try to extend the
 capabilities as far as they can, but they are still limited in their
 knowledge.  I have never seen an API to the Flash player made readily
 available to the public.  Also - as the Flash Player gets more complicated
 it will become more difficult to code hooks into the player to give
 developers the same functionality that is provided by Flex, and 
 Breeze, and
 Flash, 

 This really goes for all the competing technologies out there that are 
 doing
 their best to output as a swf.  MM is doing something right - they 
 hold all
 the cards to the most widely accepted piece of downloaded content on the
 web.  My guess is that they still have a few aces up their sleeves and 
 that
 they will always be the power to beat (as long as the continue to devote
 their company's future to flash).

 I am also guessing that MM was prepared for this backlash - but as future
 iterations come out, and they show more and more of the fun stuff that 
 they
 want to give us non-flash developers the ability to extend, Everyone that
 decided ~now to give Laszlo, et. al., a look will come back to the Flex
 world to see what they missed.

 Jeff
 http://www.flexauthority.com



 - Original Message -
 From: [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, March 31, 2005 7:15 AM
 Subject: RE: [flexcoders] Flex 1.5 price


  We've seen a fair number of people prototyping with Flex but few 
 deploying
 'real' applications. The price increases and limitations e.g.
 Internationalization will likely make prototyping the only thing we 
 ever do
 with Flex even though we have purchased it.
 
  Frankly, we are considering contributing time/effort to Laszlo.
 
  -- Original message --
 
  Surely the fact the price is going up means that it is not selling well
 (and possibly the whole RIA scene is not as widespread as you are led to
 believe).  If Flex was booming the costs would come down allowing more 
 users
 to adopt and Flex to continue to thrive.
 
  I would be interested to see how many people actually have purchased 
 Flex
 and are using it with Gusto - I bet it is not as widespread as it's 
 made out
 to be.
 
 
 
 
 
 
 
 
  From: Valy Sivec [mailto:[EMAIL PROTECTED]
  Sent: 31 March 2005 15:33
  To: flexcoders@yahoogroups.com
  Subject: RE: [flexcoders] Flex 1.5 price
 
  Lucian,
 
  4 CPUs and Gold Support for $29,000. That's actually cheaper
  than Flex was in the past for 4 CPUs + Gold Support.
 
  It's like going to the car dealer ship and the guy tells me that the 
 Lexus
 SUV is the only new base model...but don't worry...that it's still cheaper
 than buying 2 Lexus Sedans... lol!
 
  Finally, for software vendors who want to embed Flex in their
 applications, we have special pricing built around your requirements and
 your market. However, and this is important, where you see value in 
 Flex, we
 are interested in working with you to design the right packaging for your
 needs. If you are interested in using Flex on a real project, let us 
 know so
 we can work with you and find the right packaging/pricing to fit your 
 needs.
 
  It's clear for me that MM have this price for the big fishs... Small 
 fishs
 like many of us needs to negociate with the sales contact and see how much
 might cost... I'm affraid that can't beat 12k/2 CPUs... that was still
 considered expensive by many potential users...
 
  I'm sure that soon the RIA - market will cool off a bit and MM will come
 back with special discounts, etc.
 
  Regards,
  Valy
 
  Lucian Beebe [EMAIL PROTECTED] wrote:
  We wanted to make a package that applies to many people for their first
 Flex
  application or for several smallish Flex applications. When things 
 get big
  or industrial strength, more than four is required. But this should 
 apply
 to
  the small and medium business and be good for those proof of concept
  projects.
 
  Lucian
 
  -Original Message-
  From: Sjors Pals [mailto:[EMAIL PROTECTED]
  Sent: Thursday, March 31, 2005 6:18 AM
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] Flex 1.5 price
 
 
  4CPU? Why on earth would someone like to use that on precompiled stuff?
 
  Regards,
 
  Sjors Pals
 
 
  Michel Jansen wrote:
 
   Matt Horn wrote:
  
An old dutch saying : Prices can only go down...  Laszo/BackBase
time

Re: [flexcoders] Flex 1.5 price

2005-03-29 Thread Sjors Pals

Wrong calculation ;) Its even worse in Euros 9.302 is the equivalent of  
$12.000.
Sorry..

Sjors Pals



Sjors Pals wrote:

I dont know or its mentioned, but when i read the website it says:

$12,000 USD or 14,400 

Isn't that strange? One Euro is $1,29

So the price should be something like : 11,162
Has this something to do with export taxes or something?

Regards,

Sjors Pals

Robert Stuttaford wrote:

  

url?

-Original Message-
From: christoph larch [mailto:[EMAIL PROTECTED]
Sent: 29 March 2005 01:25 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex 1.5 price




hi there,

latest news from macromedia sales directly :
on 1st april the price will rise.
eur 15K / CPU
but there will be a 4 CPU license for round about eur 28K
both packages contain 5 flex builder licenses...




Yahoo! Groups Links








*Yahoo! Groups Sponsor*
ADVERTISEMENT
click here 
http://us.ard.yahoo.com/SIG=129huq3hv/M=298184.6191685.7192823.3001176/D=groups/S=1705007207:HM/EXP=1112103135/A=2593423/R=0/SIG=11el9gslf/*http://www.netflix.com/Default?mqso=60190075
 




*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]
  mailto:[EMAIL PROTECTED]
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
  Service http://docs.yahoo.com/info/terms/.







 
Yahoo! Groups Links



 





  




 
Yahoo! Groups Links

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

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

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





Re: [flexcoders] Flex concerns

2005-03-04 Thread Sjors Pals
This is not true, Google is able to parse Flash files, but the results 
are offcourse not as good as for normal html.
An alternative is to cloack spiders, and redirect them to plain 
content pages.

Sjors
Manish Jethani wrote:
Shell Bryson wrote:
 So far I've discovered; search engines ignore Flex apps.
Thankfully! Search engines can't tell the difference between a webpage
with *content* (like a news article, a website with food recipes, etc.)
and a web application, and they end up indexing the application
contents (like all the labels and stuff?). Why would a search engine
want to index a Flex app? What's there in a Flex app for a search
engine to know about?
My understanding is that Flex is for *applications* while HTML/CSS is
for *content*. If you use one for the other, you have trouble.
Manish
*Yahoo! Groups Sponsor*
ADVERTISEMENT
click here 
http://us.ard.yahoo.com/SIG=129r4jpht/M=298184.6018725.7038619.3001176/D=groups/S=1705007207:HM/EXP=1110052245/A=2593423/R=0/SIG=11el9gslf/*http://www.netflix.com/Default?mqso=60190075 


*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]
mailto:[EMAIL PROTECTED]
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service http://docs.yahoo.com/info/terms/.





Re: [flexcoders] Re: Newbie - Where do I start?

2005-02-19 Thread Sjors Pals
Commercial spam ;)
Greets
Sjors
Steven Webster wrote:
Hi Jeff,
 This was the book I was looking at, but I was not sure since
 it seemed to be written for Flex 1.0. Is this still
 applicable for Flex 1.5?
I'm one of the two authors of the book ... 99% of the book
is relevant to Flex 1.5; there is an excellent document on
devnet about the differences to 1.5, but very few of the
differences are language differences, so the book will get
you most of the way there I would hope.
If you have any questions on any of the 1.5 specific features
in Flex (such as Runtime Shared Libraries, percentage based
width, etc) then don't hesitate to ask on this forum, and we
can provide you the answers.
But I'm confident the book will be of value to you -- I still
use it most days :-)
Best,
Steven
--
Steven Webster
Technical Director
iteration::two
This e-mail and any associated attachments transmitted with it may contain
confidential information and must not be copied, or disclosed, or used by
anyone other than the intended recipient(s). If you are not the intended
recipient(s) please destroy this e-mail, and any copies of it, 
immediately.

Please also note that while software systems have been used to try to 
ensure
that this e-mail has been swept for viruses, iteration::two do not accept
responsibility for any damage or loss caused in respect of any viruses
transmitted by the e-mail. Please ensure your own checks are carried out
before any attachments are opened.

*Yahoo! Groups Sponsor*
http://us.ard.yahoo.com/SIG=129hukurr/M=324658.6070095.7083352.3001176/D=groups/S=1705007207:HM/EXP=1108916094/A=2343726/R=0/SIG=12iul7514/*http://clk.atdmt.com/VON/go/yhxxxvon01900091von/direct/01/time=1108829694832411 

Get unlimited calls to
U.S./Canada
http://us.ard.yahoo.com/SIG=129hukurr/M=324658.6070095.7083352.3001176/D=groups/S=1705007207:HM/EXP=1108916094/A=2343726/R=1/SIG=12iul7514/*http://clk.atdmt.com/VON/go/yhxxxvon01900091von/direct/01/time=1108829694832411 


*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]
mailto:[EMAIL PROTECTED]
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service http://docs.yahoo.com/info/terms/.





Problem when changing size of hslider

2005-02-09 Thread Sjors Pals
I have a small problem. When i dynamically change the size of a HSlider 
i noticed that something goes wrong with rendering.
The low active part of the slider does resize, but the thumbs stay on 
the same position.
When i move the right tumb to left, and then back again, the screen is 
updated correctly.

Is this a bug in the flash player, or am i doing something wrong?
Greets,
Sjors Pals
inline: image/jpeg

How to catch Clickevent in CustomCellrenderer of a datagrid?

2005-01-31 Thread Sjors Pals








I have a Custom Cellrenderer, the Cell only contains a
image. How can I catch the Click Event and whats the best way to determine
which cell was clicked?



This is my current code:



mx:VBox xmlns:mx=http://www.macromedia.com/2003/mxml


 mx:Image id=waartekoop
source=@Embed('waar_te_koop.gif')

width=13

height=13


/ 

/mx:VBox



Greets,



Sjors Pals