[flexcoders] Tile and 100% width

2009-05-22 Thread Maciek Sakrejda
container, but just tall enough to fit its children. -Maciek

[flexcoders] PopUpButton.popUp

2009-04-28 Thread Maciek Sakrejda
this, other than explicitly calling the setter, which I am pretty sure I'm *not* doing. Any ideas? This seems to happen especially when the window is resized. Thanks, Maciek

Re: [flexcoders] Dynamic Flex Stacked Column Chart

2009-04-23 Thread Maciek Sakrejda
What do you mean by aligned with each other? -Original Message- From: Richard Rodseth rrods...@gmail.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Dynamic Flex Stacked Column Chart Date: Thu, 23 Apr 2009 13:13:51 -0700 Trying one

RE: [flexcoders] Re: Accessibility stopped working

2009-04-22 Thread Maciek Sakrejda
on something like UIComponent createChildren() or something). -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Alex Harui aha...@adobe.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re

RE: [flexcoders] chart axis renderers inside data area

2009-04-21 Thread Maciek Sakrejda
I wonder if putting the AxisRenderer in the chart's annotationElements array would work... -Original Message- From: flexcoders@yahoogroups.com on behalf of thomas parquier Sent: Tue 4/21/2009 11:17 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] chart axis renderers inside

Re: [flexcoders] how to convert Html pages or text(html text) into a pdf document.

2009-04-20 Thread Maciek Sakrejda
AlivePDF is typically the way to go. What are your desired results? -Original Message- From: Hasain Sab hasainsa...@yahoo.co.in Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] how to convert Html pages or text(html text) into a pdf document.

Re: [flexcoders] Re: Datagrid question

2009-04-20 Thread Maciek Sakrejda
It seems like the license number is not just a button label--it's actually a part of your model. Perhaps that column should render the number associated with each user (if any). If there's a number, display that. If it's NaN (or -1, or whatever invalid number you choose), display it as a

Re: [flexcoders] inter module communication

2009-04-20 Thread Maciek Sakrejda
Does your top-level Application declare a TextCopyEvent type? If these are only defined in modules, you'll have problems because only one module will own that type. See the modules presentation on Alex's blog. -Maciek -Original Message- From: vikash kumar vikash.kuma...@in.com Reply

Re: [flexcoders] how to avoid cacheing XML

2009-04-17 Thread Maciek Sakrejda
2009 22:46:39 +0700 Thnx, I was wondering if there was a not so ugly technic for do that...reminds me my old times with AS...seems nothing changed...wonder why there is a tool for do so in AIR while there is not in FLEX En/na Maciek Sakrejda ha escrit: The foolproof (albeit ugly) way

Re: [flexcoders] Being able to recognize when mouse is hovering over a line

2009-04-17 Thread Maciek Sakrejda
You would have to listen for mouse events on the container where the line is drawn, and calculate to see if you're actually on (or near) the line. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: manorite04 bdins...@gmail.com Reply-to: flexcoders

RE: [flexcoders] how to avoid cacheing XML

2009-04-17 Thread Maciek Sakrejda
parameter, but whatever floats your boat. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Tracy Spratt tspr...@lariatinc.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] how to avoid cacheing XML Date: Fri, 17 Apr

Re: [flexcoders] how to avoid cacheing XML

2009-04-16 Thread Maciek Sakrejda
The foolproof (albeit ugly) way of doing this is to append a dummy variable, e.g., the current time, to your request: http://localhost/myapp/my.xml?time=128478334 You can do this by adding a Date().getTime() parameter to your URLVariables. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

Re: [flexcoders] Cairngorm sub-applications Remoting

2009-04-16 Thread Maciek Sakrejda
folks on the list that this would be a Bad Idea. However, I believe they suggested separate apps--just as you are doing. Have you tried loading the .swfs into the same appdomain? -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Erich Cervantez f

Re: [flexcoders] building a dataprovider in Java

2009-04-15 Thread Maciek Sakrejda
in the result set metadata --- row.put(column name, row value) -- list.add(row) and then return the list to Flex. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: netdeep deep...@chartertn.net Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com

Re: [flexcoders] Problem with LinearAxis on an horizontal axis

2009-04-13 Thread Maciek Sakrejda
Enri, LinearAxis should do just what you expect--CategoryAxis is more like the behavior you are describing. Can you show us more details on your chart definition? -Maciek -Original Message- From: enriirne enrii...@yahoo.it Reply-to: flexcoders@yahoogroups.com To: flexcoders

RE: [flexcoders] Form field clearing

2009-04-09 Thread Maciek Sakrejda
Alex's suggestion is probably the right thing to do, but you can also take a look at AdvancedForm from flexlib: http://flexlib.googlecode.com/svn/trunk/examples/AdvancedForm/AdvancedForm_Sample.swf -Maciek -Original Message- From: flexcoders@yahoogroups.com on behalf of smccran Sent

RE: [flexcoders] Re: Illegible axis labels

2009-04-09 Thread Maciek Sakrejda
I get the following error when trying to use your example: [RPC Fault faultString=Error #1088: The markup in the document following the root element must be well-formed. faultCode=Client.CouldNotDecode faultDetail=null] at

[flexcoders] tiling FormItems

2009-04-09 Thread Maciek Sakrejda
. I've looked at the source and FormItem seems to assume it's in a Form in a couple of places, but nothing that looks terribly important. Am I safe putting FormItems in a Tile? -Maciek

RE: [flexcoders] Cant receive socket data

2009-04-09 Thread Maciek Sakrejda
You are an optimist: you are not listening for flash.events.IOErrorEvent.IO_ERROR or flash.events.SecurityErrorEvent.SECURITY_ERROR from the XMLSocket. -Original Message- From: flexcoders@yahoogroups.com on behalf of john fisher Sent: Thu 4/9/2009 2:11 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Cant receive socket data

2009-04-09 Thread Maciek Sakrejda
Interesting. We ran into this issue with URLStream: http://bugs.adobe.com/jira/browse/FP-748 -- maybe your problem is related? Actually, searching Adobe JIRA for XMLSocket turns up a number of bugs that sound vaguely like what you're experiencing... -Maciek -Original Message- From

Re: [flexcoders] Full date

2009-04-08 Thread Maciek Sakrejda
Probably because you're using the wrong format string: http://livedocs.adobe.com/flex/3/langref/mx/formatters/DateFormatter.html#formatString I guess the C, Java, and .NET flavors did not provide enough inconsistent implementations... -Original Message- From: Thiago Rodrigues

Re: [flexcoders] Re: How can I have my class return an ArrayCollection?

2009-04-08 Thread Maciek Sakrejda
paradigm is built around nonblocking actions). I think the only think you can do is have Services extend EventDispatcher and dispatch an event when the result is returned, and listen for that in the client. -Maciek -Original Message- From: - - sailorse...@yahoo.com Reply-to: flexcoders

Re: [flexcoders] Re: How can I have my class return an ArrayCollection?

2009-04-08 Thread Maciek Sakrejda
, but it still might be better than manually configuring listeners to ClientServices... -Maciek -Original Message- From: - - sailorse...@yahoo.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: How can I have my class return an ArrayCollection

Re: [flexcoders] Re: How can I have my class return an ArrayCollection?

2009-04-08 Thread Maciek Sakrejda
: [flexcoders] Re: How can I have my class return an ArrayCollection? Date: Wed, 8 Apr 2009 12:02:11 -0700 (PDT) Hi Maciek, would you have an example for BindingUtils since I will be consuming ClientServices in ActionScript? Thanks

RE: [flexcoders] select non-top level items in a hierarchical menu

2009-04-07 Thread Maciek Sakrejda
Right, but that click does *not* cascade through parent menus--this is the problem. If I have a hierarchy, I can only use this trick on the top-most menu unless I add handlers to all menus in the chain, and I'm not sure how to find these a priori... -Maciek -Original Message- From

Re: [flexcoders] Freelance / Contract Jobs

2009-04-07 Thread Maciek Sakrejda
http://tech.groups.yahoo.com/group/flexjobs/ -Original Message- From: Kyle ktya...@gmail.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Freelance / Contract Jobs Date: Tue, 07 Apr 2009 17:57:26 - Does anyone have any good resources for

Re: [flexcoders] undefined SampleDataEvent

2009-04-06 Thread Maciek Sakrejda
Have you changed the project properties to target FP10? -Original Message- From: Florian Heft mailingli...@fam-heft.de Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] undefined SampleDataEvent Date: Sun, 05 Apr 2009 17:02:31 +0200 Hello

Re: [flexcoders] Re: Bizarre browser inconsistencies...?

2009-04-06 Thread Maciek Sakrejda
This could be due to browser caching--it could be that you made the change, but the browser cached the old .swf, so you never actually tested that change. Some people append the current time to the .swf request to get around this issue. -Maciek -Original Message- From: one_rabbit_one

Re: [flexcoders] Bar Chart Label - probably easy for most to resolve!!

2009-04-06 Thread Maciek Sakrejda
CategoryAxis.labelFunction, and use IP for the categoryField. -Original Message- From: flexnewbie06 flexnewbi...@yahoo.ca Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Bar Chart Label - probably easy for most to resolve!! Date: Mon, 06 Apr 2009

[flexcoders] select non-top level items in a hierarchical menu

2009-04-06 Thread Maciek Sakrejda
. -Maciek

Re: [flexcoders] select non-top level items in a hierarchical menu

2009-04-06 Thread Maciek Sakrejda
So it looks like I can fake this by tracking a stack of open menus and dynamically adding / removing MOUSE_DOWN listeners to the last menu opened / closed. This seems... ahem... less than ideal. Anyone have a better suggestion? -Maciek -Original Message- From: Maciek Sakrejda msakre

Re: [flexcoders] Best approach for Dynamic UI generation from XML...

2009-04-03 Thread Maciek Sakrejda
as appropriate. Having Factories for both Containers and Widgets helps keeps the coupling down. Are there limits on the sorts of things expected from your XML layer, or have you been given the daunting task of re-implementing mxmlc in actionscript? -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

[flexcoders] parent MenuItem in hierarchical menus?

2009-04-03 Thread Maciek Sakrejda
] -food (oranges) --apples --oranges --milkshakes -cars (flying) --flying --not flying --amphibious Or would this be easier through a custom data descriptor? -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

Re: [flexcoders] Dynamic creation of ComboBox in ActionScript

2009-04-02 Thread Maciek Sakrejda
in the file, define the handler, as you would in MXML: private function handleCreationComplete(e:FlexEvent):void { ... } -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: brad.bueche b...@bueche.com Reply-to: flexcoders@yahoogroups.com To: flexcoders

Re: [flexcoders] Using Sharde Object to communicate with a local SWF file from a desktop application

2009-04-02 Thread Maciek Sakrejda
Depending on what you want, XMLSocket might be a better fit than SharedObject... -Original Message- From: Flap Flap flapflapl...@kilooctet.net Reply-to: flexcoders@yahoogroups.com To: FlexCoders flexcoders@yahoogroups.com Subject: [flexcoders] Using Sharde Object to communicate with a

Re: [flexcoders] Change viewStack index from different Panels

2009-04-02 Thread Maciek Sakrejda
selectedIndex is a property, not a method. Try click=myviewStack.selectedIndex = 0 -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Thiago Rodrigues thiagotrr...@yahoo.com.br Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject

Re: [flexcoders] Re: Ribbon in FLEX

2009-04-01 Thread Maciek Sakrejda
more off-topic noise than his actual contributions. -Maciek -Original Message- From: Cole Joplin cole_jop...@yahoo.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Ribbon in FLEX Date: Wed, 1 Apr 2009 14:41:10 -0700 (PDT) More

RE: [flexcoders]Where does my SWF gain it's weight?

2009-03-27 Thread Maciek Sakrejda
If you have version control, just do a binary search through history to see where the bloat hit (something à la git bisect, though this can be easily scripted if you use another vcs). As far as actually analyzing a .swf and figuring out the bloat, perhaps someone else will chime in. You can

[flexcoders] synchronized DataTips?

2009-03-25 Thread Maciek Sakrejda
either one is triggered. E.g., if a user hovers over the first '+' in s1, I want the DataTip for that '+' to show, as well as the DataTip for the first '+' in s2. Any ideas? -Maciek

RE: [flexcoders] httpservice formatted as Object 0 = 0 but 1 = 1

2009-03-19 Thread Maciek Sakrejda
Could this have something to do with the fact that 0 coerced to a Boolean is false and '0' is true, whereas both 1 and '1' are true? -Original Message- From: flexcoders@yahoogroups.com on behalf of Gregory Kelley Sent: Thu 3/19/2009 9:32 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] using mxmlc/compc with 64-bit, 1.6 JVM

2009-03-18 Thread Maciek Sakrejda
What kind of problems are you seeing. Perhaps this is the JVM segfault a co-worker ran into on a 64-bit JVM on OS X? -Original Message- From: Glenn Jones tgjone...@gmail.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] using mxmlc/compc with

RE: [flexcoders] swf file size changes from build to build?

2009-03-18 Thread Maciek Sakrejda
The size of the variation is indeed surprising: there's almost 200k between the extremes! I can't imagine something like embedding a different build date making that much of a difference... -Original Message- From: flexcoders@yahoogroups.com on behalf of Gordon Smith Sent: Wed

Re: [flexcoders] JVM segfault (!) running mxmlc on OS X

2009-03-17 Thread Maciek Sakrejda
Anyone? -Original Message- From: Maciek Sakrejda msakre...@truviso.com Reply-to: flexcoders@yahoogroups.com To: flexcoders flexcoders@yahoogroups.com Subject: [flexcoders] JVM segfault (!) running mxmlc on OS X Date: Mon, 16 Mar 2009 17:47:26 -0700 A co-worker of mine recently ran

Re: [flexcoders] null parent for ChartLabel

2009-03-16 Thread Maciek Sakrejda
get a simple re-parenting test case to repro this, and I'll file a bug with that. Thanks, Maciek -Original Message- From: Tom Chiverton tom.chiver...@halliwells.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] null parent for ChartLabel Date

Re: [flexcoders] Perplexing regex/replace() issue

2009-03-16 Thread Maciek Sakrejda
of replace, where you provide a function to get the replacement (see examples at http://livedocs.adobe.com/flex/3/langref/String.html#replace() ). -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: jimmy5804 jimmy5...@yahoo.com Reply-to: flexcoders@yahoogroups.com

Re: [flexcoders] null parent for ChartLabel

2009-03-16 Thread Maciek Sakrejda
a ticket if necessary. Thanks, -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Maciek Sakrejda msakre...@truviso.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] null parent for ChartLabel Date: Mon, 16 Mar 2009

[flexcoders] JVM segfault (!) running mxmlc on OS X

2009-03-16 Thread Maciek Sakrejda
A co-worker of mine recently ran into a JVM segmentation fault (!) when running mxmlc on our project. This happens for both Java 1.5 and 1.6. I have not seen anything relevant in JIRA about OS X segfaults. Any ideas? His segfault information follows. -- Maciek Sakrejda Truviso, Inc. http

Re: [flexcoders] char Type

2009-03-13 Thread Maciek Sakrejda
It does not--you would typically use Strings instead. E.g., String.charAt(index) returns a String. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: christophe_jacquelin christophe_jacque...@yahoo.fr Reply-to: flexcoders@yahoogroups.com To: flexcoders

Re: [flexcoders] Array of objects

2009-03-13 Thread Maciek Sakrejda
Note that the annotation is only for compile-time checking (and only for MXML, it looks like?), so you were still mostly correct, Paul. If he wants to get really fancy and can require FlashPlayer 10, there's always Vector: http://livedocs.adobe.com/flex/3/langref/Vector.html -- Maciek Sakrejda

[flexcoders] null parent for ChartLabel

2009-03-13 Thread Maciek Sakrejda
be happening (I can't nail down a simple set of steps to this)? Any thoughts for workarounds? Thanks, Maciek

Re: [flexcoders] Re: Question from a C developper

2009-03-12 Thread Maciek Sakrejda
BigInteger class and do the math internally. That's probably going to be quite ugly and complicated, especially since you can't use operator overloading for basic arithmetic. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

Re: [flexcoders] Fwd: Graph Question

2009-03-06 Thread Maciek Sakrejda
You can create your own axis that extends, e.g., LinearAxis, and override guardMinMax to return better bounds. It's not pretty, but it works. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Vik vik@gmail.com Reply-To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Compressing messages/data: What binary/compression formats are workable in Flex?

2009-03-06 Thread Maciek Sakrejda
better performance with negligible complexity for some stuff. -Maciek -Original Message- From: David Adams dpad...@gmail.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Compressing messages/data: What binary/compression formats are workable

Re: [flexcoders] AsyncToken with special chars

2009-03-05 Thread Maciek Sakrejda
This sounds like your problem: https://bugs.adobe.com/jira/browse/SDK-18326 Fixed in the 3.0.3 that recently went out, according to the release notes. -Original Message- From: thibodeau.alain thibodeau.al...@yahoo.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com

Re: [flexcoders] Help the Flex Team by taking our survey!

2009-02-27 Thread Maciek Sakrejda
If anyone is interested in the fate of Flex on Linux, please take the survey--there are a number of Linux-related questions. Long live Flex Builder Linux! Maybe in 277 days we'll actually get a beta instead of a fifth alpha (or--God forbid--dropped support). -- Maciek Sakrejda Truviso, Inc. http

Re: [flexcoders] Question about how to draw a line connecting two UIComponent

2009-02-27 Thread Maciek Sakrejda
It's not a drop-in library, but you may want to take a look at Simon Gladman's node-based UI: http://flexmonkey.blogspot.com/2008/10/visual-node-based-calculator-in-flex.html -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: carlo giordano giordano1

Re: [flexcoders] Re: Loader or URLRequest Issues on Mac

2009-02-26 Thread Maciek Sakrejda
is actually pretty good about this, but I figure it can't hurt to encourage the behavior). Thanks, -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

Re: [flexcoders] Re: ToggleButtonBar xml based dataProvider (2)

2009-02-26 Thread Maciek Sakrejda
Not by default, but there are about a million and a half examples if you search the web. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: markgoldin_2000 markgoldin_2...@yahoo.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject

Re: [flexcoders] Reading the output of an AIR application in C#

2009-02-26 Thread Maciek Sakrejda
I think you should be able to have the C# app open an XML socket server, and communicate back through XMLSocket from Flex. It's much more straightforward than reimplementing LocalConnection, and much more flexible than communicating through a file. -- Maciek Sakrejda Truviso, Inc. http

Re: [flexcoders] Enum in Fles

2009-02-26 Thread Maciek Sakrejda
Enum instance to getItemIndex, the ArrayCollection won't find it because it uses == to compare objects, and two separate instances of the same Enum are not ==. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: sunmoorthy1 sunmoort...@yahoo.com Reply

Re: [flexcoders] Reading compressed file in AS 3

2009-02-26 Thread Maciek Sakrejda
and server and compare? -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: ACasualObserver pof...@yahoo.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Reading compressed file in AS 3 Date: Thu, 26 Feb 2009 21:45:19

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Maciek Sakrejda
, go with Europa. We've hit a number of problems with Ganymede. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Tyler Kocheran rfkroc...@gmail.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Tons of errors

Re: [flexcoders] design question: editing / saving complex value objects

2009-02-19 Thread Maciek Sakrejda
Anyone? I'm sure this sort of thing comes up pretty frequently--I'd be curious to know how other Flex users tackle it. -Maciek -Original Message- From: Maciek Sakrejda msakre...@truviso.com Reply-To: flexcoders@yahoogroups.com To: flexcoders flexcoders@yahoogroups.com Subject

[flexcoders] Label as item renderer cuts off data when opaqueBackground specified

2009-02-19 Thread Maciek Sakrejda
=category/ /mx:columns /mx:DataGrid Anyone run into this? -Maciek

RE: [flexcoders] design question: editing / saving complex valueobjects

2009-02-19 Thread Maciek Sakrejda
[mailto:flexcod...@yahoogroups.com] On Behalf Of Maciek Sakrejda Sent: Thursday, February 19, 2009 11:21 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] design question: editing / saving complex valueobjects Anyone? I'm sure this sort of thing comes up pretty frequently--I'd be curious to know

[flexcoders] design question: editing / saving complex value objects

2009-02-18 Thread Maciek Sakrejda
, though I'm looking into Mate right now). Thanks, Maciek

Re: [flexcoders] Using Python with Flex

2009-02-17 Thread Maciek Sakrejda
http://pyamf.org/ ? -Original Message- From: rbross77 ro...@cswllc.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Using Python with Flex Date: Tue, 17 Feb 2009 19:38:11 - Hello, I am look ing for some code example of using Python with

Re: [flexcoders] Re: Flex RegExp issues

2009-02-09 Thread Maciek Sakrejda
Python has a handy re.escape() for just this sort of situation, but it looks like ActionScript lacks it. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: mmormando m...@mormando.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com

RE: [flexcoders] Java enum in Flex3

2009-02-05 Thread Maciek Sakrejda
is tricky, especially when dealing with collections and other data structures (since they'll already be using the standard '==' equality checks). -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Seth Hodgson shodg...@adobe.com Reply-To: flexcoders

Re: [flexcoders] Re: services-config.xml question

2009-02-04 Thread Maciek Sakrejda
file. Our endpoints look like this: endpoint uri=../../graniteamf/amf class=flex.messaging.endpoints.AMFEndpoint/ We still haven't found a good way to handle http vs https. You can always programmatically configure your channels and endpoints, but bleah... -- Maciek Sakrejda Truviso, Inc. http

RE: [flexcoders] Java enum in Flex3

2009-02-04 Thread Maciek Sakrejda
the name of the Enum; readExternal() tries to find the name of the object in the constants defined by the Enum. The RemoteAlias metadata is set up as for a standard Java class. Are we asking for trouble in using this method? Is there something inherently dangerous here? -- Maciek Sakrejda Truviso, Inc

Re: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Maciek Sakrejda
, but the example I linked has source. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Mark Easton mar...@azurebell.co.nz Reply-To: flexcoders@yahoogroups.com To: Flexcoders flexcoders@yahoogroups.com Subject: [flexcoders] Charting 1 minute data over 1 year Date: Fri, 30

RE: [flexcoders] Charting 1 minute data over 1 year

2009-01-29 Thread Maciek Sakrejda
of the general trends, a quick indication of outliers, and an ability to zoom in on any single section fairly easily. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Mark Easton mar...@azurebell.co.nz Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com

RE: [flexcoders] Charting puzzle?

2009-01-28 Thread Maciek Sakrejda
In LD_minutes, you have a data point with used: 48060 ( 6000). When you set a max, values larger than that are not plotted (questionable, and a decision that makes issues like this really hard to diagnose, but not entirely crazy). -Maciek -Original Message- From: flexcoders

Re: [flexcoders] How to compile multiple modules with mxmlc ant task

2009-01-27 Thread Maciek Sakrejda
=module2.mxml/ /antcall antcall target=build-module param name=module.mxml value=module3.mxml/ /antcall /target target name=build-module mxmlc file=flex/src/${module.mxml} ... -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: aejaz_98 aejaz

Re: [flexcoders] Flex 3.3

2009-01-27 Thread Maciek Sakrejda
Any chance the charts will be separated from FB? FB is a fine tool, but for, say, a build system, this coupling just doesn't make sense. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Matt Chotin mcho...@adobe.com Reply-To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Base one mxml component on another from Library

2009-01-26 Thread Maciek Sakrejda
com.truviso.module.*), but without the error message, it's hard to tell. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: markgoldin_2000 markgoldin_2...@yahoo.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Base one

[flexcoders] sorting data on non-grouped field in an advanceddatagrid

2009-01-26 Thread Maciek Sakrejda
dataField=category/ mx:AdvancedDataGridColumn dataField=value/ /mx:columns /mx:AdvancedDataGrid /mx:Application -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

Re: [flexcoders] very odd error

2009-01-23 Thread Maciek Sakrejda
experience here--but I've run into this in Flex previously under similar circumstances) -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: nwebb neilw...@gmail.com Reply-To: flexcoders@yahoogroups.com To: flexcoders flexcoders@yahoogroups.com Subject: [flexcoders

Re: [flexcoders] DataGrid - Smooth vertical scrolling

2009-01-22 Thread Maciek Sakrejda
Paging. I've seen a couple of different implementations in blog posts; never actually tried this myself, but it's a common paradigm and the blog posts looked straightforward. I'm actually sort of surprised that neither the DataGrid nor the AdvancedDataGrid build this in. -- Maciek Sakrejda

Re: [flexcoders] copyright notices in code

2009-01-21 Thread Maciek Sakrejda
recognize the copyright header it spits out, updating it to a new wording is trivial (ours does not do this yet). -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: arieljake arielj...@yahoo.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com

Re: [flexcoders] Application language files

2009-01-19 Thread Maciek Sakrejda
pre-load a specific resource module (based on flashvars, I believe), so it's available at startup, but we just have a non-localized login screen where the user picks a locale. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Sceneshift j...@sceneshift.com

[flexcoders] warning on 'back' button before closing application?

2009-01-14 Thread Maciek Sakrejda
'back' inadvertently, navigating away from the application. Is there a way to issue a warning beforehand? -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

RE: [flexcoders] Re: Valid Date Ranges in Flex

2009-01-14 Thread Maciek Sakrejda
You should be able to determine minDate and maxDate by calling new Date(Number.MIN_VALUE) and new Date(Number.MAX_VALUE). -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Gregory Kelley gkel...@pngmail.com Reply-To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Valid Date Ranges in Flex

2009-01-14 Thread Maciek Sakrejda
Number.MAX_VALUE Greg From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Maciek Sakrejda Sent: Wednesday, January 14, 2009 1:02 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Valid

Re: [flexcoders] Re: warning on 'back' button before closing application?

2009-01-14 Thread Maciek Sakrejda
other cleanup with that handler, so hopefully this should be straightforward. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: jim.abbott45 jim.abbot...@yahoo.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re

RE: [flexcoders] Re: CategoryAxis category order

2009-01-11 Thread Maciek Sakrejda
Sent: Sun 1/11/2009 5:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: CategoryAxis category order --- In flexcoders@yahoogroups.com, Maciek Sakrejda msakre...@... wrote: When I have a data provider like [ { category : foo, val : 1 }, { category : bar, val : 2 },{ category

RE: [flexcoders] Re: CategoryAxis category order

2009-01-11 Thread Maciek Sakrejda
Hmm. No dice. Overriding describeData() to return super.describeData().reverse() does nothing... Maybe I'll go the ListCollectionView route. -Original Message- From: flexcoders@yahoogroups.com on behalf of Maciek Sakrejda Sent: Sun 1/11/2009 2:47 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: CategoryAxis category order

2009-01-11 Thread Maciek Sakrejda
this solution works reasonably well for now. -Original Message- From: flexcoders@yahoogroups.com on behalf of Maciek Sakrejda Sent: Sun 1/11/2009 3:39 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: CategoryAxis category order Hmm. No dice. Overriding describeData() to return

RE: [flexcoders] Which Unit Testing Framework to use?

2009-01-09 Thread Maciek Sakrejda
, it can generate test for any unit testing framework with asynchronous test case support, but it's currently tied into FlexUnit). I highly recommend it. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Errol Thompson kiw...@acm.org Reply-To: flexcoders

[flexcoders] CategoryAxis category order

2009-01-09 Thread Maciek Sakrejda
to reverse this order, and have the categories as foo, bar, baz bottom-to-top without having to re-sort the dataprovider (it is used elsewhere) or copy the data in reverse order (I'd rather extend the charting components to do the right thing)? -- Maciek Sakrejda Truviso, Inc. http

Re: [flexcoders] Re: security sandbox violation in standalone player but not in browser

2009-01-08 Thread Maciek Sakrejda
there are goblins in the tubes messing with my mail. -Maciek -Original Message- From: Tom Chiverton tom.chiver...@halliwells.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: security sandbox violation in standalone player but not in browser Date: Thu

Re: [flexcoders] Creating an ArrayCollection object for charting

2009-01-08 Thread Maciek Sakrejda
); -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: john fisher j...@jpfisher.net Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Creating an ArrayCollection object for charting Date: Thu, 08 Jan 2009 15:28:37 -0800 Can

[flexcoders] security sandbox violation in standalone player but not in browser

2009-01-07 Thread Maciek Sakrejda
with this relative URL? Anything I can do with respect to crossdomain.xml or other security configuration to get around this? Thanks, -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

RE: [flexcoders] Documentation on Flex 3

2009-01-07 Thread Maciek Sakrejda
For general component and class/function reference, the language reference[1] is indispenable. This is what I use daily and it answers 90% of my questions. For a more in-depth treatment, I recommend the developer guide[2]. I believe Adobe's list of official docs is here[3]. [1]:

[flexcoders] scriptable flex testing (for continuous integration)

2009-01-06 Thread Maciek Sakrejda
(and not the standalone player) if possible, since we've hit some browser-specific issues before. Does anyone have more experience with this method of running FlexUnit tests (or any other kind of flex testing framework)? -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

[flexcoders] security sandbox violation in standalone player but not in browser

2009-01-06 Thread Maciek Sakrejda
this? Thanks, -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

Re: [flexcoders] re-passing variable arguments?

2008-12-29 Thread Maciek Sakrejda
Yes, through the magic of higher-order functions: http://livedocs.adobe.com/flex/3/langref/Function.html#apply() -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: toofah_gm ga...@byu.edu Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com

Re: [flexcoders] radio button is chosen when passing it through httpsservice

2008-12-19 Thread Maciek Sakrejda
http://livedocs.adobe.com/flex/3/langref/mx/controls/RadioButtonGroup.html#selectedValue -Original Message- From: Jason B nos...@advancedonsite.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] radio button is chosen when passing it through

Re: [flexcoders] Re: radio button is chosen when passing it through httpsservice

2008-12-19 Thread Maciek Sakrejda
] Re: radio button is chosen when passing it through httpsservice Date: Fri, 19 Dec 2008 17:14:03 - I tried selected Value but it passes null --- In flexcoders@yahoogroups.com, Maciek Sakrejda msakre...@... wrote: http://livedocs.adobe.com/flex/3/langref/mx/controls/RadioButtonGroup.html

  1   2   3   4   >