Re: [flexcoders] Re: How to create a n * n grid dynamically (not datagrid)

2008-06-18 Thread Josh McDonald
I assume they're just like any other component. Instantiate them, set
whatever fields you need, and call addChild(newComponent) on the container
to which you want to add them.

Put a Grid somewhere, put GridRows in your grid, GridItems in your GridRows,
and your components into your GridItems. GridItem is a HBox though so if you
want something else (like a Canvas or a VBox or whatever), add that as a
child to your GridItem and put other components in there as you normally
would.

-Josh

On Wed, Jun 18, 2008 at 3:27 PM, pbrendanc [EMAIL PROTECTED] wrote:

 --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote:
 
  Look into Grid, GridRow, etc. These can be created at run-time. But
  depending on what you're actually trying to do, you may be better suited
  with the Tile component.
 
  -Josh
 

 Can you be a bit more specific - I understand grid row etc - However I
 need the calling syntax/example code to create and position the
 controls dynamically - any offers?

 TIA


 

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






-- 
Therefore, send not to know For whom the bell tolls. It tolls for thee.

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]


Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Paul Andrews
Reading the arguments about this subject is pretty confusing.

One reason for splitting the list is so that more people will use flex 
related lists.
Another reason for splitting the lists is that there are too many posts in 
one list.
The list is apparently stagnating (!) so the splitting strategy is intended 
to revive it's fortunes even though the list has a huge number of postings 
that aren't appreciably dropping off.

In my experience flexcoders has to be the most successful list that I know.

Some are focussing on the posting stats for the list as some indicator of 
the health of the flex community. I think we should also look at external 
factors with that regard. For example, when this list was first started flex 
information wasn't so easy to come by so it was always going to be the place 
to come (once you found out about it). These days flex info is everywhere - 
magazines/books/vide/online - so it's not so neccessary to automatically 
jump to flexcoders for help. Secondly, a lot of flexcoders members are now 
rather better than they were with flex so may not need to post so often. 
Lastly flexcoders are busy people so flexcoders may not be their daily 
priority in the way it used to be. The flex world has changed.

So I think that there are a lot of things to consider. Until it was 
suggested in this thread that flexcoders was stagnant/draining members/too 
busy I had no idea there was a problem. Perhaps there isn't.

One phenomenom that seems to be growing is that of obscure please for help 
where the subject and post content is poor. I think the FAQ would help.

Anyway, I'm not convinced there's a need for panic or overly fast decisions.

Is it just that the flex world is maturing?

Paul
 



[flexcoders] Re: Infinity value in Datagrid

2008-06-18 Thread shrike6_7
I use object because with e4x I have problem with the checkbox into
the grid e some others things, with the object format don't exists a
workaround?

Thanks

--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote:

 You may need to use resultFormat e4x and do your own parsing
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of shrike6_7
 Sent: Tuesday, June 17, 2008 7:08 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Infinity value in Datagrid
 
  
 
 Hi, I have a Datagrid with dataProvider={productList}, productList
 is an ArrayCollection, when I get the records from the server in XML
 format I have a string 8e4376, but the DataGrid show me 'Infinity'. 
 How can I tell to the grid that 8e4376 is a string?
 
 this is the code of the httpservice:
 
 public var gateway_object:HTTPService = new HTTPService();
 gateway_object.url = URL_XYZ;
 gateway_object.method = POST;
 gateway_object.resultFormat = object;
 
 var resultObj:Object = event.result;
 productList = resultObj.list.product;
 
 Thanks





Re: [flexcoders] how to change to dot of line chart datatip

2008-06-18 Thread Mario Van den Eynde
You can use the following code

setStyle(itemRenderer, new ClassFactory(components.icoontje)); 

where components.icoontje is just an image of a small custom made dot image...




- Original Message 
From: coder3 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, June 18, 2008 1:21:16 AM
Subject: [flexcoders] how to change to dot of line chart datatip



Hi,

I made a line chart, with showDataTips= true, so it has a datatip with a
dot to show the position on the chart. by default, the dot is a light color
dot with a circle, but i would like to make the color darker, and remove the
circle if possible, like the dots in google finance,
http://finance. google.com/ finance?q= goog. i am not sure how to do it. help!

thanks

C.
-- 
View this message in context: http://www.nabble. com/how-to- change-to- 
dot-of-line- chart-datatip- tp17956721p17956 721.html
Sent from the FlexCoders mailing list archive at Nabble.com.




  

[flexcoders] Re: Combobox, not be able to update mysql on second time.

2008-06-18 Thread nash.e2008
oops.

Im sorry, somehow it works for me as well

I have no idea why it works fine now

anywayz thank you so much!



[flexcoders] UPDATE SQL using FLEX

2008-06-18 Thread nash.e2008
Hi All

Im havin trouble usin flex.
What Im tryin to do is just update mySql using flex.

This must be easy but not for me...
if you guys are havin time to waste for me, plz help me out here.

here is my code:


?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; 
layout=absolute

mx:HTTPService id=update_password result=Alert() 
showBusyCursor=true method=POST 
url=http://localhost/xampp/rh.php; useProxy=false
mx:request xmlns=
username
{username.text}
/username
password
{password.text}
/password
/mx:request
/mx:HTTPService

mx:Label x=10 y=10 text=Username: id=label1/
mx:TextInput x=10 y=36 id=username/
mx:Label x=10 y=66 text=Password: id=label2/
mx:TextInput x=10 y=92 id=password/
mx:Button x=10 y=122 label=Submit id=Submit 
click=update_password.send();/

/mx:Panel

/mx:Application


PHP CODE
?php
$con = mysqli_connect(localhost, root, , operationdb1);
mysqli_query($con,set names 'utf8');

$username = mysql_real_escape_string($_POST[username]);
$password = mysql_real_escape_string($_POST[password]);

$Query = UPDATE users SET password = '$password' WHERE username 
= '$username';

$Result = mysqli_query($con, $Query );
?





Re: [flexcoders] Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Joseph Balderson
I use Thunderbird for my Inbox management, don't know what I'd do 
without it, to be perfectly honest. I set up filter rules for every list 
I subscribe to, which looks for [flexcoders] in the subject for 
example, and automatically routes emails to the appropriate folder.

If I want to flag a particular post as reference or to look into or 
to reply or whatever, I have colour-coded tags which all have 0-9 
hotkeys, and with a single click that post is tagged. I don't bother 
deleting anything, cause I don't have to, which means it's all available 
as a reference if I need it. In fact I have filters that sort emails 
from newsletters, vendors, clients, colleagues, family, everything, and 
whatever the filter doesn't know what to do with goes into my Inbox. I 
get hundreds of emails a day, dozens not counting newsletters and lists. 
My Inbox gets maybe one or two a day.

Initially you might spend a lot of time establishing filters, but after 
a time it manages itself, like training a spam algorithm. It also means 
that after seven years of list subscriptions my email folder is huge 
(3.7 GB), but the upside outweighs the downside. I'm not a big fan of 
online email services anyways.

___

Joseph Balderson, Flash Platform Developer | http://joeflash.ca


Anatole Tartakovsky wrote:
 Josh,
It is definitely up to flexcoders as a group to make these decision - 
 not me for sure.
I did suggest separate group on best practices and I do not think 
 you can separate UI best practices in Front-end tool - but I might 
 assume much.
 
 Enterprise in Flex is reasonably well defined - anything that is based 
 on commercial LCDS + typical tasks for enterprises - portals 
 integration, large team management, scalability, and whatever else. 
 Basically people usually know if they are working in enterprise and 
 would use their judgement.
 
 The same goes for 101  - people often know if they are within the first 
 6 month. 101 presumes that there is FAQ thread somewhere, and hopefully 
 WiKi with repeated questions. It also gives Adobe better idea what new 
 developers have problem with and they can make product more intuitive 
 for new developers.
 
 As far as scaring people - my post clearly states that at this point new 
 developers scare experienced ones instead of letting people work 
 together. With smaller groups it is possible to get moderators. Take a 
 look at weborb, every message you send gets to developers blackberry, 
 but quite a few are answered by experienced developers that are in that 
 group for quite some time. With smaller groups and defined target 
 audience you can provide better targeted answers that would suite that 
 community better.
 
 As far as better inbox management - I would love to hear about something 
 that works - but I have not seen anything that would do 10 way split for me.
 
 Sincerely
 Anatole Tartakovsky
 Farata Systems
 
 
 On Mon, Jun 16, 2008 at 9:25 PM, Josh McDonald [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:
 
 Define enterprise without resorting to some variation of mo' bettah
 
 What about best practices in Flex UI coding? Where do those posts go?
 
 And who decides what posts go in the advanced lists, and what go
 in the 101 list? Sounds like an invitation for grumpy nerds to
 flame noobs and scare them away from the community...
 
 I'm not suggesting we don't split the list at all, just that we put
 some serious thought into it first. Definitions of what belongs in
 what group, and a lot of publicly available information to help
 people locate the best list for their question. Maybe have some sort
 of community vote or something; we don't want to fracture the
 community, there's not *that* many of us yet.
 
 Personally I think the problems are at the moment best solved by
 clever inbox management.
 
 -Josh
 
 
 
 On Tue, Jun 17, 2008 at 11:10 AM, Anatole Tartakovsky
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
 Dear All,
 
 
Flexcoders has huge problem. In the last 15 month it is very
 much stagnant in terms of message count and participation. It is
 not growing and dropping members as fast as it gets them.
 
I believe this group has overgrown the optimal size about a
 year ago and needs to be divided in more focused smaller groups.
 My mail box get 100+ messages a day on all kinds of topic -
 unless I can spend 30+ minutes that day to sort them out it goes
 directly into garbage can. Most people in the
 company unsubscribed from it 18 month ago. Most of veteran
 developers I know either unsubscribed or stopped looking in this
 mess greatly diminishing the quality of the responses. As a
 result group mostly host new developers and looses most of
 experienced ones after very short period of time. 
 
  

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Tom Chiverton
On Tuesday 17 Jun 2008, Anatole Tartakovsky wrote:
 go to the group page. Also, the number of users if I remember it correctly
 has been in 9K for at least 6 month - meaning you have the same number of

So, we've reached a core of people who stay/help out - and some number of 
people on top of that that are basically 'churn'. Static member numbers does 
not imply a static group.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Tom Chiverton
On Wednesday 18 Jun 2008, Anatole Tartakovsky wrote:
 Stagnant is definetly not good for developing technology. It is also
 unlikely to be all good. Flexcoders increased 30% in 9 month ( from 7,500
 to 9965) since August of 2007. The number of messages  for the first 5
 month increased approx 5% from the year before 

So huge growth when people switched on to Flex (around about when it stopped 
being stupidly expensive), then less ? 
Seems resonable, and nothing to do with traffic volume, which as others have 
said has been static.


-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Tom Chiverton
On Tuesday 17 Jun 2008, Matt Chotin wrote:
 Hey folks, let's calm down a little here, K?

Aye.

 1) Let's get an FAQ going that can be edited by moderators or members of
 the community.  

This would be a huge bonus, esp. given #3.

 Center.  But for now how about we just allocate a page off of the
 opensource wiki.  We can pick some moderators who can edit the page and I
 will get them added so they can take care of it.  

Happy to be added, drop me a note if you are not aware of my adobe.com ID 
(it's not @halliwells).

 2) Some folks suggested that you either mark in the body or in the subject
 something that indicates what you're talking about.  Seems reasonable. 
...
 involved in the thread.  The more people follow this convention, the more
 efficient it will become.

I would say that trying to tag the subject line is probably a good idea to try 
and encourage - new users should pick it up if they stay, and it'll help 
the 'old hands' too. 
I wouldn't suggest rejecting posts that lack a tag or anything though, before 
anyone suggests that, and I'd not want the FAQ to try and define a definitive 
list either - just see what people use.

 3) We can get aggressive on the moderation.  Rather than just scanning for
 spam, moderators can actually look at the posts by new users and decide if
 they meet the general criteria for asking a question.  If they don't, the
 moderator can reject the post and point the user to the forum FAQ which has
 posting guidelines.

If the group agrees that we want to try and reduce first-post on-topic but 
pointless messages, *and the FAQ is updated* I'd have no qualms about 
pressing that big 'reject' button and sending the user a nice link.
Maybe the group/Adobe could agree a boilerplate response.

 4) We can update the flexcoders FAQ (which is actually linked at the bottom
 of every single post) to include the updated posting guidelines and remove
 the common questions section so that the forum FAQ is only about forum
 etiquette and the coding FAQ is about the actual problems.

This is good separation.
CookBook if it merits an article to itself, FAQ on .adobe.com if it's a 
few lines of code or non-code, and FAQ on Yahoo for using the group itself.

 If we're all on board, send those moderators to me and we can get things
 set up. And folks can start following the tagging convention instantly in
 the meantime.

Again, assuming the group is OK with harsher(?) moderation, I'm happy to start 
doing it as soon as the editable FAQ is up. 
In the past I've occasionally made a post on my blog in answer to a question, 
and then pointed the thread there, and I've certainly seen others doing the 
same thing - if the group was really keen to do better(?) first-post 
moderation and didn't want to wait for the FAQ changes.

-- 
Tom Chiverton, moderator



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Tom Chiverton
On Tuesday 17 Jun 2008, Anatole Tartakovsky wrote:
 Multiple lists enforce thinking if it is appropriate before posting.

Maybe. But if there are too many they'll just post to them all.

 Moderators can ban/redirect unappropriate message. Flexcomponents often
 redirect new users to flexcoders if the question is not about components.
 You almost never see questions on UI design in weborb.

See what I and Matt said - I think we're on the same page here.

 All in all - let us have the simplest thing possible - multiple list - w

How is 1 list simpler than 1 list ?

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Tom Chiverton
On Wednesday 18 Jun 2008, Doug McCune wrote:
 Out of morbid curiosity, am I the only one who has multiple email
 lists all being filtered into the same mega-list? 

Nope. 
Kontact (well, Kmail) grabs all my Flex mailing list traffic into one folder. 
It could tag/color it if I wanted, but often it doesn't matter to me what 
list a post is on.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Tom Chiverton
On Wednesday 18 Jun 2008, Josh McDonald wrote:
 That's a really useful thing, why isn't it pimped here more often? I've
 been here 10 months, and I'd never heard of it before that Brazilian fellow
 (sorry I forgot your name dude) mentioned it in the original thread earlier
 today...

I *think* it's in 'soft launch' and will get a 'hard launch' later.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

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

2008-06-18 Thread Parkash
Hello all iam creating a new Flex Application and i have to make this 
application , modular .
can you tell me do i need to write seprate Applcation per module i will be 
using caringorm.

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Jeffry Houser


I do the same exact thing; except no color coding.  Not sure if 
Thunderbird does that. ;)


Multiple lists [which I think is a bad idea] to me just means more 
cross posts. 


Doug McCune wrote:


Out of morbid curiosity, am I the only one who has multiple email
lists all being filtered into the same mega-list? I have flexcoders,
flexcomponents, apollocoders, papervision, degrafa, flexlib, and
flexjobs all dropped into a mondo folder in gmail. I color code each
list accordingly so I can at a glance see which list a message is
from, but typically I read them all in the master list. Nobody else
does this? Somehow I can stay on top of it all, although I'm sure you
could argue that at times it's certainly not helping my productivity
:)

Doug

On Tue, Jun 17, 2008 at 9:17 PM, Bjorn Schultheiss
[EMAIL PROTECTED] mailto:bjorn.mailinglists%40gmail.com 
wrote:

 cool.

 This discussion needs some resolving though.

 I'm all for the creation of another 15 lists.
 With all the cross-posting, subject-meta, gmail, stats,
 my-left-arm-is-longer-than-my-right arguments, my vote is still with
 the split.

 best-practices, architecture, components, unit-testing, deployment,
 flash-flex, remote services, java-flex architectures, design ux,
 announcements, etc..

 lets do it.

 --- In flexcoders@yahoogroups.com 
mailto:flexcoders%40yahoogroups.com, Daniel Freiman 
[EMAIL PROTECTED] wrote:


 I think of Best Practices and Architecture/Concepts as separate but
 overlapping categories so I guess that's why I thought no one else
 brought
 it up.

 On Tue, Jun 17, 2008 at 11:57 PM, Bjorn Schultheiss 
 [EMAIL PROTECTED] wrote:

   Also, to Bjorn, that's a point I hadn't thought of. The idea of
  having an
   arch/concepts list might be interesting. The two questions I
 would have
   would be: 1) would the questions on this list have any 
connection to

  Flex
 
  Anatole mentioned it earlier in a 'Best Practices' list.
 
  For example at MAX thy had that Best Practices panel and some
  interesting topics were brought up and discussed.
 
  From my point of view I'm always learning.
  It would be an interesting read for me.
 
 
  --- In flexcoders@yahoogroups.com 
mailto:flexcoders%40yahoogroups.com flexcoders%40yahoogroups.com,

 Daniel
  Freiman FreimanCQ@ wrote:
  
   I agree that a FAQ seems like a good idea no matter what. Is anyone
  against
   this idea independent of the argument of whether or not to 
split the

  list?
  
   As far as splitting lists, I still think if people want to propose
  potential
   new lists, they need to be much more explicit about what the list
  will be
   for. I'll take the enterprise example. Let's assume for a second
  it has
   only one correct meaning (which is an assumption I agree with,
 but many
   people disagree with me on that). Enterprise has become a
  buzzword with
   many different commonly understood meanings, and most of those
  meanings are
   vague. There's no way for everyone on the list to be sure that 
we're

   talking about the same thing unless someone explicitly spells out
  what we
   are talking about (I'm not going to because I'm against having a
   enterprise list given every way I know to interpret the word).
  And if we
   don't have a common understanding of the proposal we can't
 efficiently
   criticize/support/amend the proposal. I'm not saying there has to
  be a fine
   line separating the lists, but it should at least be a fuzzy line.
  
   Also, to Bjorn, that's a point I hadn't thought of. The idea of
  having an
   arch/concepts list might be interesting. The two questions I
 would have
   would be: 1) would the questions on this list have any 
connection to

  Flex
   other than the fact that the users code in Flex (I think it 
probably

  would)
   or would it just be piggybacking on the user base; 2) Will it avoid
   stratification of the user base (i.e. will it be practically
  accessible to
   users of all skill levels)?
  
   Lastly, I'm going to reiterate my opinion that we shouldn't
 separate the
   lists based on skill/level difficulty. The distinction is too fuzzy
  (Too
   much cross-posting and too much posting to the wrong list).
  Sometimes you
   don't know if you're question is advanced or not until you get the
  answer.
   I've had a few times where I've asked what I thought was a simple
  question
   and the response from Gordon was I talked to a guy on the player
  team...
   If a question has a one line answer it can't be complex...unless
 the one
   line required going through the player or compiler code to
 understand it
   (sorry for the overstatement).
  
   - Daniel Freiman
  
   On Tue, Jun 17, 2008 at 10:31 PM, Douglas Knudsen douglasknudsen@
 
   wrote:
  
Having been on this list since 2004, yeah back when the Iteration
folks were not Adobe Robe Wearers yet, I've seen this
 discussion come
up a few times. I've asked for a associated FAQ a few times, but
there was no interest from the Iteration folks on this 

Re: [flexcoders] UPDATE SQL using FLEX

2008-06-18 Thread Tom Chiverton
On Wednesday 18 Jun 2008, nash.e2008 wrote:
 What Im tryin to do is just update mySql using flex.
 here is my code:

You forgot to include your error.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread b_alen
Can you do folders in gmail? I thought only labels are there and you
still see all the emails in your inbox, even if you don't want to.
These lists are killing me and I had to make the emails coming in
digests, and that's how I miss on all the fun. 




--- In flexcoders@yahoogroups.com, Jeffry Houser [EMAIL PROTECTED] wrote:

 
  I do the same exact thing; except no color coding.  Not sure if 
 Thunderbird does that. ;)
 
  Multiple lists [which I think is a bad idea] to me just means more 
 cross posts. 
 
 Doug McCune wrote:
 
  Out of morbid curiosity, am I the only one who has multiple email
  lists all being filtered into the same mega-list? I have flexcoders,
  flexcomponents, apollocoders, papervision, degrafa, flexlib, and
  flexjobs all dropped into a mondo folder in gmail. I color code each
  list accordingly so I can at a glance see which list a message is
  from, but typically I read them all in the master list. Nobody else
  does this? Somehow I can stay on top of it all, although I'm sure you
  could argue that at times it's certainly not helping my productivity
  :)
 
  Doug
 



Re: [flexcoders] Module Question

2008-06-18 Thread Tom Chiverton
On Wednesday 18 Jun 2008, Parkash wrote:
 Hello all iam creating a new Flex Application and i have to make this
 application , modular . can you tell me do i need to write seprate
 Applcation per module 

http://community.adobe.com/ion/search.html?q=modulex=0y=0lbl=flex_product_adobelr

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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: xxxxxx

2008-06-18 Thread Tom Chiverton
 someone can block this user? Probally just went into some vacation and
 set an auto-answer for received emails =(

One of the other mods already set him to This member's posts are always 
moderated but I thought I'd just let you know it's been done.

-- 
Tom Chiverton, moderator



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] Spell Check, Google API replacement...

2008-06-18 Thread Tom Chiverton
On Tuesday 17 Jun 2008, aceoohay wrote:
 There are open source spell check backends such as aspell and ispell.
 There are open source flex front ends that use the Google API. Has
 anyone written a Google API replacement for one of the spell check
 backends?

I just changed the CFML backend I saw in an example to call [a|i]spell and 
format the results into the same XML packet.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Tom Chiverton
On Wednesday 18 Jun 2008, b_alen wrote:
 Can you do folders in gmail? I thought only labels are there and you
 still see all the emails in your inbox, even if you don't want to.

Configure a filter to 'skip inbox' when it matches. I guess you already have a 
filter if you say you label them.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] php plugin with flexbuilder

2008-06-18 Thread Tom Chiverton
On Tuesday 17 Jun 2008, dnk wrote:
 rather flex builder standalone with a php plugin

FB standalone *is* Eclipse, minus some of the more common plugins. 
Any Eclipse plugin should install, though you may have to put in it's 
dependencies by hand.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Paul Hastings
Jeffry Houser wrote:
  I do the same exact thing; except no color coding.  Not sure if 
 Thunderbird does that. ;)

yeah tbird's tags are color-coded and can be part of your message filters.

frankly i don't think it matters if the list is split or not as long as i'm 
able 
to mash it up into the info feed i want/need. though i'm naturally against 
having to manage more lists via yahoo, their lists engine simply hates me ;-)




[flexcoders] Default sorting direction in AdvancedDataGrid

2008-06-18 Thread kallebertell
Is there any way to affect the default sorting direction in an
AdvancedDataGrid? 
With this I mean the direction of the sort when you the first time
click the column header.

sortDescending in AdvancedDataGridColumn doesn't seem to affect it at
least. 

Thanks.



Re: [flexcoders] php plugin with flexbuilder

2008-06-18 Thread Michael Schmalle
Hi,

I am using PDT, JDT, Subclipse, JSEclipse, Plugin-dev tools.

All of this is running in Flex Builder standalone fine.

Note, there are bugs in the php dev, but it has mainly to do with code
formating. My work flow in php has increased 100% using the dev tool for it.

Mike

On Wed, Jun 18, 2008 at 7:39 AM, Tom Chiverton [EMAIL PROTECTED]
wrote:

 On Tuesday 17 Jun 2008, dnk wrote:
  rather flex builder standalone with a php plugin

 FB standalone *is* Eclipse, minus some of the more common plugins.
 Any Eclipse plugin should install, though you may have to put in it's
 dependencies by hand.

 --
 Tom Chiverton

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and
 Wales under registered number OC307980 whose registered office address is at
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
 list of members is available for inspection at the registered office. Any
 reference to a partner in relation to Halliwells LLP means a member of
 Halliwells LLP.  Regulated by The Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.halliwells.com.

 

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






-- 
Teoti Graphix, LLC
http://www.teotigraphix.com

Teoti Graphix Blog
http://www.blog.teotigraphix.com

You can find more by solving the problem then by 'asking the question'.


Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Daniel Freiman
That's exactly what I do.  In fact that's the only thing I use this email
address for.

On Wed, Jun 18, 2008 at 12:37 AM, Doug McCune [EMAIL PROTECTED] wrote:

   Out of morbid curiosity, am I the only one who has multiple email
 lists all being filtered into the same mega-list? I have flexcoders,
 flexcomponents, apollocoders, papervision, degrafa, flexlib, and
 flexjobs all dropped into a mondo folder in gmail. I color code each
 list accordingly so I can at a glance see which list a message is
 from, but typically I read them all in the master list. Nobody else
 does this? Somehow I can stay on top of it all, although I'm sure you
 could argue that at times it's certainly not helping my productivity
 :)

 Doug


 On Tue, Jun 17, 2008 at 9:17 PM, Bjorn Schultheiss
 [EMAIL PROTECTED] bjorn.mailinglists%40gmail.com wrote:
  cool.
 
  This discussion needs some resolving though.
 
  I'm all for the creation of another 15 lists.
  With all the cross-posting, subject-meta, gmail, stats,
  my-left-arm-is-longer-than-my-right arguments, my vote is still with
  the split.
 
  best-practices, architecture, components, unit-testing, deployment,
  flash-flex, remote services, java-flex architectures, design ux,
  announcements, etc..
 
  lets do it.
 
  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
 Daniel Freiman [EMAIL PROTECTED] wrote:
 
  I think of Best Practices and Architecture/Concepts as separate but
  overlapping categories so I guess that's why I thought no one else
  brought
  it up.
 
  On Tue, Jun 17, 2008 at 11:57 PM, Bjorn Schultheiss 
  [EMAIL PROTECTED] wrote:
 
Also, to Bjorn, that's a point I hadn't thought of. The idea of
   having an
arch/concepts list might be interesting. The two questions I
  would have
would be: 1) would the questions on this list have any connection to
   Flex
  
   Anatole mentioned it earlier in a 'Best Practices' list.
  
   For example at MAX thy had that Best Practices panel and some
   interesting topics were brought up and discussed.
  
   From my point of view I'm always learning.
   It would be an interesting read for me.
  
  
   --- In flexcoders@yahoogroups.com 
   flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com,
  Daniel
   Freiman FreimanCQ@ wrote:
   
I agree that a FAQ seems like a good idea no matter what. Is anyone
   against
this idea independent of the argument of whether or not to split the
   list?
   
As far as splitting lists, I still think if people want to propose
   potential
new lists, they need to be much more explicit about what the list
   will be
for. I'll take the enterprise example. Let's assume for a second
   it has
only one correct meaning (which is an assumption I agree with,
  but many
people disagree with me on that). Enterprise has become a
   buzzword with
many different commonly understood meanings, and most of those
   meanings are
vague. There's no way for everyone on the list to be sure that we're
talking about the same thing unless someone explicitly spells out
   what we
are talking about (I'm not going to because I'm against having a
enterprise list given every way I know to interpret the word).
   And if we
don't have a common understanding of the proposal we can't
  efficiently
criticize/support/amend the proposal. I'm not saying there has to
   be a fine
line separating the lists, but it should at least be a fuzzy line.
   
Also, to Bjorn, that's a point I hadn't thought of. The idea of
   having an
arch/concepts list might be interesting. The two questions I
  would have
would be: 1) would the questions on this list have any connection to
   Flex
other than the fact that the users code in Flex (I think it probably
   would)
or would it just be piggybacking on the user base; 2) Will it avoid
stratification of the user base (i.e. will it be practically
   accessible to
users of all skill levels)?
   
Lastly, I'm going to reiterate my opinion that we shouldn't
  separate the
lists based on skill/level difficulty. The distinction is too fuzzy
   (Too
much cross-posting and too much posting to the wrong list).
   Sometimes you
don't know if you're question is advanced or not until you get the
   answer.
I've had a few times where I've asked what I thought was a simple
   question
and the response from Gordon was I talked to a guy on the player
   team...
If a question has a one line answer it can't be complex...unless
  the one
line required going through the player or compiler code to
  understand it
(sorry for the overstatement).
   
- Daniel Freiman
   
On Tue, Jun 17, 2008 at 10:31 PM, Douglas Knudsen douglasknudsen@
  
wrote:
   
 Having been on this list since 2004, yeah back when the Iteration
 folks were not Adobe Robe Wearers yet, I've seen this
  discussion come
 up a few times. I've asked for a associated FAQ a few times, but
  

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Stephen Moretti
2008/6/18 Tom Chiverton [EMAIL PROTECTED]:

 On Wednesday 18 Jun 2008, b_alen wrote:
  Can you do folders in gmail? I thought only labels are there and you
  still see all the emails in your inbox, even if you don't want to.

 Configure a filter to 'skip inbox' when it matches. I guess you already
 have a
 filter if you say you label them.


There's even colour coding in google mail these days.

As someone who used to be on this list, left it and just yesterday came
back, I have to say that this list is pretty intimidating.  (and I'm not
easily intimidated)  Mostly its because of the volume of traffic - how you
could meaningfully split the list up to reduce the traffic, whilst avoiding
cross-posting and dead lists, I'm not sure   Sorry that this isn't
particularly helpful. I just wanted to pass on a point of view.. :\

Stephen


[flexcoders] columns resize policy

2008-06-18 Thread Parkash
 Is it possible to have all the columns scale proportionally as windows are 
resized


 In JTable, there was a resize policy enumeration, that would tell how to 
resize columns if screen is resized.

the values included:

1. do not resize
2. distribute equally
3. resize last column only. 

etc


[flexcoders] Styles RSL issues

2008-06-18 Thread matthew.painter
Hi folks

Has anyone noticed this? (Better still, does anyone have a solution :o)

When you are using RSLs, styles are not loaded. So unless you compile Panel, 
DataGrid, 
AdvancedDataGrid etc. into the main application, you will get a runtime error 
due to missing 
styles.

Thanks! :oD



[flexcoders] Re: Label with opaqueBackground set, how to come back to the original color?

2008-06-18 Thread alex
Actually they do have and I'm not sure what was happening before but
now it all working just setting it back to null.

--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote:

 I didn't think labels could have backgrounds or alpha values?
 
 -Josh
 
 On Wed, Jun 18, 2008 at 7:51 AM, alex [EMAIL PROTECTED] wrote:
 
I have a label and lets say I want to know what it is :
  myLabel.opaqueBackground
 
  it will return null , and lets say I set it to a color:
 
  myLabel.opaqueBackground=0xFCF8DC
 
  now when I want to return to the original color around the label ,
  setting :
  myLabel.opaqueBackground=null
 
  is not returning me to the original background color of Label but just
  black color !.
  One of the reasons might be that the label is in the box which
  is set with : this.setStyle(backgroundColor,myColor);
  this.setStyle(backgroundAlpha,0.1);
  using the same linew to return to the original background color is not
  working.
  Any ideas how to return to original background color ?
 
   
 
 
 
 
 -- 
 Therefore, send not to know For whom the bell tolls. It tolls for
thee.
 
 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED]





Re: [flexcoders] How to catch Focus In/Out event on TileList ItemRenderer

2008-06-18 Thread Greg Hess
Thanks Alex, much appreciated!

This is how it turned out, testing well!

-Greg

//CreationComplete handler
private function initRenderer():void
{

//Must listen for both CHANGE and DATA_CHANGE events
this.outerList.addEventListener(ListEvent.CHANGE, checkSelected);
this.addEventListener(FlexEvent.DATA_CHANGE, checkSelected);
}


private function checkSelected(event:Event = null)
{
if( isItemSelected())
//do some custom styling
else
//do some custom styling
}


private function isItemSelected():Boolean
{
var sel:Boolean = false;

//First just check if we are the selected item
//if so we know our item has just been selected
if(this.outerList.selectedItem == this.data)
sel = true;
else
{
//To support multiselections we need to also check the list
//of selected items
 for( var i:int = 0; i  this.outerList.selectedItems.length
 !sel; ++i)
 {
sel = (this.outerList.selectedItems[i] == this.data);
 }
}

return sel;
}


On Wed, Jun 18, 2008 at 1:54 AM, Alex Harui [EMAIL PROTECTED] wrote:

 Unless there are focusable objects, they won't get focus.  I think you want 
 to catch the change even tinstead?



 

 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg 
 Hess
 Sent: Monday, June 16, 2008 7:27 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] How to catch Focus In/Out event on TileList ItemRenderer



 Hi All,



 I have a TileList employing a custom ItemRenderer (VBox with Image and 
 labels). I would like to catch Focus In/Out on the ItemRenderer so that when 
 selected I can change the border style on the VBox to provide a custom select 
 indicator instead of the default provide by the TileList (changing the 
 background of the entire cell). I have not yet been able to catch the Focus 
 Event on this ItemRenderer my code is as follows:

 mx:VBox

 xmlns:mx=http://www.adobe.com/2006/mxml; mouseFocusEnabled=true 
 focusEnabled=true mouseEnabled=true 
 mouseFocusChange=onMouseFocusChange(event) 

 The onMouseFocusChangeEvent is never fired. I also tried adding an 
 eventListener on creationComplete method with not success.

 How can I do this?

 Any help much appreciated.

 Thanks,

 Greg



 

this.outerList = (this.parentDocument).thumbnailView;


[flexcoders] Re: How to compose a super tree item renderer using TreeItemRenderer and others

2008-06-18 Thread an0one
Being an AS class is not a compelling reason of not being able to be used as a 
mxml tag. 
Otherwise, why can I use a subclass of TreeItemRenderer in my mxml code(see my 
second 
example code)?
However, I am more anxious that you could tell me something about my second 
problem.
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote:

 TreeItemRenderer is an AS class, but not an mxml tag.
 
  
 
 You can't do a serious TreeItemRenderer in-line.
 
  
 
 See this example for a start:
 
 http://www.cflex.net/showFileDetails.cfm?ObjectID=575
 
  
 
 Tracy
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of an0one
 Sent: Tuesday, June 17, 2008 11:18 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] How to compose a super tree item renderer using
 TreeItemRenderer and others
 
  
 
 Hi,
 I want a custom tree item renderer that consists of a basic
 TreeItemRenderer(to reuse its 
 tree node icons) and several other standard controls(they are also
 IListItemRenderer 
 implementors). Let's call it ComboTreeItemRenderer, and to simplify the
 matters, assume 
 it is composed of a TreeItemRenderer and a Label.
 
 This is my first try:
 mx:Tree width=100% height=100% 
 id=tagTree 
 dataProvider={myTags} 
 change=handleTagSelection(event);
 mx:itemRenderer
 mx:Component
 mx:HBox
 mx:TreeItemRenderer
 /mx:TreeItemRenderer
 mx:Label text=[EMAIL PROTECTED]
 /mx:Label
 /mx:HBox
 /mx:Component
 /mx:itemRenderer
 /mx:Tree
 
 And the first error I met:
 Could not resolve mx:TreeItemRenderer to a component implementation.
 
 I don't believe TreeItemRenderer can not be used in mxml coding, so I
 guess I was just not 
 coding in the right way. But what's the right way then?
 
 However, that's not really what I was stumped by, since I found that I
 could write a custom 
 component(named MyTreeItemRenderer) which extends
 TreeItemRenderer(nothing to 
 override, just to work around the could no resolve error), and it
 could be resolved of 
 course. So here is my second try:
 mx:Tree width=100% height=100% 
 id=tagTree 
 dataProvider={myTags} 
 change=handleTagSelection(event);
 mx:itemRenderer
 mx:Component
 mx:HBox
 mx:MyTreeItemRenderer
 /mx:MyTreeItemRenderer
 mx:Label text=[EMAIL PROTECTED]
 /mx:Label
 /mx:HBox
 /mx:Component
 /mx:itemRenderer
 /mx:Tree
 
 Now comes the really difficulties: I know I must assign values to some
 properties of 
 MyTreeItemRenderer using information carried by data and listData, but
 what properties 
 to assign value to? And what makes me even crazier is that I found
 neither listData and 
 data was set(observed by overriding set listData and set data functions
 and find they were 
 never called).
 
 Looking forward to seeing helpful hints. Thanks in advance.






[flexcoders] How can i connect two Boxes on apanel controls with a Line

2008-06-18 Thread Baljeet singh
Hi all,

 I want to connect two boxes with a line between them. I am using
moveTo(x1, y1) and lineTo(x2,y2) methods of Graphics class. But line
is  not getting created. I even tried with code like this:

 beginFill(x1, y1)
 moveTo(x1, y1)
 lineTo(x2, y2);
 endFill(x2, y2);

   But still no line is getting created. 

   I also want, whenever i drag and drop the boxes, line should remain
between them. 
  
  Any pointer/help will be highly appreciated.


Thanks ,
~bali 



[flexcoders] Problem with getting most recently inserted ArrayCollection item

2008-06-18 Thread bredwards358
After fixing an issue regarding where best to put an insert function
call in my drag and drop function I now have another issue. It seems
that it is simply not seeing the most recently dropped item. For
instance, when I drop the very first item, it throws an error saying
that 0 (The index of the item being dropped) is out of bounds. This
error is thrown for every new item inserted afterward, when the second
item is inserted it will say that 1 is out of bounds. Interestingly
enough, updates to the ArrayCollection to change a value in that row
will still function perfectly. It seems that the row is not inserted
until the function is completely done, simply having something call a
value from the new row will not work as it simply isn't in yet. I feel
like this is a bit confusing so I'll go ahead and post my code complete
with debug functions I wrote to try and figure this out:

private function dragToOrders(event:DragEvent):void
{
 var draggedItems:Object = new Object();
 draggedItems =  event.dragSource.dataForFormat(items);
 var n:int = orderDetailArray.length;
for (var i:int = 0; i  n; i++)//Looping through to check for
duplicate entries
{
  if (orderDetailArray[i].ProductID == draggedItems[0].ProductID)
   {
 orderDetailArray[i].Qty ++;
 orderDetailArray.itemUpdated(orderDetailArray[i].Qty);
 trace(Fire update statement on  + i);
 tryUpdate(i);
 event.preventDefault();
 return;
   }
}
trace(Inserted New Record in  + i);
tryInsert(i);
}
private function tryInsert(row:int):void
{
 try
 {
 trace(Value of Product:  + orderDetailArray[row].ProductID + 
was inserted at  + row);
 }
 catch(ex:Error)
 {
 if(orderDetailArray.length  0)
 {
 trace(orderDetailArray[--row].ProductID);
 }
 trace(ex.toString());
 trace(--\n +
 ex.getStackTrace() +\n+
 --);
 }
}
private function tryUpdate(row:int):void
{
 try
 {
 trace(Value of Product:  + orderDetailArray[row].ProductID + 
was updated at  + row);
 }
 catch(ex:Error)
 {
 if(orderDetailArray.length  0)
 {
 trace(orderDetailArray[row--].ProductID);
 }
 trace(ex.toString());
 trace(--\n +
 ex.getStackTrace() +\n+
 --);
 }
}

As usual, thanks in advance, any and all suggestions are greatly
appreciated.

Brian Ross Edwards
Tech-Connect LLC



[flexcoders] Adobe MAX speakers

2008-06-18 Thread Gregor Kiddie
Hi all,

 

Question about MAX this year. Any word on which speakers are at the NA
and the Euro versions? I'm getting sent by the company to one of them,
and it would be nice to choose based on the speakers.

 

Gk.

Gregor Kiddie
Senior Developer
INPS

Tel:   01382 564343

Registered address: The Bread Factory, 1a Broughton Street, London SW8
3QJ

Registered Number: 1788577

Registered in the UK

Visit our Internet Web site at www.inps.co.uk
blocked::http://www.inps.co.uk/ 

The information in this internet email is confidential and is intended
solely for the addressee. Access, copying or re-use of information in it
by anyone else is not authorised. Any views or opinions presented are
solely those of the author and do not necessarily represent those of
INPS or any of its affiliates. If you are not the intended recipient
please contact [EMAIL PROTECTED]

 



[flexcoders] Re: My Web Service with soap headers code no longer work with Flex 3

2008-06-18 Thread Mark
So I downloaded Charles 3.2.1 to see what I'm getting. Running the 
code from 2.0.1 all is fine.  But with 3.0 here's what I'm getting.

soap:Envelope 
xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema;
soap:Body
soap:Fault
faultcodesoap:Server/faultcode
faultstringServer was unable to process request. --gt; Object 
reference not set to an instance of an object./faultstring
detail /
/soap:Fault
/soap:Body
/soap:Envelope

Under the Request top tab and XML Text bottom tab there's some 
differences:
!-- From 2.0.1 GOOD --

SOAP-ENV:Envelope xmlns:SOAP-
ENV=http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
SOAP-ENV:Header
AuthHeader xmlns=http://tempuri.org/;
UserName
admin
/UserName
Password
admin
/Password
/AuthHeader
/SOAP-ENV:Header
SOAP-ENV:Body
PullXML xmlns=http://tempuri.org/; /
/SOAP-ENV:Body
/SOAP-ENV:Envelope

!-- From 3.0 BAD --
SOAP-ENV:Envelope xmlns:SOAP-
ENV=http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:s=http://www.w3.org/2001/XMLSchema; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
SOAP-ENV:Header
ns0:AuthHeader xmlns=http://tempuri.org/; 
xmlns:ns0=http://radar.us.na.ey.net/RadarXML.asmx;
UserName
admin
/UserName
Password
admin
/Password
/ns0:AuthHeader
/SOAP-ENV:Header
SOAP-ENV:Body
s0:PullXML xmlns:s0=http://tempuri.org/; /
/SOAP-ENV:Body
/SOAP-ENV:Envelope

Another point to mention is that the swf and the wsdl sit in the 
same direcory on the server so a crossdomain file isn't necessary.  
But again, I can't get this to rum from Flex Builder.  I also tested 
this with useProxy set to true and false. Setting it to false gives 
the same response, seting it to true shoot off new errors.

It sounds like from what Rick was saying this is not an issue with 
the Flash Player as I'm using 9.0.124.  This is an issue with Flex 
3.0, is that correct?






--- In flexcoders@yahoogroups.com, Rick Winscot [EMAIL PROTECTED] 
wrote:

 Tracy - actually, you are right on the money. The Authorization 
header was
 blocked and then re-instated in 9.0.124. You can still work around 
the issue
 if you compile in Flex  2.0.1 since the RPC bits are still intact 
there.
 however - in 3.0 they have changed.
 
  
 
 From the 3.0.x Flex SDK - AbstractWebService.as
 
  
 
  The username and password to authenticate a user when accessing 
the
 webservice. These will be passed as part of the HTTP Authorization 
header
 from the proxy to the endpoint. If useProxy is false this property 
will be
 ignored.
 
  
 
 There is also the issue of allowing the header from your 
crossdomain file.
 
  
 
 http://kb.adobe.com/selfservice/viewContent.do?externalId=kb403184 
 
  
 
 
 Rick Winscot
 
  
 
  
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Mark
 Sent: Tuesday, June 17, 2008 9:34 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: My Web Service with soap headers code no 
longer
 work with Flex 3
 
  
 
 HI,
 
 I guess what I'm not understanding is the fact that when I run 
this 
 code from Flex Builder 2 it works, but when I run it out of FB 3 
it 
 doesn't. The Flash Player version would make sence to me but not 
 working in one and not the other. I'm using 9.0.124.0 Debug.
 
 HERE'S MY ERROR IN FB3:
 
 (mx.rpc::Fault)#0
 errorID = 0
 faultCode = Server.Error.Request
 faultDetail = Error: [IOErrorEvent type=ioError bubbles=false 
 cancelable=false eventPhase=2 text=Error #2032: Stream Error. 
URL: 
 http://radar.us.na.ey.net/RadarXML.asmx;]. URL: 
 http://radar.us.na.ey.net/RadarXML.asmx;
 faultString = HTTP request error
 message = faultCode:Server.Error.Request faultString:'HTTP 
 request error' faultDetail:'Error: [IOErrorEvent type=ioError 
 bubbles=false cancelable=false eventPhase=2 text=Error #2032: 
 Stream Error. URL: http://radar.us.na.ey.net/RadarXML.asmx;]. URL: 
 http://radar.us.na.ey.net/RadarXML.asmx'
 name = Error
 rootCause = (flash.events::IOErrorEvent)#1
 bubbles = false
 cancelable = false
 currentTarget = (flash.net::URLLoader)#2
 bytesLoaded = 0
 bytesTotal = 0
 data = (null)
 dataFormat = text
 eventPhase = 2
 target = (flash.net::URLLoader)#2
 text = Error #2032: Stream Error. URL: 
 http://radar.us.na.ey.net/RadarXML.asmx;
 type = ioError
 
 --- In flexcoders@yahoogroups.com mailto:flexcoders%
40yahoogroups.com ,
 Tracy Spratt tspratt@ 
 wrote:
 
  Josh, I think you are right, the OP was not adding headers to 
the 
 HTTP request after all, and his header was not Authorization, 
 which as you point out, is again allowed.
  
  
  
  Probably best to ignore me on this one!
  
  
  
  Tracy
  
  
  
  





[flexcoders] Re: Restrict the number of records viewable in a managed arraycollection

2008-06-18 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote:

 In the result handler, just select the desired items, and assign them 
to
 the DG.dataProvider.

You could also use a filterFunction on the ArrayCollection if you have 
anything in the record object that identifies the row number.

HTH;

Amy



[flexcoders] Re: tilelist and transitions

2008-06-18 Thread giopaia
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote:

 --- In flexcoders@yahoogroups.com, giopaia giopaia@ wrote:
 
  --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote:
 
Any idea how to avoid the freezing problem?
   
   Have you tried setting includeInLayout to false on the TileList 
 until 
   after the transition is finished?
   
   HTH;
   
   Amy
  
  
  
  In this way I'm obliged to create all instances of the tilelists
  before entering the states they are part of...
  and it is a bit too much in terms of things to download...
  but for now it works... and really well, the movement now it's 
 smooth.
  When I have time I'll try to dive into it to optimize it.
 
 I would think if you don't specify the dataProvider or itemRenderer 
 of the TileList until you're ready to use the TileList, it shouldn't 
 be that expensive to create.
 
 HTH;
 
 Amy


If you separate the creation of the tilelist 
from the dataProvider initialization things are
more manageable but...
what's expensive in my tests is the creation...
not the initialization of data...
So I still have to create the TileList container
and the TileList itself with the application, if
I create it later than I'm sure to get have movement
freezing when transitions starts...
For the data initialization part it really depends on
two things here:
- number of items in the list
- how fast is the download of the contents (really fast
download freezes movements, it seems like it compresses
initialization of many itemrenderers in a small time)

So solution for now is:
- create the tilelist container and tilelist at startup... 
(even if it's almost empty this avoids the freezing later...)
- use visible and includeInLayout properties to visualize it later
- initialize the dataProvider after (no problem if not too much items...) 


If there are lots of items you need to be sure that no transition is
going to happen... Only if you are sure about that, then obviously you
can do creation, initialization or both because nothings going to be
freezed...


This is what I've gathered through my experiments
but I can surely do things wrong and 
I'm surely not a guru

anyone confirms this results
thanks in advance
Gio







Re: [flexcoders] Adobe MAX speakers

2008-06-18 Thread Matt Chotin
North America speakers will mostly be announced next week (hopefully). Europe 
will be a while longer.

Matt


- Original Message -
From: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Wed Jun 18 06:41:51 2008
Subject: [flexcoders] Adobe MAX speakers

Hi all,



Question about MAX this year. Any word on which speakers are at the NA and the 
Euro versions? I’m getting sent by the company to one of them, and it would be 
nice to choose based on the speakers.



Gk.

Gregor Kiddie
Senior Developer
INPS

Tel:   01382 564343

Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ

Registered Number: 1788577

Registered in the UK

Visit our Internet Web site at www.inps.co.uk blocked::http://www.inps.co.uk/

The information in this internet email is confidential and is intended solely 
for the addressee. Access, copying or re-use of information in it by anyone 
else is not authorised. Any views or opinions presented are solely those of the 
author and do not necessarily represent those of INPS or any of its affiliates. 
If you are not the intended recipient please contact [EMAIL PROTECTED]






[flexcoders] Allow negative x position of container child

2008-06-18 Thread DannyT
This seems like it should be alot easier than I'm making it so thought I'd
put it out here:

Basically what I'd like to acheive is something like the following:

mx:HBox
horizontalScrollPolicy=off
verticalScrollPolicy=off
width=300

mx:Panel title=Panel 1 width=150 x=-150 /
mx:Panel title=Panel 2 width=150 x=0 /
mx:Panel title=Panel 3 width=150 x=150 /
/mx:HBox

Note that 'Panel 1' has an x position of negative 150 so, as the containing
HBox is only 300 wide I'd like to see only panel's 2 and 3 visible and 1 is
off to the left. However I can only get it to show panel 1 and panel 2 with
panel 3 off to the right.

The overall goal is to create a UI that allows the display of items 1 and 2
OR items 2 and 3 and the view will slide into the chosen formation. However
I seem to be stuck at the first hurdle. I've tried playing around with
borders, scrollPolicy and clipContent but not yet managed to get any nearer.
Any help much appreciated.

Dan

-- 
http://danny-t.co.uk


RE: [flexcoders] ColumnSet vs Multiple axes

2008-06-18 Thread Sunil Bannur
Hi Richard,

I think the issue is that your items are getting filtered out because, the min 
and max values calculated for the horizontal axis is getting bad.
I would set the maximum and minimum explicitly as a workaround and I think 
you've already reported this as a bug, so it should be on track to get fixed.

For example, I used this as the max and min for both horizontal axes on your 
sample, it worked.

minimum={new Date('12/31/2007')} maximum={new Date('02/03/2008')}

Thanks
-Sunil


From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard 
Rodseth
Sent: Tuesday, June 17, 2008 11:25 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] ColumnSet vs Multiple axes


I sent code to Sunil and Sangavi demonstrating the bug.
Now I'm looking for a workaround.
If  two ColumnSeries (different date axes) are displayed at the same location, 
I would like to be able to see both columns clearly, eg. through 
stroke/fill/alpha choices or by offsetting them somehow to simulate a cluster. 
Say the colors are red and green. With a low alpha value and red and green 
strokes, I can at least ensure that there's a visible red or green line at the 
top of the column, but one of the columns is always on top in the z-order, 
regardless of column height. Perhaps a pair of custom BoxItemRenderers that 
halve the box?
Any other ideas? Thanks.
On Sun, Jun 1, 2008 at 11:28 PM, Sunil Bannur [EMAIL PROTECTED]mailto:[EMAIL 
PROTECTED] wrote:

Can you send a snippet of your code or screenshot for more help.



Thanks

-Sunil



From: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com] On 
Behalf Of Richard Rodseth
Sent: Thursday, May 29, 2008 10:33 PM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: [flexcoders] ColumnSet vs Multiple axes



I have two column series related to distinct horizontal axes (of type
DateTimeAxis).

If I include the two series without wrapping them in a ColumnSet, the
columns from each series display overlaid on each other.

However, if I wrap them in a ColumnSet of type clustered, only one
series displays. Has anyone else encountered this?

Thanks in advance.


inline: ~WRD000.jpginline: image001.jpginline: image002.jpg

Re: [flexcoders] Re: My Web Service with soap headers code no longer work with Flex 3

2008-06-18 Thread Josh McDonald
Looks to me like there's a problem with your namespaces in the bad request.
I don't know much about soap headers, but where's that radarXML namespace
coming from?

The SOAP code in Flex 3 is stricter than Flex 2's, so besides a couple of
bugs it behaves better than Flex 2's SOAP code, but often when migrating it
will expose problems in your WSDLs or XSDs that appear to be bugs in Flex 3.
It could be that there's something in your schema that is including the
radarXML namespace for the outer authheader element, but your server isn't
actually expecting that so it's complaining, and you were just lucky that
flex 2's SOAP code didn't generate the request correctly.

What's the server returning? A 500? If it's a SOAP fault, what does it say?
One of the reasons you want to use Charles is that you can see the error
codes when you get an error code from the server, whereas the browser hides
the details from the Flash Player so they never make it back into Flex,
often hiding very useful troubleshooting information.

-Josh

On Wed, Jun 18, 2008 at 11:46 PM, Mark [EMAIL PROTECTED] wrote:

 So I downloaded Charles 3.2.1 to see what I'm getting. Running the
 code from 2.0.1 all is fine.  But with 3.0 here's what I'm getting.

 soap:Envelope
 xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 xmlns:xsd=http://www.w3.org/2001/XMLSchema;
 soap:Body
 soap:Fault
 faultcodesoap:Server/faultcode
 faultstringServer was unable to process request. -- Object
 reference not set to an instance of an object./faultstring
 detail /
 /soap:Fault
 /soap:Body
 /soap:Envelope

 Under the Request top tab and XML Text bottom tab there's some
 differences:
 !-- From 2.0.1 GOOD --

 SOAP-ENV:Envelope xmlns:SOAP-
 ENV=http://schemas.xmlsoap.org/soap/envelope/;
 xmlns:xsd=http://www.w3.org/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 SOAP-ENV:Header
 AuthHeader xmlns=http://tempuri.org/;
 UserName
 admin
 /UserName
 Password
 admin
 /Password
 /AuthHeader
 /SOAP-ENV:Header
 SOAP-ENV:Body
 PullXML xmlns=http://tempuri.org/; /
 /SOAP-ENV:Body
 /SOAP-ENV:Envelope

 !-- From 3.0 BAD --
 SOAP-ENV:Envelope xmlns:SOAP-
 ENV=http://schemas.xmlsoap.org/soap/envelope/;
 xmlns:s=http://www.w3.org/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 SOAP-ENV:Header
 ns0:AuthHeader xmlns=http://tempuri.org/;
 xmlns:ns0=http://radar.us.na.ey.net/RadarXML.asmx;
 UserName
 admin
 /UserName
 Password
 admin
 /Password
 /ns0:AuthHeader
 /SOAP-ENV:Header
 SOAP-ENV:Body
 s0:PullXML xmlns:s0=http://tempuri.org/; /
 /SOAP-ENV:Body
 /SOAP-ENV:Envelope

 Another point to mention is that the swf and the wsdl sit in the
 same direcory on the server so a crossdomain file isn't necessary.
 But again, I can't get this to rum from Flex Builder.  I also tested
 this with useProxy set to true and false. Setting it to false gives
 the same response, seting it to true shoot off new errors.

 It sounds like from what Rick was saying this is not an issue with
 the Flash Player as I'm using 9.0.124.  This is an issue with Flex
 3.0, is that correct?






 --- In flexcoders@yahoogroups.com, Rick Winscot [EMAIL PROTECTED]
 wrote:
 
  Tracy - actually, you are right on the money. The Authorization
 header was
  blocked and then re-instated in 9.0.124. You can still work around
 the issue
  if you compile in Flex  2.0.1 since the RPC bits are still intact
 there.
  however - in 3.0 they have changed.
 
 
 
  From the 3.0.x Flex SDK - AbstractWebService.as
 
 
 
   The username and password to authenticate a user when accessing
 the
  webservice. These will be passed as part of the HTTP Authorization
 header
  from the proxy to the endpoint. If useProxy is false this property
 will be
  ignored.
 
 
 
  There is also the issue of allowing the header from your
 crossdomain file.
 
 
 
  http://kb.adobe.com/selfservice/viewContent.do?externalId=kb403184
 
 
 
 
  Rick Winscot
 
 
 
 
 
  From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On
  Behalf Of Mark
  Sent: Tuesday, June 17, 2008 9:34 AM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Re: My Web Service with soap headers code no
 longer
  work with Flex 3
 
 
 
  HI,
 
  I guess what I'm not understanding is the fact that when I run
 this
  code from Flex Builder 2 it works, but when I run it out of FB 3
 it
  doesn't. The Flash Player version would make sence to me but not
  working in one and not the other. I'm using 9.0.124.0 Debug.
 
  HERE'S MY ERROR IN FB3:
 
  (mx.rpc::Fault)#0
  errorID = 0
  faultCode = Server.Error.Request
  faultDetail = Error: [IOErrorEvent type=ioError bubbles=false
  cancelable=false eventPhase=2 text=Error #2032: Stream Error.
 URL:
  http://radar.us.na.ey.net/RadarXML.asmx;]. URL:
  http://radar.us.na.ey.net/RadarXML.asmx;
  faultString = HTTP request error
  message = faultCode:Server.Error.Request faultString:'HTTP
  request error' faultDetail:'Error: [IOErrorEvent 

[flexcoders] Re: How to compose a super tree item renderer using TreeItemRenderer and others

2008-06-18 Thread an0one
I know how to create a subclass of TreeItemRenderer and use it as the 
itemRenderer of a 
Tree. What I can't quite figure out is how to create a composite tree item 
renderer 
enclosing a TreeItemRenderer and a Label. 
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote:

 You may need to bind the new renderer's .data to the TreeITemRenderer's
 .data property.
 
  
 
 I would just extend TreeItemRenderer and change what it does, though.
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of an0one
 Sent: Tuesday, June 17, 2008 8:18 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] How to compose a super tree item renderer using
 TreeItemRenderer and others
 
  
 
 Hi,
 I want a custom tree item renderer that consists of a basic
 TreeItemRenderer(to reuse its 
 tree node icons) and several other standard controls(they are also
 IListItemRenderer 
 implementors). Let's call it ComboTreeItemRenderer, and to simplify the
 matters, assume 
 it is composed of a TreeItemRenderer and a Label.
 
 This is my first try:
 mx:Tree width=100% height=100% 
 id=tagTree 
 dataProvider={myTags} 
 change=handleTagSelection(event);
 mx:itemRenderer
 mx:Component
 mx:HBox
 mx:TreeItemRenderer
 /mx:TreeItemRenderer
 mx:Label text=[EMAIL PROTECTED]
 /mx:Label
 /mx:HBox
 /mx:Component
 /mx:itemRenderer
 /mx:Tree
 
 And the first error I met:
 Could not resolve mx:TreeItemRenderer to a component implementation.
 
 I don't believe TreeItemRenderer can not be used in mxml coding, so I
 guess I was just not 
 coding in the right way. But what's the right way then?
 
 However, that's not really what I was stumped by, since I found that I
 could write a custom 
 component(named MyTreeItemRenderer) which extends
 TreeItemRenderer(nothing to 
 override, just to work around the could no resolve error), and it
 could be resolved of 
 course. So here is my second try:
 mx:Tree width=100% height=100% 
 id=tagTree 
 dataProvider={myTags} 
 change=handleTagSelection(event);
 mx:itemRenderer
 mx:Component
 mx:HBox
 mx:MyTreeItemRenderer
 /mx:MyTreeItemRenderer
 mx:Label text=[EMAIL PROTECTED]
 /mx:Label
 /mx:HBox
 /mx:Component
 /mx:itemRenderer
 /mx:Tree
 
 Now comes the really difficulties: I know I must assign values to some
 properties of 
 MyTreeItemRenderer using information carried by data and listData, but
 what properties 
 to assign value to? And what makes me even crazier is that I found
 neither listData and 
 data was set(observed by overriding set listData and set data functions
 and find they were 
 never called).
 
 Looking forward to seeing helpful hints. Thanks in advance.






[flexcoders] Debugging problems with Firefox 3 Final

2008-06-18 Thread João Fernandes
Hi there,

did anyone had problems with the final version of Firefox 3? Each time I 
make a change, I have to do a 'clean' to be able to debug my application 
again.

Anyone noticed this?
-- 

João Fernandes

http://www.onflexwithcf.org
http://www.riapt.org
Portugal Adobe User Group (http://aug.riapt.org)



[flexcoders] Unable to Find the parent of a newly added Sub Node in a Tree..

2008-06-18 Thread sk_acura
Hi All,

  I have a Simple Tree whose Data Provider is an ArrayCollection of
Custom ActionScript Node Object (the code is listed below..)

  When i add a new Child Node to any of the Nodes in the Tree i can
get the parent of this Node without any problems..

  How ever when i try to add a new Child Node for the Previously added
Node i cannot get the Parent of the newly added Child Node..!!!

  Initial Tree:
 Root
 Node-1

  1) Add a Child Element to Node-1

 Root
 Node-1
ChildNode-1

 Now i can get the parent of the ChildNode-1 

  2) Now add a new Child to childNode-1

 Root
 Node-1
 ChildNode-1
ChildOfChildNode-1

  Now i cannot get the parent of ChildOfChildNode-1 !!!

   I am calling the getParent() method by passing the ChildNode and it
returns null..(the same method above returns the correct parent )

 Here is the code i am using..

TreeNode.as:

[CODE]
package test
{
import mx.collections.ArrayCollection;

public class TreeNode
{
public function TreeNode()
{
}

public var nodeId:String;
public var nodeLabel:String;
public var parentId:String;
public var children:ArrayCollection;
public var parent:Node;

public function toString():String{
return TreeNode[ 
nodeId=+nodeId+,nodeLabel=+nodeLabel+,
parentId =+parentId+];
}

}
}
[/CODE]

TreeTest.mxml:

[CODE]
?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
layout=absolute creationComplete=init()

mx:Script
![CDATA[
import test.ChangedNode;
import mx.controls.Alert;
import test.TreeNode;
import mx.collections.ArrayCollection;

private var sourceArrayCollection:ArrayCollection = 
null;

private var contextNode:TreeNode = null;

public function init():void{
trace(Here in init() of TreeDragDrop );
sourceArrayCollection = new ArrayCollection();

populateChildNodes(SourceTree,sourceArrayCollection);
sourceCollectionTree.dataProvider = 
sourceArrayCollection;
}

private function
populateChildNodes(nodeNamePrefix:String,collection:ArrayCollection):void{
trace(Here in populateChildNodes() );
for(var i:int =0;i5;i++){
var node:TreeNode = new TreeNode();
node.nodeId 
=nodeNamePrefix+-Id[+i+];
node.nodeLabel 
=nodeNamePrefix+-Label[+i+];
node.children = new ArrayCollection();

var childNode:TreeNode = new
TreeNode();
childNode.nodeId 
=nodeNamePrefix+child-Id[+i+];
childNode.nodeLabel 
=nodeNamePrefix+Child Label[+i+];

node.children.addItem(childNode);

collection.addItem(node);
}
}

public function treeLabel( item:Object ) : String{
var node:TreeNode =null;
node = TreeNode(item);
return node.nodeLabel;
}

private function getNodeInfo(event:Event):void{
trace(Here in getNodeInfo 
---);
var selectedNode:TreeNode = 
Tree(event.target).selectedItem as
TreeNode;
trace(Selected Node =+selectedNode);
contextNode = selectedNode;
}

private function createAggregation():void{
aggregationNameDisplayBox.visible = true;
aggregationNameTxt.setFocus();
}

private function saveAggregationName():void{
trace(Here in saveAggregationName() and 
contextNode =+contextNode);
var newChildNode:TreeNode = null;
var changedNode:ChangedNode = null;
if(contextNode!=null){
newChildNode = new TreeNode();
  

Re: [flexcoders] Allow negative x position of container child

2008-06-18 Thread Jon Bradley


On Jun 18, 2008, at 10:16 AM, DannyT wrote:

The overall goal is to create a UI that allows the display of items  
1 and 2 OR items 2 and 3 and the view will slide into the chosen  
formation. However I seem to be stuck at the first hurdle. I've  
tried playing around with borders, scrollPolicy and clipContent but  
not yet managed to get any nearer. Any help much appreciated.



Use a Canvas parent container and you should be ok with negative  
positioning.


An HBox overrides the positions of it's children, the children don't  
position themselves.


Then, just create some transition tags and set moveEffect=Move on  
each of the children.


cheers,

Jon



[flexcoders] Re: How to have a component as a Wallpaper/Background

2008-06-18 Thread timgerr
Is there a way when you have draggable widgets to add a weight to
them, one is always behind the other?

Thanks,
timgerr

--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote:

 Most containers have no background so if you put the object behind the
 container it should act like it is the background.




Re: [flexcoders] Debugging problems with Firefox 3 Final

2008-06-18 Thread Tom Chiverton
On Wednesday 18 Jun 2008, João Fernandes wrote:
 did anyone had problems with the final version of Firefox 3? Each time I
 make a change, I have to do a 'clean' to be able to debug my application
 again.

What happens if you don't clean ?

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] Minimize / Maximize Browser Window

2008-06-18 Thread markgoldin_2000
I am creating an application that is hosted in an HTA page. My main 
Flex container is a TitleWindow with a close button that actally closes 
the HTA page. Is there a way of min/max the HTA page from the Flex app?

Thanks



Re: [flexcoders] ColumnSet vs Multiple axes

2008-06-18 Thread Richard Rodseth
Thanks, but the chart is showing two different periods of data (same
duration), so I can't make the min/max the same for both of them. I wonder
if I could disassociate the one series from its axis, but leave the axis
there.

On Wed, Jun 18, 2008 at 7:16 AM, Sunil Bannur [EMAIL PROTECTED] wrote:

  Hi Richard,



 I think the issue is that your items are getting filtered out because, the
 min and max values calculated for the horizontal axis is getting bad.

 I would set the maximum and minimum explicitly as a workaround and I think
 you've already reported this as a bug, so it should be on track to get
 fixed.



 For example, I used this as the max and min for both horizontal axes on
 your sample, it worked.



 minimum={new Date('12/31/2007')} maximum={new Date('02/03/2008')}



 Thanks

 -Sunil





 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Richard Rodseth
 *Sent:* Tuesday, June 17, 2008 11:25 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] ColumnSet vs Multiple axes



 I sent code to Sunil and Sangavi demonstrating the bug.
 Now I'm looking for a workaround.
 If  two ColumnSeries (different date axes) are displayed at the same
 location, I would like to be able to see both columns clearly, eg. through
 stroke/fill/alpha choices or by offsetting them somehow to simulate a
 cluster. Say the colors are red and green. With a low alpha value and red
 and green strokes, I can at least ensure that there's a visible red or green
 line at the top of the column, but one of the columns is always on top in
 the z-order, regardless of column height. Perhaps a pair of custom
 BoxItemRenderers that halve the box?
 Any other ideas? Thanks.

 On Sun, Jun 1, 2008 at 11:28 PM, Sunil Bannur [EMAIL PROTECTED] wrote:

 Can you send a snippet of your code or screenshot for more help.



 Thanks

 -Sunil



 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Richard Rodseth
 *Sent:* Thursday, May 29, 2008 10:33 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] ColumnSet vs Multiple axes



 I have two column series related to distinct horizontal axes (of type
 DateTimeAxis).

 If I include the two series without wrapping them in a ColumnSet, the
 columns from each series display overlaid on each other.

 However, if I wrap them in a ColumnSet of type clustered, only one
 series displays. Has anyone else encountered this?

 Thanks in advance.



 

~WRD000.jpgimage002.jpgimage001.jpg

[flexcoders] addChild and transition issue

2008-06-18 Thread giopaia
I have two states 
and possibility to jump between them.
All works fine until one click
inadvertently goes faster than the transition...

then I get an already parented error on the addchild...

To explain better:
If I go from state a to state b
and viceversa waiting the transition 
times no problem occurs...
If I jump from state a to state b then
back to state a without waiting the full 
time of the transition the already parented 
error occurs.
from what I understood if you jump from one state
to another in the middle of a transition the played
effect gets stopped and the new one starts...
shouldn't there be a similar mechanism for
child adding/removing?


Any idea how to bypass the problem or stop the error 
from blocking/messing all the GUI structure?
thanks
Gio








[flexcoders] Re: Class library

2008-06-18 Thread markgoldin_2000
Yes, it does work that way. Now I can have a collection of my generic 
functions without creating a separate file for each class.

--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote:

 Looks ok. Try it and tell us what errors you get.
 
  
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of markgoldin_2000
 Sent: Tuesday, June 17, 2008 10:27 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Class library
 
  
 
 Can I create a class library that would look like this:
 
 package modulecode
 {
 public class Classes
 {
 public function Classes()
 {
 }
 public function Function1():void
 {
 }
 public function Function2():void
 {
 }
 }
 }
 
 Thanks





[flexcoders] Re: My Web Service with soap headers code no longer work with Flex 3

2008-06-18 Thread Mark
RadarXML is the WebService

Response Code = 500 Internal Server Error
SOAP/faultcode = soap:Server
SOAP/faultstring = Server was unable to process request. --gt; 
Object reference not set to an instance of an object.

You may be right, it could be a server or webservice issues.

-M



--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] 
wrote:

 Looks to me like there's a problem with your namespaces in the bad 
request.
 I don't know much about soap headers, but where's that radarXML 
namespace
 coming from?
 
 The SOAP code in Flex 3 is stricter than Flex 2's, so besides a 
couple of
 bugs it behaves better than Flex 2's SOAP code, but often when 
migrating it
 will expose problems in your WSDLs or XSDs that appear to be bugs 
in Flex 3.
 It could be that there's something in your schema that is 
including the
 radarXML namespace for the outer authheader element, but your 
server isn't
 actually expecting that so it's complaining, and you were just 
lucky that
 flex 2's SOAP code didn't generate the request correctly.
 
 What's the server returning? A 500? If it's a SOAP fault, what 
does it say?
 One of the reasons you want to use Charles is that you can see the 
error
 codes when you get an error code from the server, whereas the 
browser hides
 the details from the Flash Player so they never make it back into 
Flex,
 often hiding very useful troubleshooting information.
 
 -Josh
 
 On Wed, Jun 18, 2008 at 11:46 PM, Mark [EMAIL PROTECTED] 
wrote:
 
  So I downloaded Charles 3.2.1 to see what I'm getting. Running 
the
  code from 2.0.1 all is fine.  But with 3.0 here's what I'm 
getting.
 
  soap:Envelope
  xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
  xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  xmlns:xsd=http://www.w3.org/2001/XMLSchema;
  soap:Body
  soap:Fault
  faultcodesoap:Server/faultcode
  faultstringServer was unable to process request. -- Object
  reference not set to an instance of an object./faultstring
  detail /
  /soap:Fault
  /soap:Body
  /soap:Envelope
 
  Under the Request top tab and XML Text bottom tab there's 
some
  differences:
  !-- From 2.0.1 GOOD --
 
  SOAP-ENV:Envelope xmlns:SOAP-
  ENV=http://schemas.xmlsoap.org/soap/envelope/;
  xmlns:xsd=http://www.w3.org/2001/XMLSchema;
  xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  SOAP-ENV:Header
  AuthHeader xmlns=http://tempuri.org/;
  UserName
  admin
  /UserName
  Password
  admin
  /Password
  /AuthHeader
  /SOAP-ENV:Header
  SOAP-ENV:Body
  PullXML xmlns=http://tempuri.org/; /
  /SOAP-ENV:Body
  /SOAP-ENV:Envelope
 
  !-- From 3.0 BAD --
  SOAP-ENV:Envelope xmlns:SOAP-
  ENV=http://schemas.xmlsoap.org/soap/envelope/;
  xmlns:s=http://www.w3.org/2001/XMLSchema;
  xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  SOAP-ENV:Header
  ns0:AuthHeader xmlns=http://tempuri.org/;
  xmlns:ns0=http://radar.us.na.ey.net/RadarXML.asmx;
  UserName
  admin
  /UserName
  Password
  admin
  /Password
  /ns0:AuthHeader
  /SOAP-ENV:Header
  SOAP-ENV:Body
  s0:PullXML xmlns:s0=http://tempuri.org/; /
  /SOAP-ENV:Body
  /SOAP-ENV:Envelope
 
  Another point to mention is that the swf and the wsdl sit in the
  same direcory on the server so a crossdomain file isn't 
necessary.
  But again, I can't get this to rum from Flex Builder.  I also 
tested
  this with useProxy set to true and false. Setting it to false 
gives
  the same response, seting it to true shoot off new errors.
 
  It sounds like from what Rick was saying this is not an issue 
with
  the Flash Player as I'm using 9.0.124.  This is an issue with 
Flex
  3.0, is that correct?
 
 
 
 
 
 
  --- In flexcoders@yahoogroups.com, Rick Winscot rick.winscot@
  wrote:
  
   Tracy - actually, you are right on the money. The Authorization
  header was
   blocked and then re-instated in 9.0.124. You can still work 
around
  the issue
   if you compile in Flex  2.0.1 since the RPC bits are still 
intact
  there.
   however - in 3.0 they have changed.
  
  
  
   From the 3.0.x Flex SDK - AbstractWebService.as
  
  
  
The username and password to authenticate a user when 
accessing
  the
   webservice. These will be passed as part of the HTTP 
Authorization
  header
   from the proxy to the endpoint. If useProxy is false this 
property
  will be
   ignored.
  
  
  
   There is also the issue of allowing the header from your
  crossdomain file.
  
  
  
   http://kb.adobe.com/selfservice/viewContent.do?
externalId=kb403184
  
  
  
  
   Rick Winscot
  
  
  
  
  
   From: flexcoders@yahoogroups.com
  [mailto:[EMAIL PROTECTED] On
   Behalf Of Mark
   Sent: Tuesday, June 17, 2008 9:34 AM
   To: flexcoders@yahoogroups.com
   Subject: [flexcoders] Re: My Web Service with soap headers 
code no
  longer
   work with Flex 3
  
  
  
   HI,
  
   I guess what I'm not understanding is the fact that when I run
  this
   code from Flex Builder 2 it works, but when I run it out of FB 
3
  it
   doesn't. The Flash Player version would make sence to me but 
not

Re: [flexcoders] Debugging problems with Firefox 3 Final

2008-06-18 Thread João Fernandes
Simply it hangs till I press stop debugging.

it seems that is has already been reported 
http://bugs.adobe.com/jira/browse/FB-13064

-- 

João Fernandes

http://www.onflexwithcf.org
http://www.riapt.org
Portugal Adobe User Group (http://aug.riapt.org)




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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] Menu Styling corrupts menu separator and size

2008-06-18 Thread Greg Hess
Hi All,

I am trying to style my application menus but have run into problems
when I use separators as menu items or set 'variableRowHeight' to
true. My menu style is as follows:

Menu
{
rollOverColor: #00;
selectionColor: #00;
backgroundColor: #161515;   
}

When I emply this global style I have two problems with how the menu is drawn.

1. The menu separator is drawn as a double line or it has a shadow or something
2. If I set the 'variableRowHeight' property to true the menu is
clipped at the bottom and the last item only partialy shows

If I remove the style from my CSS it works fine, but does not meet the
UI design and clipping issue is still present. However, if I remove my
CSS entirly the menu does not get clipped, I must have some CSS class
that is corrupting my menu style I tried to specify the separator
class with a custom image, but again it is drawing a double line... I
am stumped not sure what in my CSS could be conflicting.

The only CSS styles that I can think could be affecting are:

global
{
themeColor: #66;

/* Text Styles */
color: #cc;
fontStyle: normal;
fontWeight: normal;
fontSize: 10;
fontFamily: Arial;
letterSpacing: 1;
textSelectedColor: #FF;
textRollOverColor: #FF;
textAlign: left;

/* Modal window effect */
modalTransparency: 0.5;
modalTransparencyBlur: 0;
modalTransparencyColor: black;
modalTransparencyDuration: 200;
}

/* Application Font */
@font-face
{
fontFamily: Arial;
fontWeight: normal;
fontStyle: normal;
src: local(Arial);
}

Application
{   
backgroundColor: #00;
paddingBottom: 0;
paddingTop: 0;
paddingRight: 0;
paddingLeft: 0;
verticalGap: 0;
horizontalGap: 0;
}

Any help is much appreciated!

Thanks,

Greg


Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Anatole Tartakovsky
Hello Tom,

How is 1 list simpler than 1 list ?

The same way threads by the topic are simplier then unsorted individual
email - you read only the ones you need and fold the rest. While you can
argue that you can sort and fold messages with some client email
customization, it is not a trivial task unless your server or client
supports it.

Basically weborb is 10 messages a day, apollo is 1 and flexcomponents are 2
- I can manage that in my daily emails. Imagine that we separated the main
list in subtopics and one of them would be dashboards, charts and BI -
getting 5-10 messages a day - would you rather moderate that or whole
list? Would it get up in your inbox? What are the chances that a single
mail  would get missed by specialist? What about the quality of the answer?
Visibility of all questions and answers on the topic? Am I the only one who
thinks that libraries place books by category for convenience and access
simplicity?

There is nothing simple about fishing in 100+ items. Tom, as BI specialist
you know firsthand that sorting data in the beginning eliminates order of
magnitude processing later. Let us apply it to our daily life.

 But if there are too many they'll just post to them all. 

There are 2 types of crossposting people - the ones who did not receive the
answer in the previous forum and the ones who cross post from the get go.
The first type is OK - moderator or users can point them to a different
forum. There are periods in flexcomponents that every second message gets
RTFM or go to flexcoders responses. The second type needs some
discipline. Here is what moderators and users do - saying this is not
appropriate forum, remove the message to make life easier for the rest,
giving warning bans for a day - however harsh it sounds, it works. The goal
is to service the community - not to do somebodies homework. If the forums
are speedy and high quality the crossposting ceases.

I have seen heavily moderated product forums on compuserve (yes, before
Internet) 15 years ago. You had less then one hour response (datetime
US) time on 90+% of the questions. The volume was about 500 messages across
20 forums. General list was getting about 100 threads, the rest were much
smaller, The answers would be actually correct ones. Vendors would have team
of community moderators that would answer 50%+ of the questions in their
domain - with multiple moderators per topic. There was very little
repetition of the questions as people could search much better.

Things come in cycles. Please consider this as best practices from the
historical point.

*Now for the next cycle - can single list be better then multiple lists -
the answer is yes, but not now*
The only way I can see single as an alternative to multiple list is to
enforce tagging of the questions. That in turn means next generation of
email clients or forcing everybody to use RSS type readers instead of email.
We will get to it in a few years, its requires serious update to the email
system. Next generations of email that are to be spam proof can make
topics/tagging exchange a part of handshake protocol. Till then there is no
enforceable way to sort the messages on the senders end.


Sincerely,
Anatole Tartakovsky



On Wed, Jun 18, 2008 at 5:02 AM, Tom Chiverton [EMAIL PROTECTED]
wrote:

 On Tuesday 17 Jun 2008, Anatole Tartakovsky wrote:
  Multiple lists enforce thinking if it is appropriate before posting.

 Maybe. But if there are too many they'll just post to them all.

  Moderators can ban/redirect unappropriate message. Flexcomponents often
  redirect new users to flexcoders if the question is not about components.
  You almost never see questions on UI design in weborb.

 See what I and Matt said - I think we're on the same page here.

  All in all - let us have the simplest thing possible - multiple list - w

 How is 1 list simpler than 1 list ?

 --
 Tom Chiverton

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and
 Wales under registered number OC307980 whose registered office address is at
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
 list of members is available for inspection at the registered office. Any
 reference to a partner in relation to Halliwells LLP means a member of
 Halliwells LLP.  Regulated by The Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.halliwells.com.

 

[flexcoders] Re: Problem with getting most recently inserted ArrayCollection item

2008-06-18 Thread bredwards358
I've had a thought, would it be possible to add an event listener to
well, something that would fire the insert function on dragComplete?
If not then perhaps would it be best to call a function which compares
the data to already existing data either in the database through
select statements or against another arrayCollection somehow? I'm just
throwing ideas around to help find a solution to my issue.



Re: [flexcoders] Allow negative x position of container child

2008-06-18 Thread DannyT
ugh okay so i was being totally lazy with that one. Thanks alot

2008/6/18 Jon Bradley [EMAIL PROTECTED]:


 On Jun 18, 2008, at 10:16 AM, DannyT wrote:

 The overall goal is to create a UI that allows the display of items 1 and 2
 OR items 2 and 3 and the view will slide into the chosen formation. However
 I seem to be stuck at the first hurdle. I've tried playing around with
 borders, scrollPolicy and clipContent but not yet managed to get any nearer.
 Any help much appreciated.



 Use a Canvas parent container and you should be ok with negative
 positioning.

 An HBox overrides the positions of it's children, the children don't
 position themselves.

 Then, just create some transition tags and set moveEffect=Move on each of
 the children.

 cheers,

 Jon

  




-- 
http://danny-t.co.uk


[flexcoders] Possible to post an array with HTTPService?

2008-06-18 Thread Rick Schmitty
Can you do something like

var params:Object = new Object();
params.name=myNameVar;
params.hobbies=myArrayVar;

service.send(params);

Seems on the PHP end it just takes the last value in the hobbies
array.  When I view this in service capture, it shows

name='Rick'
hobbies='needlework'
hobbies='curling'
hobbies=golf'

and doing var_dump($_POST)
you just see


array(2) {
  [namel]=
  string(4) Rick
  [hobbies]=
  string(4) golf
}


Only option to convert array to csv and convert that string back to
array on php's end?


RE: [flexcoders] Re: How to compose a super tree item renderer using TreeItemRenderer and others

2008-06-18 Thread Alex Harui
Why composite?  Just add the label when you subclass.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of an0one
Sent: Wednesday, June 18, 2008 7:22 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: How to compose a super tree item renderer
using TreeItemRenderer and others

 

I know how to create a subclass of TreeItemRenderer and use it as the
itemRenderer of a 
Tree. What I can't quite figure out is how to create a composite tree
item renderer 
enclosing a TreeItemRenderer and a Label. 
--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
, Alex Harui [EMAIL PROTECTED] wrote:

 You may need to bind the new renderer's .data to the
TreeITemRenderer's
 .data property.
 
 
 
 I would just extend TreeItemRenderer and change what it does, though.
 
 
 
 
 
 From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
[mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
] On
 Behalf Of an0one
 Sent: Tuesday, June 17, 2008 8:18 AM
 To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com 
 Subject: [flexcoders] How to compose a super tree item renderer using
 TreeItemRenderer and others
 
 
 
 Hi,
 I want a custom tree item renderer that consists of a basic
 TreeItemRenderer(to reuse its 
 tree node icons) and several other standard controls(they are also
 IListItemRenderer 
 implementors). Let's call it ComboTreeItemRenderer, and to simplify
the
 matters, assume 
 it is composed of a TreeItemRenderer and a Label.
 
 This is my first try:
 mx:Tree width=100% height=100% 
 id=tagTree 
 dataProvider={myTags} 
 change=handleTagSelection(event);
 mx:itemRenderer
 mx:Component
 mx:HBox
 mx:TreeItemRenderer
 /mx:TreeItemRenderer
 mx:Label text=[EMAIL PROTECTED]
 /mx:Label
 /mx:HBox
 /mx:Component
 /mx:itemRenderer
 /mx:Tree
 
 And the first error I met:
 Could not resolve mx:TreeItemRenderer to a component
implementation.
 
 I don't believe TreeItemRenderer can not be used in mxml coding, so I
 guess I was just not 
 coding in the right way. But what's the right way then?
 
 However, that's not really what I was stumped by, since I found that I
 could write a custom 
 component(named MyTreeItemRenderer) which extends
 TreeItemRenderer(nothing to 
 override, just to work around the could no resolve error), and it
 could be resolved of 
 course. So here is my second try:
 mx:Tree width=100% height=100% 
 id=tagTree 
 dataProvider={myTags} 
 change=handleTagSelection(event);
 mx:itemRenderer
 mx:Component
 mx:HBox
 mx:MyTreeItemRenderer
 /mx:MyTreeItemRenderer
 mx:Label text=[EMAIL PROTECTED]
 /mx:Label
 /mx:HBox
 /mx:Component
 /mx:itemRenderer
 /mx:Tree
 
 Now comes the really difficulties: I know I must assign values to some
 properties of 
 MyTreeItemRenderer using information carried by data and listData, but
 what properties 
 to assign value to? And what makes me even crazier is that I found
 neither listData and 
 data was set(observed by overriding set listData and set data
functions
 and find they were 
 never called).
 
 Looking forward to seeing helpful hints. Thanks in advance.


 



[flexcoders] Air 1.1 SDK Flex Builder update?

2008-06-18 Thread ivo
Hello all,

Is the Air 1.1 sdk update to be done manually or will it be available thru the 
Flex Builder/eclipse update mechanism at some point? Dont want to mess up my FB 
installation by doing it manually if it will get picked up by a software update.

Thanks,

- Ivo



Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Doug McCune
Out of the last 100 threads on flexcomponents 22 were cross posted to
flexcoders. Almost every one (I think with one exception) was
cross-posted by the original author immediately to both lists
(sometimes as many as 5 lists! flexcoders, flex_india, flexcomponents,
ria-india). One of them was pretty much spam, and one of them was a
job post (which shouldn't have been posted to flexcoders or
flexcomponents, but only flexjobs).

If we look at flexcomponents as a microcosm, then we have: 22%
crossposting (1% legitimate cross-posting) and 2% spam.

Yeah, this isn't a scientific survey (although I do hope to get real
results comparing the full traffic of both lists soon). But I just
thought it was interesting.

Doug

On Wed, Jun 18, 2008 at 8:44 AM, Anatole Tartakovsky
[EMAIL PROTECTED] wrote:
 Hello Tom,

How is 1 list simpler than 1 list ?

 The same way threads by the topic are simplier then unsorted individual
 email - you read only the ones you need and fold the rest. While you can
 argue that you can sort and fold messages with some client email
 customization, it is not a trivial task unless your server or client
 supports it.

 Basically weborb is 10 messages a day, apollo is 1 and flexcomponents are 2
 - I can manage that in my daily emails. Imagine that we separated the main
 list in subtopics and one of them would be dashboards, charts and BI -
 getting 5-10 messages a day - would you rather moderate that or whole
 list? Would it get up in your inbox? What are the chances that a single
 mail  would get missed by specialist? What about the quality of the answer?
 Visibility of all questions and answers on the topic? Am I the only one who
 thinks that libraries place books by category for convenience and access
 simplicity?

 There is nothing simple about fishing in 100+ items. Tom, as BI specialist
 you know firsthand that sorting data in the beginning eliminates order of
 magnitude processing later. Let us apply it to our daily life.

 But if there are too many they'll just post to them all. 

 There are 2 types of crossposting people - the ones who did not receive the
 answer in the previous forum and the ones who cross post from the get go.
 The first type is OK - moderator or users can point them to a different
 forum. There are periods in flexcomponents that every second message gets
 RTFM or go to flexcoders responses. The second type needs some
 discipline. Here is what moderators and users do - saying this is not
 appropriate forum, remove the message to make life easier for the rest,
 giving warning bans for a day - however harsh it sounds, it works. The goal
 is to service the community - not to do somebodies homework. If the forums
 are speedy and high quality the crossposting ceases.

 I have seen heavily moderated product forums on compuserve (yes, before
 Internet) 15 years ago. You had less then one hour response (datetime
 US) time on 90+% of the questions. The volume was about 500 messages across
 20 forums. General list was getting about 100 threads, the rest were much
 smaller, The answers would be actually correct ones. Vendors would have team
 of community moderators that would answer 50%+ of the questions in their
 domain - with multiple moderators per topic. There was very little
 repetition of the questions as people could search much better.

 Things come in cycles. Please consider this as best practices from the
 historical point.

 Now for the next cycle - can single list be better then multiple lists - the
 answer is yes, but not now
 The only way I can see single as an alternative to multiple list is to
 enforce tagging of the questions. That in turn means next generation of
 email clients or forcing everybody to use RSS type readers instead of email.
 We will get to it in a few years, its requires serious update to the email
 system. Next generations of email that are to be spam proof can make
 topics/tagging exchange a part of handshake protocol. Till then there is no
 enforceable way to sort the messages on the senders end.


 Sincerely,
 Anatole Tartakovsky


 On Wed, Jun 18, 2008 at 5:02 AM, Tom Chiverton
 [EMAIL PROTECTED] wrote:

 On Tuesday 17 Jun 2008, Anatole Tartakovsky wrote:
  Multiple lists enforce thinking if it is appropriate before posting.

 Maybe. But if there are too many they'll just post to them all.

  Moderators can ban/redirect unappropriate message. Flexcomponents often
  redirect new users to flexcoders if the question is not about
  components.
  You almost never see questions on UI design in weborb.

 See what I and Matt said - I think we're on the same page here.

  All in all - let us have the simplest thing possible - multiple list - w

 How is 1 list simpler than 1 list ?

 --
 Tom Chiverton

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England
 and Wales under registered number OC307980 whose registered 

Re: [flexcoders] Air 1.1 SDK Flex Builder update?

2008-06-18 Thread Matt Chotin
Flex Builder update is a few months out.

See http://www.adobe.com/devnet/flex/articles/flex_air1.1.html for instructions 
 on how to do it manually.

Matt


On 6/18/08 9:00 AM, ivo [EMAIL PROTECTED] wrote:




Hello all,

Is the Air 1.1 sdk update to be done manually or will it be available thru the 
Flex Builder/eclipse update mechanism at some point? Dont want to mess up my FB 
installation by doing it manually if it will get picked up by a software update.

Thanks,

- Ivo





[flexcoders] Question for Subvision to Flex Bulider 3

2008-06-18 Thread markflex2007
Hi,

I follow the url (http://tdotblog.info/?q=node/4) to install subvision
to FB3

I extract site-1.0.6.zip and I get two folder (features and plugins)
and files in the two folders

I am not sure how to copy files in the two folders to FB3 folder.Do I
have to copy all of them?

Please give me a help.

Thanks

Mark



Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Maciek Sakrejda
I was going to propose that we add a separate list for discussions on
whether or not the list should be split up into smaller lists, but I
suppose that would come of as fatuous, and that I think discussions like
this are not important. They are. So, as just another flexcoders user,
I'll second Doug's opinion.

-- 
Maciek Sakrejda
Truviso, Inc.
http://www.truviso.com

-Original Message-
From: Doug McCune [EMAIL PROTECTED]
Reply-To: flexcoders@yahoogroups.com
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused
groups
Date: Wed, 18 Jun 2008 09:03:16 -0700

Out of the last 100 threads on flexcomponents 22 were cross posted to
flexcoders. Almost every one (I think with one exception) was
cross-posted by the original author immediately to both lists
(sometimes as many as 5 lists! flexcoders, flex_india, flexcomponents,
ria-india). One of them was pretty much spam, and one of them was a
job post (which shouldn't have been posted to flexcoders or
flexcomponents, but only flexjobs).

If we look at flexcomponents as a microcosm, then we have: 22%
crossposting (1% legitimate cross-posting) and 2% spam.

Yeah, this isn't a scientific survey (although I do hope to get real
results comparing the full traffic of both lists soon). But I just
thought it was interesting.

Doug

On Wed, Jun 18, 2008 at 8:44 AM, Anatole Tartakovsky
[EMAIL PROTECTED] wrote:
 Hello Tom,

How is 1 list simpler than 1 list ?

 The same way threads by the topic are simplier then unsorted
individual
 email - you read only the ones you need and fold the rest. While you
can
 argue that you can sort and fold messages with some client email
 customization, it is not a trivial task unless your server or client
 supports it.

 Basically weborb is 10 messages a day, apollo is 1 and flexcomponents
are 2
 - I can manage that in my daily emails. Imagine that we separated the
main
 list in subtopics and one of them would be dashboards, charts and BI
-
 getting 5-10 messages a day - would you rather moderate that or whole
 list? Would it get up in your inbox? What are the chances that a
single
 mail would get missed by specialist? What about the quality of the
answer?
 Visibility of all questions and answers on the topic? Am I the only
one who
 thinks that libraries place books by category for convenience and
access
 simplicity?

 There is nothing simple about fishing in 100+ items. Tom, as BI
specialist
 you know firsthand that sorting data in the beginning eliminates order
of
 magnitude processing later. Let us apply it to our daily life.

 But if there are too many they'll just post to them all. 

 There are 2 types of crossposting people - the ones who did not
receive the
 answer in the previous forum and the ones who cross post from the get
go.
 The first type is OK - moderator or users can point them to a
different
 forum. There are periods in flexcomponents that every second message
gets
 RTFM or go to flexcoders responses. The second type needs some
 discipline. Here is what moderators and users do - saying this is not
 appropriate forum, remove the message to make life easier for the
rest,
 giving warning bans for a day - however harsh it sounds, it works. The
goal
 is to service the community - not to do somebodies homework. If the
forums
 are speedy and high quality the crossposting ceases.

 I have seen heavily moderated product forums on compuserve (yes,
before
 Internet) 15 years ago. You had less then one hour response (datetime
 US) time on 90+% of the questions. The volume was about 500 messages
across
 20 forums. General list was getting about 100 threads, the rest were
much
 smaller, The answers would be actually correct ones. Vendors would
have team
 of community moderators that would answer 50%+ of the questions in
their
 domain - with multiple moderators per topic. There was very little
 repetition of the questions as people could search much better.

 Things come in cycles. Please consider this as best practices from
the
 historical point.

 Now for the next cycle - can single list be better then multiple lists
- the
 answer is yes, but not now
 The only way I can see single as an alternative to multiple list is to
 enforce tagging of the questions. That in turn means next generation
of
 email clients or forcing everybody to use RSS type readers instead of
email.
 We will get to it in a few years, its requires serious update to the
email
 system. Next generations of email that are to be spam proof can make
 topics/tagging exchange a part of handshake protocol. Till then there
is no
 enforceable way to sort the messages on the senders end.


 Sincerely,
 Anatole Tartakovsky


 On Wed, Jun 18, 2008 at 5:02 AM, Tom Chiverton
 [EMAIL PROTECTED] wrote:

 On Tuesday 17 Jun 2008, Anatole Tartakovsky wrote:
  Multiple lists enforce thinking if it is appropriate before
posting.

 Maybe. But if there are too many they'll just post to them all.

  Moderators can ban/redirect unappropriate 

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Daniel Freiman
If a topic falls into multiple categories wouldn't it be logical to post to
all lists that apply.  Otherwise there might be a knowledgeable person out
there you didn't reach.  Wouldn't that be legitimate cross-posting?

- Daniel Freiman

On Wed, Jun 18, 2008 at 11:44 AM, Anatole Tartakovsky 
[EMAIL PROTECTED] wrote:

   Hello Tom,

 How is 1 list simpler than 1 list ?

 The same way threads by the topic are simplier then unsorted individual
 email - you read only the ones you need and fold the rest. While you can
 argue that you can sort and fold messages with some client email
 customization, it is not a trivial task unless your server or client
 supports it.

 Basically weborb is 10 messages a day, apollo is 1 and flexcomponents are 2
 - I can manage that in my daily emails. Imagine that we separated the main
 list in subtopics and one of them would be dashboards, charts and BI -
 getting 5-10 messages a day - would you rather moderate that or whole
 list? Would it get up in your inbox? What are the chances that a single
 mail  would get missed by specialist? What about the quality of the answer?
 Visibility of all questions and answers on the topic? Am I the only one who
 thinks that libraries place books by category for convenience and access
 simplicity?

 There is nothing simple about fishing in 100+ items. Tom, as BI specialist
 you know firsthand that sorting data in the beginning eliminates order of
 magnitude processing later. Let us apply it to our daily life.

  But if there are too many they'll just post to them all. 

 There are 2 types of crossposting people - the ones who did not receive the
 answer in the previous forum and the ones who cross post from the get go.
 The first type is OK - moderator or users can point them to a different
 forum. There are periods in flexcomponents that every second message gets
 RTFM or go to flexcoders responses. The second type needs some
 discipline. Here is what moderators and users do - saying this is not
 appropriate forum, remove the message to make life easier for the rest,
 giving warning bans for a day - however harsh it sounds, it works. The goal
 is to service the community - not to do somebodies homework. If the forums
 are speedy and high quality the crossposting ceases.

 I have seen heavily moderated product forums on compuserve (yes, before
 Internet) 15 years ago. You had less then one hour response (datetime
 US) time on 90+% of the questions. The volume was about 500 messages across
 20 forums. General list was getting about 100 threads, the rest were much
 smaller, The answers would be actually correct ones. Vendors would have team
 of community moderators that would answer 50%+ of the questions in their
 domain - with multiple moderators per topic. There was very little
 repetition of the questions as people could search much better.

 Things come in cycles. Please consider this as best practices from the
 historical point.

 *Now for the next cycle - can single list be better then multiple lists -
 the answer is yes, but not now*
 The only way I can see single as an alternative to multiple list is to
 enforce tagging of the questions. That in turn means next generation of
 email clients or forcing everybody to use RSS type readers instead of email.
 We will get to it in a few years, its requires serious update to the email
 system. Next generations of email that are to be spam proof can make
 topics/tagging exchange a part of handshake protocol. Till then there is no
 enforceable way to sort the messages on the senders end.


 Sincerely,
 Anatole Tartakovsky



 On Wed, Jun 18, 2008 at 5:02 AM, Tom Chiverton 
 [EMAIL PROTECTED] wrote:

 On Tuesday 17 Jun 2008, Anatole Tartakovsky wrote:
  Multiple lists enforce thinking if it is appropriate before posting.

 Maybe. But if there are too many they'll just post to them all.

  Moderators can ban/redirect unappropriate message. Flexcomponents often
  redirect new users to flexcoders if the question is not about
 components.
  You almost never see questions on UI design in weborb.

 See what I and Matt said - I think we're on the same page here.

  All in all - let us have the simplest thing possible - multiple list - w

 How is 1 list simpler than 1 list ?

 --
 Tom Chiverton

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England
 and Wales under registered number OC307980 whose registered office address
 is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.
  A list of members is available for inspection at the registered office. Any
 reference to a partner in relation to Halliwells LLP means a member of
 Halliwells LLP.  Regulated by The Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee 

[flexcoders] Re: ColumnSet vs Multiple axes

2008-06-18 Thread Tim Hoff

Hi Richard,

For a work-around, first give each ColumnSeries an id.  If you also want
to change the z-order, give the ColumnSet an id as well.  Then, on
CreationComplete, do something like this to offset the columns and/or
change the depth.

private function onCreationComplete(): void
{
 // offset columns
 myFirstColumnSeries.move(-8,0);
 mySecondColumnSeries.move(myFirstColumnSeries.x+16,0);

 // change depth (z-order)
 myColumnSet.swapChildren(myFirstColumnSeries,mySecondColumnSeries);
}

-TH

--- In flexcoders@yahoogroups.com, Richard Rodseth [EMAIL PROTECTED]
wrote:

 I sent code to Sunil and Sangavi demonstrating the bug.
 Now I'm looking for a workaround.
 If two ColumnSeries (different date axes) are displayed at the same
 location, I would like to be able to see both columns clearly, eg.
through
 stroke/fill/alpha choices or by offsetting them somehow to simulate a
 cluster. Say the colors are red and green. With a low alpha value and
red
 and green strokes, I can at least ensure that there's a visible red or
green
 line at the top of the column, but one of the columns is always on top
in
 the z-order, regardless of column height. Perhaps a pair of custom
 BoxItemRenderers that halve the box?
 Any other ideas? Thanks.


 On Sun, Jun 1, 2008 at 11:28 PM, Sunil Bannur [EMAIL PROTECTED] wrote:

  Can you send a snippet of your code or screenshot for more help.
 
 
 
  Thanks
 
  -Sunil
 
 
 
  *From:* flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] *On
  Behalf Of *Richard Rodseth
  *Sent:* Thursday, May 29, 2008 10:33 PM
  *To:* flexcoders@yahoogroups.com
  *Subject:* [flexcoders] ColumnSet vs Multiple axes
 
 
 
  I have two column series related to distinct horizontal axes (of
type
  DateTimeAxis).
 
  If I include the two series without wrapping them in a ColumnSet,
the
  columns from each series display overlaid on each other.
 
  However, if I wrap them in a ColumnSet of type clustered, only one
  series displays. Has anyone else encountered this?
 
  Thanks in advance.
 
 
 





RE: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node

2008-06-18 Thread Seth Hodgson
I think a bit more background on your app would be helpful. It sounds
like you're receiving a response from the server that isn't correctly
encoded AMFX, meaning that you're using an HTTPChannel to connect the
client to the server. What is being invoked on the server specifically?

If you monitor your HTTP traffic using something like Charles, what does
the raw response being returned to the player look like?

Seth

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of gnu wolf
Sent: Tuesday, June 17, 2008 8:39 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help on error: Invalid AMFX packet. Content must
start with an amfx node

Hello Guys,

I have a different error now.

Invalid AMFX packet. Content must start with an amfx node

How do I fix this thing? I know it has something to do with my
connection settings or proxy settings but which specifically should I
check.

Thanks in advance. 


RE: [flexcoders] Re: Managed Collections with null objects

2008-06-18 Thread Seth Hodgson
Hi guys,

What version of things are you running, and would you mind sharing your 
destination configuration?

Thanks,
Seth

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
richcianci
Sent: Tuesday, June 17, 2008 3:45 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Managed Collections with null objects

--- In flexcoders@yahoogroups.com, João Fernandes 
[EMAIL PROTECTED] wrote:

 I'm having this weird issue that never happened before.
 Sometimes, totally randomly, after deleting a managed item in a 
 arraycollection, instead of getting the arrayCollection resized by -
1, 
 my arraycollection keeps the same size and I get a null object 
where the 
 managed item was previously.
 
 This happens using ds.deleteItem() or using 
 arrayCollection.removeItemAt( itemIndex )
 -- 
 
 João Fernandes
 
 http://www.onflexwithcf.org
 http://www.riapt.org


I am having the same issue. Did you ever figure it out?
 


[flexcoders] Re: Casual Channel.Call.Failed while using remoteObject

2008-06-18 Thread gene_belor
My problem was caused by the compression filter used in web.xml. As
the result, IE6 could not properly uncompress data to pass it to Flash
Player.


--- In flexcoders@yahoogroups.com, gene_belor [EMAIL PROTECTED] wrote:

 Hi,
 
 Did you figure out the Channel.Call.Failed problem?
 
 I get it consistently for only one remote call to Java backend if my
 swf is loaded from IE6. And the same call works fine in IE7 or Firefox.
 
 Any suggestions on how to troubleshoot this problem in Flex or Java?
 
 Thanks!
 
 --- In flexcoders@yahoogroups.com, saifeng.ji saifeng.ji@ wrote:
 
  While using remoteObject to interact with java side, casual 
  fault Channel.Call.Failed occurs. If you invoke the remoteObject 
  again, it does work usually. 
  
  According to my own analysis, flex usually takes milliseconds to
setup 
  a secure TCP connection, but is probably sufficient for Flash Player 
  to think that there's no connection and hence throw a FaultEvent.
  
  
  One possible solution is recall the method in the faultHandler.
  But obviously, it's not a good way for complicated application.
  
  
  Anybody ever faced to this wild problem?
  What's possible reason causes this error?
  And are there any smooth and perfect solution for it?
  
  thanks a lot.
 





[flexcoders] Tree itemRenderer not displaying as a tree?

2008-06-18 Thread S B
Why doesn't the following mx:Tree display as a tree? Instead, all nodes have 
the same indentation for some reason. Thanks!

mx:XMLList id=xml_tree_legend_data
node label=Medication short=med
node label=Quantity short=qty/
node label=Unit short=unit/
node label=Adminstration method short=amethod/
node label=Frequency short=frequency/
node label=Core short=core/
/node
/mx:XMLList

 [...]

mx:Tree id=tree_legend 
dataProvider={xml_tree_legend_data} alternatingItemColors=['#fc', 
'#ededed'] width=100% height=100% mx:itemRenderer
mx:Component
mx:Label text=[EMAIL PROTECTED]()}] [EMAIL 
PROTECTED]/
/mx:Component
/mx:itemRenderer
/mx:Tree


  

[flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread b_alen
Cheers mate, that could help a lot. This is by the way the biggest
show stopper of this list. Just to find this response took me quite a
lot of clicking through crappy Yahoo mail list interface to find it.




  Can you do folders in gmail? I thought only labels are there and you
  still see all the emails in your inbox, even if you don't want to.
 
 Configure a filter to 'skip inbox' when it matches. I guess you
already have a 
 filter if you say you label them.
 




[flexcoders] Re: Question for Subvision to Flex Bulider 3

2008-06-18 Thread b_alen
Do you have a standalone FB3 or Eclipse plugin?


--- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED]
wrote:

 Hi,
 
 I follow the url (http://tdotblog.info/?q=node/4) to install subvision
 to FB3
 
 I extract site-1.0.6.zip and I get two folder (features and plugins)
 and files in the two folders
 
 I am not sure how to copy files in the two folders to FB3 folder.Do I
 have to copy all of them?
 
 Please give me a help.
 
 Thanks
 
 Mark





RE: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node

2008-06-18 Thread gnuwolf
Hi Seth,

 

Thanks for replying.

 

I'm creating a webservices client for Netsuite.

 

The usual SOAP request for login operation would look something like this:

 

   soapenv:Body
  platformMsgs:login
  xmlns:soapenc=http://schemas.xmlsoap.org/soap/encoding/;
  xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  xmlns:xs=http://www.w3.org/2001/XMLSchema;
 
xmlns:platformCore=urn:core_2008_1.platform.webservices.netsuite.com
 
xmlns:platformMsgs=urn:messages_2008_1.platform.webservices.netsuite.com
 platformMsgs:passport
 
platformCore:email[EMAIL PROTECTED]/platformCore:email
platformCore:passwordmypassword/platformCore:password
platformCore:account724168/platformCore:account
 /platformMsgs:passport
  /platformMsgs:login
   /soapenv:Body

 

 

Raw request from charles is this:

 

amfx ver=3 xmlns=http://www.macromedia.com/2005/amfx;

body

object
type=flex.messaging.messages.CommandMessage

traits

stringbody/string

stringclientId/string

 
stringcorrelationId/string

stringdestination/string

stringheaders/string

stringmessageId/string

stringoperation/string

stringtimestamp/string

stringtimeToLive/string

/traits

object

traits/

/object

null/

string/

string/

object

traits

 
stringDSId/string

 
stringDSMessagingVersion/string

/traits

stringnil/string

int1/int

/object

 
string473AC219-432D-44B1-76AC-9CA3030ED6BA/string

int5/int

int0/int

int0/int

/object

/body

/amfx

 

Raw response was blank or some character like this:  

  _  


 

Error from the flash debugger is this:

 

[MessagingError message='Invalid AMFX packet. Content must start with an
amfx node']

at
mx.messaging.channels.amfx::AMFXDecoder$/decodePacket()[E:\dev\3.0.x\framewo
rks\projects\rpc\src\mx\messaging\channels\amfx\AMFXDecoder.as:149]

at
mx.messaging.channels.amfx::AMFXDecoder/decode()[E:\dev\3.0.x\frameworks\pro
jects\rpc\src\mx\messaging\channels\amfx\AMFXDecoder.as:91]

at
mx.messaging.channels::HTTPChannel/decodePacket()[E:\dev\3.0.x\frameworks\pr
ojects\rpc\src\mx\messaging\channels\HTTPChannel.as:539]

at
mx.messaging.channels::HTTPChannel/pingCompleteHandler()[E:\dev\3.0.x\framew
orks\projects\rpc\src\mx\messaging\channels\HTTPChannel.as:551]

at
ChannelRequestLoader/callEventCallback()[E:\dev\3.0.x\frameworks\projects\rp
c\src\mx\messaging\channels\HTTPChannel.as:1158]

at
ChannelRequestLoader/completeHandler()[E:\dev\3.0.x\frameworks\projects\rpc\
src\mx\messaging\channels\HTTPChannel.as:1194]

at flash.events::EventDispatcher/dispatchEventFunction()

at flash.events::EventDispatcher/dispatchEvent()

at flash.net::URLLoader/onComplete()

 

I didn't touch services-config.xml tho. Do I need to edit the endpoint in
the channel definition?

 

Thanks.

 

Cheers,

Clem

 

 

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Seth Hodgson
Sent: Wednesday, June 18, 2008 12:48 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Help on error: Invalid AMFX packet. Content must
start with an amfx node

 

I think a bit more background on your app would be helpful. It sounds
like you're receiving a response from the server that isn't correctly
encoded AMFX, meaning that you're using an HTTPChannel to connect the
client to the server. What is being invoked on the server specifically?

If you monitor your HTTP traffic using something like Charles, what does
the raw response being returned to the player look like?

Seth

From: [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com
[mailto:[EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com]
On
Behalf Of gnu wolf
Sent: Tuesday, June 17, 2008 8:39 PM
To: [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com 

RE: [flexcoders] Tree itemRenderer not displaying as a tree?

2008-06-18 Thread Alex Harui
Because indentation is handled by the renderer and label doesn't know
how to do that.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of S B
Sent: Wednesday, June 18, 2008 9:51 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Tree itemRenderer not displaying as a tree?

 

Why doesn't the following mx:Tree display as a tree? Instead, all nodes
have the same indentation for some reason. Thanks!

mx:XMLList id=xml_tree_legend_data
node label=Medication short=med
node label=Quantity short=qty/
node label=Unit short=unit/
node label=Adminstration method short=amethod/
node label=Frequency short=frequency/
node label=Core short=core/
/node
/mx:XMLList

 [...]

mx:Tree id=tree_legend
dataProvider={xml_tree_legend_data} alternatingItemColors=['#fc',
'#ededed'] width=100% height=100% mx:itemRenderer
mx:Component
mx:Label
text=[EMAIL PROTECTED]()}] [EMAIL PROTECTED]/
/mx:Component
/mx:itemRenderer
/mx:Tree

 

 



Re: [flexcoders] Question for Subvision to Flex Bulider 3

2008-06-18 Thread Carlo Gulliani
try it 
http://www.flashmagazine.com/tutorials/detail/setting_up_subversion_with_adobe_flex_3/


- Original Message 
From: markflex2007 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, June 18, 2008 8:24:48 PM
Subject: [flexcoders] Question for Subvision to Flex Bulider 3


Hi,

I follow the url (http://tdotblog. info/?q=node/ 4) to install subvision
to FB3

I extract site-1.0.6.zip and I get two folder (features and plugins)
and files in the two folders

I am not sure how to copy files in the two folders to FB3 folder.Do I
have to copy all of them?

Please give me a help.

Thanks

Mark

 


  

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Anatole Tartakovsky
Doug,
flexcomponents is not moderated in conventional sense. The name of the
group is confusing for new users. Very few people have a sense what the
group is for. I am more concerned that the messages that do not belong to
flexcomponents stay there. Crossposting has to be moderated and discouraged.
Ban them first time for some time, permanently if needed.

You can try weborb or flexjobs as examples of clearly distinct and moderated
entries.

I am getting few emails a week from people asking me to help them to write
hello worlld type application in Flex - or help them with blog or book
code - to find that they do not know they need a server. We created this
culture with free products and support - and there are people who would take
advantage.

Regards,
Anatole

On Wed, Jun 18, 2008 at 12:03 PM, Doug McCune [EMAIL PROTECTED] wrote:

   Out of the last 100 threads on flexcomponents 22 were cross posted to
 flexcoders. Almost every one (I think with one exception) was
 cross-posted by the original author immediately to both lists
 (sometimes as many as 5 lists! flexcoders, flex_india, flexcomponents,
 ria-india). One of them was pretty much spam, and one of them was a
 job post (which shouldn't have been posted to flexcoders or
 flexcomponents, but only flexjobs).

 If we look at flexcomponents as a microcosm, then we have: 22%
 crossposting (1% legitimate cross-posting) and 2% spam.

 Yeah, this isn't a scientific survey (although I do hope to get real
 results comparing the full traffic of both lists soon). But I just
 thought it was interesting.

 Doug


 On Wed, Jun 18, 2008 at 8:44 AM, Anatole Tartakovsky
 [EMAIL PROTECTED] anatole.tartakovsky%40gmail.com wrote:
  Hello Tom,
 
 How is 1 list simpler than 1 list ?
 
  The same way threads by the topic are simplier then unsorted individual
  email - you read only the ones you need and fold the rest. While you can
  argue that you can sort and fold messages with some client email
  customization, it is not a trivial task unless your server or client
  supports it.
 
  Basically weborb is 10 messages a day, apollo is 1 and flexcomponents are
 2
  - I can manage that in my daily emails. Imagine that we separated the
 main
  list in subtopics and one of them would be dashboards, charts and BI -
  getting 5-10 messages a day - would you rather moderate that or whole
  list? Would it get up in your inbox? What are the chances that a single
  mail would get missed by specialist? What about the quality of the
 answer?
  Visibility of all questions and answers on the topic? Am I the only one
 who
  thinks that libraries place books by category for convenience and access
  simplicity?
 
  There is nothing simple about fishing in 100+ items. Tom, as BI
 specialist
  you know firsthand that sorting data in the beginning eliminates order of
  magnitude processing later. Let us apply it to our daily life.
 
  But if there are too many they'll just post to them all. 
 
  There are 2 types of crossposting people - the ones who did not receive
 the
  answer in the previous forum and the ones who cross post from the get go.
  The first type is OK - moderator or users can point them to a different
  forum. There are periods in flexcomponents that every second message gets
  RTFM or go to flexcoders responses. The second type needs some
  discipline. Here is what moderators and users do - saying this is not
  appropriate forum, remove the message to make life easier for the rest,
  giving warning bans for a day - however harsh it sounds, it works. The
 goal
  is to service the community - not to do somebodies homework. If the
 forums
  are speedy and high quality the crossposting ceases.
 
  I have seen heavily moderated product forums on compuserve (yes, before
  Internet) 15 years ago. You had less then one hour response (datetime
  US) time on 90+% of the questions. The volume was about 500 messages
 across
  20 forums. General list was getting about 100 threads, the rest were
 much
  smaller, The answers would be actually correct ones. Vendors would have
 team
  of community moderators that would answer 50%+ of the questions in their
  domain - with multiple moderators per topic. There was very little
  repetition of the questions as people could search much better.
 
  Things come in cycles. Please consider this as best practices from the
  historical point.
 
  Now for the next cycle - can single list be better then multiple lists -
 the
  answer is yes, but not now
  The only way I can see single as an alternative to multiple list is to
  enforce tagging of the questions. That in turn means next generation of
  email clients or forcing everybody to use RSS type readers instead of
 email.
  We will get to it in a few years, its requires serious update to the
 email
  system. Next generations of email that are to be spam proof can make
  topics/tagging exchange a part of handshake protocol. Till then there is
 no
  enforceable way to sort the messages on the senders 

RE: [flexcoders] flash9f.ocx crashes

2008-06-18 Thread Jonathon Stierman
I did run a profile last night.  As far as I can tell, everything is
normal... 

 

Peak Memory: 3486 k

Current Memory: 1482 k

 

3486k isn't anything that should be causing the system to run out of
memory and crash.  There aren't any class instances hanging around that
shouldn't be there.  Memory doesn't staircase up after the GC runs.
Everything appears to be collected properly.  Unless I am
mis-interpreting the data... If someone feels so kind as to take a look
at a snapshot and confirm my interpretations, here's an image of what
I'm analyzing.  I left the profiler on over-night, and this is what I
came in to in the morning - so there are *lots* of cumulative instances
for a few classes: http://jonathon.wmtstaging.com/profile.jpg 

 

This app does load static .swf's on a timely basis (every 2 seconds or
so).  I vaguely remember hearing that loading external .swf files can
cause memory issues - could that be the case?  And would those leaks not
be present in the profiler?

 

On a related note - Peak Memory: 3486 k.   What exactly does that
mean?  When I've watched the app run inside IE7 or Firefox, the browsers
memory usage increases far more than 3 megs worth.  Is there really that
much browser overhead when running Flash apps?

 

Jonathon

 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Alex Harui
Sent: Wednesday, June 18, 2008 12:39 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] flash9f.ocx crashes

 

Use the proflier to watch for memory leaks.

 

 



[flexcoders] Copy non-embedded files to output folder property

2008-06-18 Thread bick
What determines which files are copied to the output folder when
compiling a project?

For example, I have src/main.mxml and it attempts to load an XML doc
using URLLoader:

--

var request : URLRequest = new URLRequest(data/config.xml);
var loader = new URLLoader;
loader.load(request);

--

When it compiles, I'd like to have my data folder copied to bin-debug.

I know I can do this using Ant but I was hoping that the property
found in the project properties:

Copy non-embedded files to output folder

would be useful. I can't seem to get anything other than the standard
folders to show up in bin-debug (history, etc.)

Any ideas?



[flexcoders] PrintJob strange behavior

2008-06-18 Thread matn1_mike
I was wondering why the following occurs, if anyone has an idea?

I have a PrintJob very similar to the way the Flex 3 Cookbook
describes how to add the Job to the main app.

parentApp.addChild(printView);

The problem I see, is that if the printView is any MXML component
which holds my labels and printGrid, upon adding it to the parentApp
using the function call above, all my fields get reinitialized after
this method call, and it doesn't matter. scope either.

For example if I have a MXML file call FormTemplate.mxml with my
labels and printGrid to print and define it like
printview:FormTemplate.mxml = new FormTemplate.mxml(), then add my
data to the labels and printGrid upon the call to add to parent
app.these fields get re-initialized

Yet if I define, any variables of the main types below, all my data is
retained after the function call. So its like subclasses get
reininialized, but direct parents do not.

Below types retain there values
protected var printDataGrid:PrintDataGrid = null;
protected var label1:Label = null;




[flexcoders] web service access error

2008-06-18 Thread markflex2007
Hi,

I am use Flex, cairngorm and web service.

I copy a application form other pc and I get the follow error.

RPC Fault faultString=HTTP request error
faultCode=Server.Error.Request faultDetail=Unable to load WSDL. If
currently online, please verify the URI and/or format of the WSDL
(http://122.456.1.xxx/WebService/AdminService.asmx?WSDL)]

But the same application works well in other pc.

I am not sure why this happens.

Thanks

Mark



Re: [flexcoders] Tree itemRenderer not displaying as a tree?

2008-06-18 Thread S B
How can I fix that?

Or, how can I change each node's label based on two attributes in the XMLList?


- Original Message 
From: Alex Harui [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, June 18, 2008 10:43:22 AM
Subject: RE: [flexcoders] Tree itemRenderer not displaying as a tree?


Because indentation is handled by the
renderer and label doesn’t know how to do that.
 


 
From:[EMAIL PROTECTED] ups.com [mailto: [EMAIL PROTECTED] ups.com ] On Behalf 
Of S B
Sent: Wednesday, June 18, 2008
9:51 AM
To: [EMAIL PROTECTED] ups.com
Subject: [flexcoders] Tree
itemRenderer not displaying as a tree?
 
Why doesn't the following
mx:Tree display as a tree? Instead, all nodes have the same indentation for
some reason. Thanks!

mx:XMLList id=xml_tree_ legend_data
node label=Medication
short=med
node
label=Quantity short=qty/
node
label=Unit short=unit /
node
label=Adminstratio n method short=amethod /
node
label=Frequency short=frequency /
node
label=Core short=core /
/node
/mx:XMLList

 [...]

  
 mx:Tree id=tree_legend dataProvider= {xml_tree_ legend_data} 
alternatingItemColo rs=['#fc' , '#ededed']
width=100% height=100%  mx:itemRenderer
  
   
 mx:Component
  
   
 mx:Label text=[{data. @short.toUpperCa se()}]
[EMAIL PROTECTED] /
  
 /mx:Component
  
 /mx:itemRenderer
  
 /mx:Tree
 


  

[flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Amy
--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote:

 That's a really useful thing, why isn't it pimped here more often? 
I've been
 here 10 months, and I'd never heard of it before that Brazilian fellow
 (sorry I forgot your name dude) mentioned it in the original thread 
earlier
 today...

Because some people find that this makes the results less useful rather 
than more useful.  If you're trying to search within LiveDocs and you 
get the whole world, it's a pain.



[flexcoders] AIR/LCDS/EJB Authentication lost when a different RTPM worker thread is used

2008-06-18 Thread taze170171
Hi!

I am setting up the security for Flex to work together with the EJB 3 
Container security. The user should login within the AIR application 
via a custom login screen and the authentication should be verified 
against the configured JBoss login module. For all further ds 
requests the authorization check should be done for every EJB method 
by the EJB container. All  EJB methods have a 
@javax.annotation.security.RolesAllowed(...) anotation.

The EJBs are called within an assembler.

In principle the process works until the EJB is called by a new RTPM 
worker thread. Within the new RTPM thread the principal is null and 
the authorization fails.

I have setup the security as follows:
*  The custom security and tomcat valve have been setup as described 
in the lcds docu (copy jars, copy context.xml)
* The services-config.xml contains the following part:
...
security
login-command 
class=flex.messaging.security.TomcatLoginCommand server=all /
security-constraint id=basic-read-access
auth-methodCustom/auth-method
roles
roleFLEX/role
/roles
/security-constraint
/security
...

* The data-management-config.xml contains the following part:
destination id=id
security
security-constraint ref=basic-read-access/
/security
adapter ref=java-dao /
...


* The login is performed within the mxml as follows:

var token:AsyncToken = ds.connect();
token.addResponder(
  new AsyncResponder(
function():void
{
  if (ds.connected)
  {
var channelSet : ChannelSet = ds.channelSet;
var token : AsyncToken = channelSet.login(user, pwd);

token.addResponder(new AsyncResponder
(
function(event:ResultEvent, token:Object=null):void
{
switch(event.result)
{
  case success:
  Alert.show(Login success);
...

I get the success result and when the first ejb calls are performed 
from the data service assembler the prinicipal is set and the 
authorization works.

But if the EJB is called within another RTPM worker thread no 
principal is set and the authorization fails.

How can I share the security login context over more than one worker 
thread?

Thanks in advance,
taze



Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Anatole Tartakovsky
I would definetly vote to add moderate the first post for advanced groups
like flexcomponents to deal with the issues Doug brought up. I believe that
would make lists better for everyone.
Sincerely
Anatole

On Wed, Jun 18, 2008 at 1:54 PM, Anatole Tartakovsky 
[EMAIL PROTECTED] wrote:

 Doug,
 flexcomponents is not moderated in conventional sense. The name of the
 group is confusing for new users. Very few people have a sense what the
 group is for. I am more concerned that the messages that do not belong to
 flexcomponents stay there. Crossposting has to be moderated and discouraged.
 Ban them first time for some time, permanently if needed.

 You can try weborb or flexjobs as examples of clearly distinct and
 moderated entries.

 I am getting few emails a week from people asking me to help them to write
 hello worlld type application in Flex - or help them with blog or book
 code - to find that they do not know they need a server. We created this
 culture with free products and support - and there are people who would take
 advantage.

 Regards,
 Anatole

   On Wed, Jun 18, 2008 at 12:03 PM, Doug McCune [EMAIL PROTECTED]
 wrote:

   Out of the last 100 threads on flexcomponents 22 were cross posted to
 flexcoders. Almost every one (I think with one exception) was
 cross-posted by the original author immediately to both lists
 (sometimes as many as 5 lists! flexcoders, flex_india, flexcomponents,
 ria-india). One of them was pretty much spam, and one of them was a
 job post (which shouldn't have been posted to flexcoders or
 flexcomponents, but only flexjobs).

 If we look at flexcomponents as a microcosm, then we have: 22%
 crossposting (1% legitimate cross-posting) and 2% spam.

 Yeah, this isn't a scientific survey (although I do hope to get real
 results comparing the full traffic of both lists soon). But I just
 thought it was interesting.

 Doug


 On Wed, Jun 18, 2008 at 8:44 AM, Anatole Tartakovsky
 [EMAIL PROTECTED] anatole.tartakovsky%40gmail.com wrote:
  Hello Tom,
 
 How is 1 list simpler than 1 list ?
 
  The same way threads by the topic are simplier then unsorted
 individual
  email - you read only the ones you need and fold the rest. While you can
  argue that you can sort and fold messages with some client email
  customization, it is not a trivial task unless your server or client
  supports it.
 
  Basically weborb is 10 messages a day, apollo is 1 and flexcomponents
 are 2
  - I can manage that in my daily emails. Imagine that we separated the
 main
  list in subtopics and one of them would be dashboards, charts and BI -
  getting 5-10 messages a day - would you rather moderate that or whole
  list? Would it get up in your inbox? What are the chances that a single
  mail would get missed by specialist? What about the quality of the
 answer?
  Visibility of all questions and answers on the topic? Am I the only one
 who
  thinks that libraries place books by category for convenience and access
  simplicity?
 
  There is nothing simple about fishing in 100+ items. Tom, as BI
 specialist
  you know firsthand that sorting data in the beginning eliminates order
 of
  magnitude processing later. Let us apply it to our daily life.
 
  But if there are too many they'll just post to them all. 
 
  There are 2 types of crossposting people - the ones who did not receive
 the
  answer in the previous forum and the ones who cross post from the get
 go.
  The first type is OK - moderator or users can point them to a different
  forum. There are periods in flexcomponents that every second message
 gets
  RTFM or go to flexcoders responses. The second type needs some
  discipline. Here is what moderators and users do - saying this is not
  appropriate forum, remove the message to make life easier for the rest,
  giving warning bans for a day - however harsh it sounds, it works. The
 goal
  is to service the community - not to do somebodies homework. If the
 forums
  are speedy and high quality the crossposting ceases.
 
  I have seen heavily moderated product forums on compuserve (yes, before
  Internet) 15 years ago. You had less then one hour response (datetime
  US) time on 90+% of the questions. The volume was about 500 messages
 across
  20 forums. General list was getting about 100 threads, the rest were
 much
  smaller, The answers would be actually correct ones. Vendors would have
 team
  of community moderators that would answer 50%+ of the questions in their
  domain - with multiple moderators per topic. There was very little
  repetition of the questions as people could search much better.
 
  Things come in cycles. Please consider this as best practices from the
  historical point.
 
  Now for the next cycle - can single list be better then multiple lists -
 the
  answer is yes, but not now
  The only way I can see single as an alternative to multiple list is to
  enforce tagging of the questions. That in turn means next generation of
  email clients or forcing everybody to use RSS 

[flexcoders] Parent column of ItemRenderer

2008-06-18 Thread Zee Yang
Hi,

I have a custom item renderer for an advanced data grid. My data grid
has several columns sharing the same renderer. Is there a way for the
renderer to tell which column it belongs to during runtime?



[flexcoders] How to rotate a Combo Box

2008-06-18 Thread wyattwang

Here's the problem. 

After setting myComboBox.rotation = 270 the box itself can be rotated.
But the dropdown and textInput inside won't rotate.

By extending the mx:ComboBox, dropdown.rotation = 270 will work, but
the textInput.rotation = 270 does not work. Font Arial was embedded
into the application. How to make the textInput inside rotate to 270? 

+---+
| ||
|   |
|   |
|   |
|   |
|   |
|   |
+---+

Thanks. 



[flexcoders] Re: Parent column of ItemRenderer

2008-06-18 Thread Tim Hoff

Hi Zee,

You can determine the column by looking at listData.columnIndex from
within the itemRenderer.

-TH


--- In flexcoders@yahoogroups.com, Zee Yang [EMAIL PROTECTED] wrote:

 Hi,

 I have a custom item renderer for an advanced data grid. My data grid
 has several columns sharing the same renderer. Is there a way for the
 renderer to tell which column it belongs to during runtime?





Re: [flexcoders] Parent column of ItemRenderer

2008-06-18 Thread Anatole Tartakovsky
.styleName will get you the column definition
HTH,
Anatole Tartakovsky

On Wed, Jun 18, 2008 at 3:14 PM, Zee Yang [EMAIL PROTECTED] wrote:

   Hi,

 I have a custom item renderer for an advanced data grid. My data grid
 has several columns sharing the same renderer. Is there a way for the
 renderer to tell which column it belongs to during runtime?

 



[flexcoders] Re: Flexbuilder 3 Out of Memory Error

2008-06-18 Thread Jason
So I need to revive this thread. The original problem is that a co-
worker was getting an Out of Memory error in FB3 (See post and 
response from Sherif Abdou below).  Now I have the same problem.  
Both of us had been developing with the Flex 2 SDk and Flexbuilder 
2.  We recently upgraded to Flexbuilder 3 and both of us are getting 
these error when we attempt to compile our project.

This is a large project (at least, from our perspective).  However, 
if we create small, simple Flex 3 projects, they compile just fine.

Also, if we build with FlashDevelop and the Flex 3 SDK, it also 
compiles fine.  We tried modifying the eclipse.ini file as directed, 
but with no luck.  Also tried increasing paging size in Windows for 
Flex with no luck.

Both of us have 2GB of RAM.  Any ideas?  

Thanks,

Jason Merrill 
Bank of America 
Global Technology  Operations  Global Risk LLD 
eTools  Multimedia 

Join the Bank of America Flash Platform Developer Community 

Are you a Bank of America associate interested in innovative learning 
ideas and technologies?
Check out our internal  GTO Innovative Learning Blog  subscribe. 



--- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote:

 go in the eclipse.ini file and increase all the numbers there and 
see if it helps
 
 -vmargs
 -Xms60m
 -Xmx512m
 -Djava.net.preferIPv4Stack=true
 -Djava.net.preferIPv4Stack=true
 
 
 - Original Message 
 From: Jason [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Wednesday, June 4, 2008 2:00:04 PM
 Subject: [flexcoders] Flexbuilder 3 Out of Memory Error
 
 
 
 I have a co-worker that I am trying to help troubleshoot a 
 Flexbuilder 3 issue with on Windows XP.  When she builds the 
project, 
 she gets random crashes in Flexbuilder 3.  Sometimes the project 
 builds fine, sometimes it doesn't.
 
 The error is, An out of memory error has occured. Consult 
 the Running Eclipse documentation in the readme file etc. 
 etc. 
 
 The log file has the error detailed as:
  = = = = = 
= 
 !SESSION 2008-06-04 14:39:10.991  - - -
-
 ---
 eclipse.buildId= unknown
 java.version= 1.5.0_11
 java.vendor= Sun Microsystems Inc.
 BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
 Command-line arguments:  -os win32 -ws win32 -arch x86
 
 !ENTRY org.eclipse. core.jobs 4 2 2008-06-04 14:46:29.455
 !MESSAGE An internal error occurred during: Launching Venice (3).
 !STACK 0
 java.lang.OutOfMemo ryError: Java heap space
  = = = = = 
= 
 
 She has 2GB of memory and is not running any other applications in 
 her task bar.  She's also tried messing with the XP paging size, to 
 no avail. 
 
 Any ideas? Google and Adobe wasn't much help.  Thanks.
 
 Jason Merrill
 Bank of America





Re: [flexcoders] Re: Flexbuilder 3 Out of Memory Error

2008-06-18 Thread Anatole Tartakovsky
Jason,
   It might us help if you add log of the message. Extra info might be
available via Window-Show View-Other-PDE Runtime-Show Errors.

In either case you need to bump your PermGen space - given the memory you
have -Xmx512 is low - go to eclipse shortcut, rightmouse-properties, then
add this:
C:\eclipse\eclipse.exe -clean  -vmargs -Xms512m -Xmx800m -XX:PermSize=256m
-XX:MaxPermSize=384m

Also please low one of the plugins that monitors JVM memory so you can
optimize memory usage for your project.

HTH,
Anatole Tartakovsky
Farata Systems

On Wed, Jun 18, 2008 at 4:07 PM, Jason [EMAIL PROTECTED]
wrote:

   So I need to revive this thread. The original problem is that a co-
 worker was getting an Out of Memory error in FB3 (See post and
 response from Sherif Abdou below). Now I have the same problem.
 Both of us had been developing with the Flex 2 SDk and Flexbuilder
 2. We recently upgraded to Flexbuilder 3 and both of us are getting
 these error when we attempt to compile our project.

 This is a large project (at least, from our perspective). However,
 if we create small, simple Flex 3 projects, they compile just fine.

 Also, if we build with FlashDevelop and the Flex 3 SDK, it also
 compiles fine. We tried modifying the eclipse.ini file as directed,
 but with no luck. Also tried increasing paging size in Windows for
 Flex with no luck.

 Both of us have 2GB of RAM. Any ideas?

 Thanks,

 Jason Merrill
 Bank of America
 Global Technology  Operations  Global Risk LLD
 eTools  Multimedia

 Join the Bank of America Flash Platform Developer Community

 Are you a Bank of America associate interested in innovative learning
 ideas and technologies?
 Check out our internal  GTO Innovative Learning Blog  subscribe.

 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Sherif
 Abdou [EMAIL PROTECTED] wrote:
 
  go in the eclipse.ini file and increase all the numbers there and
 see if it helps
 
  -vmargs
  -Xms60m
  -Xmx512m
  -Djava.net.preferIPv4Stack=true
  -Djava.net.preferIPv4Stack=true
 
 
  - Original Message 
  From: Jason [EMAIL PROTECTED]
  To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com
  Sent: Wednesday, June 4, 2008 2:00:04 PM
  Subject: [flexcoders] Flexbuilder 3 Out of Memory Error
 
 
 
  I have a co-worker that I am trying to help troubleshoot a
  Flexbuilder 3 issue with on Windows XP. When she builds the
 project,
  she gets random crashes in Flexbuilder 3. Sometimes the project
  builds fine, sometimes it doesn't.
 
  The error is, An out of memory error has occured. Consult
  the Running Eclipse documentation in the readme file etc.
  etc.
 
  The log file has the error detailed as:
   = = = = =
 = 
  !SESSION 2008-06-04 14:39:10.991  - - -
 -
  ---
  eclipse.buildId= unknown
  java.version= 1.5.0_11
  java.vendor= Sun Microsystems Inc.
  BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
  Command-line arguments: -os win32 -ws win32 -arch x86
 
  !ENTRY org.eclipse. core.jobs 4 2 2008-06-04 14:46:29.455
  !MESSAGE An internal error occurred during: Launching Venice (3).
  !STACK 0
  java.lang.OutOfMemo ryError: Java heap space
   = = = = =
 = 
 
  She has 2GB of memory and is not running any other applications in
  her task bar. She's also tried messing with the XP paging size, to
  no avail.
 
  Any ideas? Google and Adobe wasn't much help. Thanks.
 
  Jason Merrill
  Bank of America
 

 



Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Matt Chotin
Moderate first post is turned on for flexcoders and for flexcomponents, but I 
at least am more scanning for spam than stuff that really should be in 
flexcoders.

Matt


On 6/18/08 12:10 PM, Anatole Tartakovsky [EMAIL PROTECTED] wrote:




I would definetly vote to add moderate the first post for advanced groups 
like flexcomponents to deal with the issues Doug brought up. I believe that 
would make lists better for everyone.
Sincerely
Anatole

On Wed, Jun 18, 2008 at 1:54 PM, Anatole Tartakovsky [EMAIL PROTECTED] wrote:
Doug,
flexcomponents is not moderated in conventional sense. The name of the 
group is confusing for new users. Very few people have a sense what the group 
is for. I am more concerned that the messages that do not belong to 
flexcomponents stay there. Crossposting has to be moderated and discouraged. 
Ban them first time for some time, permanently if needed.

You can try weborb or flexjobs as examples of clearly distinct and moderated 
entries.

I am getting few emails a week from people asking me to help them to write 
hello worlld type application in Flex - or help them with blog or book code - 
to find that they do not know they need a server. We created this culture with 
free products and support - and there are people who would take advantage.

Regards,
Anatole

On Wed, Jun 18, 2008 at 12:03 PM, Doug McCune [EMAIL PROTECTED] wrote:
Out of the last 100 threads on flexcomponents 22 were cross posted to
flexcoders. Almost every one (I think with one exception) was
cross-posted by the original author immediately to both lists
(sometimes as many as 5 lists! flexcoders, flex_india, flexcomponents,
ria-india). One of them was pretty much spam, and one of them was a
job post (which shouldn't have been posted to flexcoders or
flexcomponents, but only flexjobs).

If we look at flexcomponents as a microcosm, then we have: 22%
crossposting (1% legitimate cross-posting) and 2% spam.

Yeah, this isn't a scientific survey (although I do hope to get real
results comparing the full traffic of both lists soon). But I just
thought it was interesting.

Doug


On Wed, Jun 18, 2008 at 8:44 AM, Anatole Tartakovsky
[EMAIL PROTECTED] 
mailto:anatole.tartakovsky%40gmail.commailto:anatole.tartakovsky%40gmail.com
  wrote:
 Hello Tom,

How is 1 list simpler than 1 list ?

 The same way threads by the topic are simplier then unsorted individual
 email - you read only the ones you need and fold the rest. While you can
 argue that you can sort and fold messages with some client email
 customization, it is not a trivial task unless your server or client
 supports it.

 Basically weborb is 10 messages a day, apollo is 1 and flexcomponents are 2
 - I can manage that in my daily emails. Imagine that we separated the main
 list in subtopics and one of them would be dashboards, charts and BI -
 getting 5-10 messages a day - would you rather moderate that or whole
 list? Would it get up in your inbox? What are the chances that a single
 mail would get missed by specialist? What about the quality of the answer?
 Visibility of all questions and answers on the topic? Am I the only one who
 thinks that libraries place books by category for convenience and access
 simplicity?

 There is nothing simple about fishing in 100+ items. Tom, as BI specialist
 you know firsthand that sorting data in the beginning eliminates order of
 magnitude processing later. Let us apply it to our daily life.

 But if there are too many they'll just post to them all. 

 There are 2 types of crossposting people - the ones who did not receive the
 answer in the previous forum and the ones who cross post from the get go.
 The first type is OK - moderator or users can point them to a different
 forum. There are periods in flexcomponents that every second message gets
 RTFM or go to flexcoders responses. The second type needs some
 discipline. Here is what moderators and users do - saying this is not
 appropriate forum, remove the message to make life easier for the rest,
 giving warning bans for a day - however harsh it sounds, it works. The goal
 is to service the community - not to do somebodies homework. If the forums
 are speedy and high quality the crossposting ceases.

 I have seen heavily moderated product forums on compuserve (yes, before
 Internet) 15 years ago. You had less then one hour response (datetime
 US) time on 90+% of the questions. The volume was about 500 messages across
 20 forums. General list was getting about 100 threads, the rest were much
 smaller, The answers would be actually correct ones. Vendors would have team
 of community moderators that would answer 50%+ of the questions in their
 domain - with multiple moderators per topic. There was very little
 repetition of the questions as people could search much better.

 Things come in cycles. Please consider this as best practices from the
 historical point.

 Now for the next cycle - can single list be better then multiple lists - the
 answer is yes, but not now
 The 

[flexcoders] pass in a state name to a compoenet

2008-06-18 Thread dnk
Hi there... say I have a component like:

?xml version=1.0 encoding=utf-8?
mx:Panel xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical

mx:Script
![CDATA[
[Bindable]
public var theState:State;

public function chState():void {
currentState = theState
}
]]
/mx:Script


mx:Button id=submitBtn label=Logon click=chState()/

/mx:Panel

And I want to add a custom state when this component is used:

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;  
layout=absolute xmlns:ns1=*

ns1:MyComponent theState=someState /

/mx:Application

How would i do this? My issues are obviously that the types do not  
match (String VS State).

What is the best way to do this?

DNK


Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Joseph Balderson
I think in dividing a list bursting at the seams, it seems, with too 
many diverse posts, that we don't forget that other list from which many 
migrated from when Flex 2/AS3 came out:Flashcoders.

Flashcoders (and the newer Flash_Tiger) serves as a wellspring of 
AS3/Flash API info, so I wonder how practical an ActionscriptCoders list 
would be. And general UI design is also covered in some extent in 
Flashcoders, since they deal with many of the same issues.

People make announcements related to open source projects all the time, 
and the rest should be for blogs, which is more a broadcast medium than 
lists, so the FlexAnnouncements list might not do so well.

How about this:

Existing
- FlashCoders
- FlashNewbie
- FlashTiger
- FlexCoders
- FlexComponents
- ApolloCoders (which would do well to change its name ;)
- FlexJobs

New (proposed)
- FlexNewbies
- FlexEnterprise

...and we see how they do before branching any more.

___

Joseph Balderson, Developer | http://joeflash.ca | 705-466-6345


Bjorn Schultheiss wrote:
 Existing
 - FlexCoders
 - FlexComponents
 - ApolloCoders
 - FlexJobs
 
 New
 - EnterpriseFlex
 - FlexUIDesign
 - FlexAnnouncements
 - ActionscriptCoders
 
 ?
 
 
 
 --- In flexcoders@yahoogroups.com, Bjorn Schultheiss
 [EMAIL PROTECTED] wrote:
 1. 101
 Is creating a new group for this necessary or is flexcoders already
 handling this?

 2. Coding (AS3/MXML)
 The name seems too abstract, what area are we targeting?
 Is is to show off new ideas or syntax questions.

 3. Design and UI ( Flash/Components/CSS/Skin)
 Love it! Can we replace UI with UX : )

 4. Enterprise/Best Practices/Frameworks
 Does this include WebOrb/Blaze/LCDS ?

 5. AIR - not big yet, but definitely a separate group of folks 
 Apollocoders exists. not sure what the traffic is like.





 --- In flexcoders@yahoogroups.com, Josh McDonald dznuts@ wrote:
 That's not a bad list of categories at all Anatole.

 It would be best if there's still some sort of (read-only?)
 meta-list that
 shows all messages, and if it were smart enough that you could
 read the
 all list and replies went to the correct lists it'd be a pretty good
 common ground I think. I'm no mailing-list-guy though, so no idea if
 that's
 feasible.

 -Josh

 On Tue, Jun 17, 2008 at 1:37 PM, Anatole Tartakovsky 
 anatole.tartakovsky@ wrote:

   Matt,

  Splitting the last 500 topics in groups it would be:
 1. 101
 2. Coding (AS3/MXML)
 3. Design and UI ( Flash/Components/CSS/Skin)
 4. Enterprise/Best Practices/Frameworks
 5. AIR - not big yet, but definitely a separate group of folks there

 Thank you
 Anatole Tartakovsky
 Farata Systems

 On Mon, Jun 16, 2008 at 11:28 PM, Matt Chotin mchotin@ wrote:t
 Practices/Frameworks

I do think 12 is way too high a number BTW. Would recommend
 capping at
 5 absolute max.


 On 6/16/08 8:28 PM, Matt Chotin mchotin@mchotin%40adobe.com
 wrote:

 Hey guys,

 If you think that splitting the lists is the right thing to do
 for the
 larger community then I'm not going to stop you. I think we were
 right in
 the past to recommend against the split, but I can see Anatole's
 point that
 traffic has stagnated and we'd certainly like the community to
 thrive. We'll
 certainly try to pay attention to as much as possible (not like
 it's me
 doing much but you know some Adobe folks are quite active), but no
 guarantees on how it will go. The Adobe forums themselves are
 definitely
 lacking, primarily because we can't access them via email.
 There is a
 project going on within Adobe to improve the experience
 drastically, and we
 definitely intend to split forums there (and hopefully convince
 everyone to
 come back over and move away from Yahoo Groups); but it's still a
 number of
 months away at the earliest. I would hope that folks will
 continue to help
 users of all levels, and we'll need moderators to handle whatever
 new lists
 are created.

 Matt

 On 6/16/08 8:17 PM, Bjorn Schultheiss
 bjorn.mailinglists@bjorn.mailinglists%40gmail.com
 wrote:

 I like the idea of splitting topics into different lists.
 I also like Anatole's suggestions for list types.

 Flexcoders has become to over-bloated..

 I would be in favour for looking at topics that I'm interested in.

 Perhaps this will get more of the experienced contributors back
 on the
 list.

 Imagine if OSFlash had only one mailing list.

 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com
 mailto:
 flexcoders%40yahoogroups.com
 flexcoders%2540yahoogroups.commailto:
 flexcoders%40yahoogroups.com flexcoders%2540yahoogroups.com ,
 Anatole
 Tartakovsky
 anatole.tartakovsky@ wrote:
 Dear All,
 Flexcoders has huge problem. In the last 15 month it is very much
 stagnant in terms of message count and participation. It is not
 growing and
 dropping members as fast as it gets them.

 I believe this group has overgrown the optimal size about a year
 ago and
 needs to be divided in more focused smaller groups. My 

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Joseph Balderson
 From the perspective of someone who in his opinion is only just edging 
into the advanced category in Flex, I've been a lurker for many years 
but only just now gradually changing to a more active status on the list.

To me, the volume of emails to the list was intimidating, until I 
decided to manage my lists a little better through Thunderbird 
filtering, and be disciplined about the time I take every day to review 
the list, so it doesn't impact my productivity, much like I do every day 
with the MXNA.

So I'm not convinced that splitting up the list simply to make things 
more efficient and the volume less intimidating for some people 
outweighs the potential risks. I agree with Tim Hoff (16/06/2008 10:53 
PM) -- my concern is less for new users and lurkers than it is for 
frequent posters who are the lifeblood of this community, having to 
divide their precious attention from one list to however-many, which 
would dilute the quality of all lists, and could ultimately lead to 
abandonment by regular users on all lists.

A community such as this must be a delicate balance between questions 
and answers, new users and advanced users, lurkers and frequent 
contributors. My concern is that for many, the formula works, our 
numbers are steady, and there is still a huge number of A-list 
participation. In attempting to improve the list, we could be killing it 
-- so we need to be very sure of our data before proceeding IMO.


A FAQ would be very welcome, as would Doug's recommendation for most 
commonly asked threads, as would tags, regardless of what the decision 
is on the split.

But I would request that FAQ links and tag keywords be indicated in the 
signature of each email from the list, so that the many users who don't 
use the yahoo list's web interface can easily find the info and know 
what tags to use without having to switch between their mail client and 
a browser, otherwise having a FAQ and anything else apart from the 
emails is pointless.

In fact, just having a FAQ and encouraging the use of tags could help 
many with list post management, and provide this list the boost it 
needs without taking drastic measures. This would be my request, and my 
recommendation. In addition, we could even include in the FAQ some post 
management strategies, such as filtering, tagging and colour-coding to 
help users manage the flow.

And I would suggest an automated email generated by an algorithm with 
some text like You have not posted in ___ months... or You have now 
unsubscribed... followed by please help us make flexcoders a better 
community experience by telling us why you have _

This would be a far less intrusive and intimidating follow up and data 
collection method than an email personally send from a moderator, 
especially one from Adobe. Some people might perceive such attention as 
singling them out, and using an autogenerated email would eliminate the 
manpower necessary to collect data on infrequent/unsubscribed accounts.

If we do decide to split the list at all, I would keep the number small 
just to make sure. My recommendation would be to split things into just 
three lists:
flexcoders
flexnewbie
flexenterprise

Even though the definitions are a little fuzzy, I think flexnewbie could 
be defined as not the difficulty of the question but the experience the 
user perceives themselves to be at, so there may very well be advanced 
and newbie questions on both lists, and that's okay. Likewise there will 
probably be some crossover into the flexenterprise list. I think it's 
fair to say that questions involving a substantial amount of Java/data 
services/large teams/enterprise workflows would qualify, without 
requiring the definition of enterprise be defined with scientific 
precision to participate. Too narrow a definition is a recipe for 
failure, any new the list needs to be defined without being too 
exclusive IMO.

Thanks for listening,

-- 
___

Joseph Balderson | http://joeflash.ca
Flex  Flash Platform Developer | Abobe Certified Developer  Trainer
Author, Professional Flex 3 (coming Winter 2008)
Staff Writer, Community MX | http://communitymx.com/author.cfm?cid=4674



Tom Chiverton wrote:
 On Tuesday 17 Jun 2008, Matt Chotin wrote:
 Hey folks, let's calm down a little here, K?
 
 Aye.
 
 1) Let's get an FAQ going that can be edited by moderators or members of
 the community.  
 
 This would be a huge bonus, esp. given #3.
 
 Center.  But for now how about we just allocate a page off of the
 opensource wiki.  We can pick some moderators who can edit the page and I
 will get them added so they can take care of it.  
 
 Happy to be added, drop me a note if you are not aware of my adobe.com ID 
 (it's not @halliwells).
 
 2) Some folks suggested that you either mark in the body or in the subject
 something that indicates what you're talking about.  Seems reasonable. 
 ...
 involved in the thread.  The more people 

Re: [flexcoders] capture linebreaks

2008-06-18 Thread Luke Vanderfluit
Hi.

Josh McDonald wrote:
 No, I mean /$\s*^/g which looks for any whitespace (including \n and \r) 
 between the end of a line and the beginning of the next (with the /g) so 
 you replace that with . 

Ok. Gotcha.

But for some reason that won't work in Flex's
 regexp implementation although it does work fine in Java's. The second 
 solution works fine though:
 
 var s : String = Line\nLine2;
 var rg : RegExp = /$\s*^/g;

 trace(s == \ + s + \);
 trace();   

 trace(s.replace( + rg + ,\\) == \ + 
 s.replace(rg,) + \);
 trace();   

 trace(s.split(\\\n\).join(\\) == \ + 
 s.split(\n).join() + \);
 trace();   
 
 Gives:
 
 s == Line
 Line2
 
 s.replace(/$\s*^/g,) == Line
 Line2
 
 s.split(\n).join() == LineLine2

Havent tested this yet but might need to.
Since I have found the problem of missing newlines to be caused by my 'tail' 
program, Im 
simply saving the data from the textarea 'as is' to the database. When loading 
it again 
from the db, line breaks are intact so all is good, but the practise of storing 
line 
breaks in a database doesnt sit well with me so I might do something of an 
alternative 
solution...


Kr.
Luke.








 
 -Josh
 
 On Wed, Jun 18, 2008 at 9:36 AM, Luke Vanderfluit 
 [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:
 
 Hi.
 
 Thanks for your help.
 
 Josh McDonald wrote:
   If the /$\s*^/g regex doesn't work (it should though),
 
 You probably mean /^\s*$/ which is looking for any number of spaces
 between the beginning
 and end of a line...
 
  try
   string.split(\n).join() - it probably won't be fast,
 problem is I cant get it to recognise the \n
 
 Kr.
 Luke.
 
  but it'll get
   you by, and you can write something specific using indexOf etc
 later if
   speed becomes a problem.
  
   -Josh
  
   On Wed, Jun 18, 2008 at 9:24 AM, Luke Vanderfluit
   [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
   mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
  
   Hi.
  
   shaun etherton wrote:
 Hey Luke,

 Luke Vanderfluit wrote:
 Ive tried this:
  var myp:RegExp = /\n/g;

 have you tried \r
  
   Yes. Ive tried /\r\n/, /\r/, /\n/
   Also tried setting is as in new RegExp(//n,g); etc.
  
   Kr.
   Luke.
  

 cheers,
  
  
   --
   Luke Vanderfluit
   Analyst / Web Programmer
   e3Learning.com.au http://e3Learning.com.au
 http://e3Learning.com.au
   08 8221 6422
  
   
  
   --
   Flexcoders Mailing List
   FAQ:
 http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
   Search Archives:
   http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo!
   Groups Links
  
  
  mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
   mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
  
  
  
  
  
   --
   Therefore, send not to know For whom the bell tolls. It tolls
 for thee.
  
   :: Josh 'G-Funk' McDonald
   :: 0437 221 380 :: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 
 
 --
 Luke Vanderfluit
 Analyst / Web Programmer
 e3Learning.com.au http://e3Learning.com.au
 08 8221 6422
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo!
 Groups Links
 
 
mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 
 
 
 
 
 -- 
 Therefore, send not to know For whom the bell tolls. It tolls for thee.
 
 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-- 
Luke Vanderfluit
Analyst / Web Programmer
e3Learning.com.au
08 8221 6422


[flexcoders] Re: Flexbuilder 3 Out of Memory Error

2008-06-18 Thread Jason
Window-Show View-Other-PDE Runtime-Show Errors

Hmm, I don't see Show View under Window in FB3. I see Window  Other 
Views, but don't see PDE Runtime anywhere.

I added those params you suggested to the Eclipse shortcut, but the 
error is still there.  

Any other ideas?  So when Flexbuilder launches, it's really first 
Eclipse.exe and then it gets Flexbuilder added on to it somehow?  

Jason Merrill



Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-18 Thread Doug McCune
I'd just like to point out that we've just had a 108-message thread
among 20 different Flex developers in 2 days. Somehow among the
stagnation and overwhelming traffic we've all had a fantastic
discussion :) I think this thread is an argument that this list is
alive and very healthy.

Doug

On Wed, Jun 18, 2008 at 2:40 PM, Joseph Balderson [EMAIL PROTECTED] wrote:
  From the perspective of someone who in his opinion is only just edging
 into the advanced category in Flex, I've been a lurker for many years
 but only just now gradually changing to a more active status on the list.

 To me, the volume of emails to the list was intimidating, until I
 decided to manage my lists a little better through Thunderbird
 filtering, and be disciplined about the time I take every day to review
 the list, so it doesn't impact my productivity, much like I do every day
 with the MXNA.

 So I'm not convinced that splitting up the list simply to make things
 more efficient and the volume less intimidating for some people
 outweighs the potential risks. I agree with Tim Hoff (16/06/2008 10:53
 PM) -- my concern is less for new users and lurkers than it is for
 frequent posters who are the lifeblood of this community, having to
 divide their precious attention from one list to however-many, which
 would dilute the quality of all lists, and could ultimately lead to
 abandonment by regular users on all lists.

 A community such as this must be a delicate balance between questions
 and answers, new users and advanced users, lurkers and frequent
 contributors. My concern is that for many, the formula works, our
 numbers are steady, and there is still a huge number of A-list
 participation. In attempting to improve the list, we could be killing it
 -- so we need to be very sure of our data before proceeding IMO.


 A FAQ would be very welcome, as would Doug's recommendation for most
 commonly asked threads, as would tags, regardless of what the decision
 is on the split.

 But I would request that FAQ links and tag keywords be indicated in the
 signature of each email from the list, so that the many users who don't
 use the yahoo list's web interface can easily find the info and know
 what tags to use without having to switch between their mail client and
 a browser, otherwise having a FAQ and anything else apart from the
 emails is pointless.

 In fact, just having a FAQ and encouraging the use of tags could help
 many with list post management, and provide this list the boost it
 needs without taking drastic measures. This would be my request, and my
 recommendation. In addition, we could even include in the FAQ some post
 management strategies, such as filtering, tagging and colour-coding to
 help users manage the flow.

 And I would suggest an automated email generated by an algorithm with
 some text like You have not posted in ___ months... or You have now
 unsubscribed... followed by please help us make flexcoders a better
 community experience by telling us why you have _

 This would be a far less intrusive and intimidating follow up and data
 collection method than an email personally send from a moderator,
 especially one from Adobe. Some people might perceive such attention as
 singling them out, and using an autogenerated email would eliminate the
 manpower necessary to collect data on infrequent/unsubscribed accounts.

 If we do decide to split the list at all, I would keep the number small
 just to make sure. My recommendation would be to split things into just
 three lists:
 flexcoders
 flexnewbie
 flexenterprise

 Even though the definitions are a little fuzzy, I think flexnewbie could
 be defined as not the difficulty of the question but the experience the
 user perceives themselves to be at, so there may very well be advanced
 and newbie questions on both lists, and that's okay. Likewise there will
 probably be some crossover into the flexenterprise list. I think it's
 fair to say that questions involving a substantial amount of Java/data
 services/large teams/enterprise workflows would qualify, without
 requiring the definition of enterprise be defined with scientific
 precision to participate. Too narrow a definition is a recipe for
 failure, any new the list needs to be defined without being too
 exclusive IMO.

 Thanks for listening,

 --
 ___

 Joseph Balderson | http://joeflash.ca
 Flex  Flash Platform Developer | Abobe Certified Developer  Trainer
 Author, Professional Flex 3 (coming Winter 2008)
 Staff Writer, Community MX | http://communitymx.com/author.cfm?cid=4674



 Tom Chiverton wrote:
 On Tuesday 17 Jun 2008, Matt Chotin wrote:
 Hey folks, let's calm down a little here, K?

 Aye.

 1) Let's get an FAQ going that can be edited by moderators or members of
 the community.

 This would be a huge bonus, esp. given #3.

 Center.  But for now how about we just allocate a page off of the
 opensource wiki.  We can pick some moderators 

RE: [flexcoders] Re: My Web Service with soap headers code no longer work with Flex 3

2008-06-18 Thread Rick Winscot
Mark -

 

If you have useProxy = true . then you would be using Flash Proxy/BlazeDS.
Just flipping the bit isn't going to do anything for you. As per your
example. What you see is the effect of the changes in the RPC bits in the
frameworks (2.0.1 vs. 3.0). So. again - what you see is what I would expect.
With regard to the crossdomain - the name is misleading with the addition of
meta-policy filters. The authorization elements apply to 'all' Flash
clients. on the same domain or not.

 

Rick Winscot

 

 

 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mark
Sent: Wednesday, June 18, 2008 9:46 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: My Web Service with soap headers code no longer
work with Flex 3

 

So I downloaded Charles 3.2.1 to see what I'm getting. Running the 
code from 2.0.1 all is fine. But with 3.0 here's what I'm getting.

soap:Envelope 
xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema;
soap:Body
soap:Fault
faultcodesoap:Server/faultcode
faultstringServer was unable to process request. --gt; Object 
reference not set to an instance of an object./faultstring
detail /
/soap:Fault
/soap:Body
/soap:Envelope

Under the Request top tab and XML Text bottom tab there's some 
differences:
!-- From 2.0.1 GOOD --

SOAP-ENV:Envelope xmlns:SOAP-
ENV=http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
SOAP-ENV:Header
AuthHeader xmlns=http://tempuri.org/;
UserName
admin
/UserName
Password
admin
/Password
/AuthHeader
/SOAP-ENV:Header
SOAP-ENV:Body
PullXML xmlns=http://tempuri.org/; /
/SOAP-ENV:Body
/SOAP-ENV:Envelope

!-- From 3.0 BAD --
SOAP-ENV:Envelope xmlns:SOAP-
ENV=http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:s=http://www.w3.org/2001/XMLSchema; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
SOAP-ENV:Header
ns0:AuthHeader xmlns=http://tempuri.org/; 
xmlns:ns0=http://radar.us.na.ey.net/RadarXML.asmx;
UserName
admin
/UserName
Password
admin
/Password
/ns0:AuthHeader
/SOAP-ENV:Header
SOAP-ENV:Body
s0:PullXML xmlns:s0=http://tempuri.org/; /
/SOAP-ENV:Body
/SOAP-ENV:Envelope

Another point to mention is that the swf and the wsdl sit in the 
same direcory on the server so a crossdomain file isn't necessary. 
But again, I can't get this to rum from Flex Builder. I also tested 
this with useProxy set to true and false. Setting it to false gives 
the same response, seting it to true shoot off new errors.

It sounds like from what Rick was saying this is not an issue with 
the Flash Player as I'm using 9.0.124. This is an issue with Flex 
3.0, is that correct?

--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com ,
Rick Winscot [EMAIL PROTECTED] 
wrote:

 Tracy - actually, you are right on the money. The Authorization 
header was
 blocked and then re-instated in 9.0.124. You can still work around 
the issue
 if you compile in Flex 2.0.1 since the RPC bits are still intact 
there.
 however - in 3.0 they have changed.
 
 
 
 From the 3.0.x Flex SDK - AbstractWebService.as
 
 
 
  The username and password to authenticate a user when accessing 
the
 webservice. These will be passed as part of the HTTP Authorization 
header
 from the proxy to the endpoint. If useProxy is false this property 
will be
 ignored.
 
 
 
 There is also the issue of allowing the header from your 
crossdomain file.
 
 
 
 http://kb.adobe.com/selfservice/viewContent.do?externalId=kb403184 
 
 
 
 
 Rick Winscot
 
 
 
 
 
 From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com  
[mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com ]
On
 Behalf Of Mark
 Sent: Tuesday, June 17, 2008 9:34 AM
 To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com 
 Subject: [flexcoders] Re: My Web Service with soap headers code no 
longer
 work with Flex 3
 
 
 
 HI,
 
 I guess what I'm not understanding is the fact that when I run 
this 
 code from Flex Builder 2 it works, but when I run it out of FB 3 
it 
 doesn't. The Flash Player version would make sence to me but not 
 working in one and not the other. I'm using 9.0.124.0 Debug.
 
 HERE'S MY ERROR IN FB3:
 
 (mx.rpc::Fault)#0
 errorID = 0
 faultCode = Server.Error.Request
 faultDetail = Error: [IOErrorEvent type=ioError bubbles=false 
 cancelable=false eventPhase=2 text=Error #2032: Stream Error. 
URL: 
 http://radar.us.na.ey.net/RadarXML.asmx;]. URL: 
 http://radar.us.na.ey.net/RadarXML.asmx;
 faultString = HTTP request error
 message = faultCode:Server.Error.Request faultString:'HTTP 
 request error' faultDetail:'Error: [IOErrorEvent type=ioError 
 bubbles=false cancelable=false eventPhase=2 text=Error #2032: 
 Stream Error. URL: http://radar.us.na.ey.net/RadarXML.asmx;]. URL: 
 http://radar.us.na.ey.net/RadarXML.asmx'
 name = Error
 rootCause = (flash.events::IOErrorEvent)#1
 bubbles = false
 

[flexcoders] Diagonal (hatched) fill

2008-06-18 Thread simonjpalmer
anyone know whether there is built in support for a fill containing
diagonal lines?  I want to have a stacked bar chart with the upper
portion of the stack being hatched.

Any clues?  I can't find anything.
Thx



  1   2   >