[flexcoders] Printing same object twice, different results

2009-02-26 Thread kaleb_pederson
In trying to track down a printing bug [1], I discovered that (on certain browsers) I can print the exact same object twice using PrintJob.addPage(myPage) and get different results, even though nothing about the object changed between calls [2] [3]. So far, I've found that the following things

[flexcoders] Flex Print Preview Component testers needed

2009-02-16 Thread kaleb_pederson
Hello, We at Soph-Ware Associates have been working on a print preview component for Flex and are now making the source available, as-is. The preview component works great except for what appears to be a Flash Player bug that shows up in the printout on some browsers, despite a perfect print

[flexcoders] Re: Mouse wheel scrolling past entries in combobox

2009-01-13 Thread kaleb_pederson
Done. It turns out it takes Firefox under Remote Desktop to reproduce: https://bugs.adobe.com/jira/browse/SDK-18680 I'm not sure where the fault might lie -- Firefox, Flash Player, or Flex, but it's reported now. Thanks. --Kaleb --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote:

[flexcoders] Mouse wheel scrolling past entries in combobox

2009-01-12 Thread kaleb_pederson
I have a ComboBox which displays five entries at a time. When I first click on the ComboBox, it displays items 1-5, which is as expected. As soon as I scroll down one click with the mouse wheel, it displays items 13-17 -- skipping items 6-12. How can I change the scroll wheel behavior so that

[flexcoders] Using ContextMenu with DataGrid

2008-12-04 Thread kaleb_pederson
What is the proper way to get the rowIndex into my dataProvider when using a context menu? Here's a few things that I tried and why they didn't work: 1) Cast event.mouseTarget to the DataGridItemRenderer and used listData.rowIndex property. This doesn't work because rowIndex is really the index

[flexcoders] Specifying AxisLabel colors

2008-08-21 Thread kaleb_pederson
What is the best way to specify the color on an AxisLabel? I've been working with some charts recently and set the AxisLabel color by setting a labelRenderer on the AxisRenderer. My LabelRender then returns a mx.controls.Label that has the color set appropriately and the data function

[flexcoders] Re: Specifying AxisLabel colors

2008-08-21 Thread kaleb_pederson
with callouts or numbers that related to sections of the picture so that it would be easy to correlate certain customizations with renderers, styles, axis's, etc. Regards. --Kaleb --- In flexcoders@yahoogroups.com, kaleb_pederson [EMAIL PROTECTED] wrote: What is the best way to specify

RES: [flexcoders] Re: The High Score Problem

2008-05-30 Thread kaleb_pederson
, the problem is fairly intractable as has pretty much been pointed out in the thread. --Kaleb --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 29 May 2008, kaleb_pederson wrote: b) figure out the AES encryption key (possibly generated dynamically) I

[flexcoders] Re: Flex Encryption and Flex Application check

2008-04-18 Thread kaleb_pederson
. http://www.insideria.com/2008/04/encryption-in-flex-application-2.html -Andrew Westberg --- In flexcoders@yahoogroups.com, kaleb_pederson kaleb.pederson@ wrote: --- In flexcoders@yahoogroups.com, Ritesh Yadav riteshyadav14@ wrote: 1. Can i send or Use .swf file from flex

[flexcoders] Re: Flex Encryption and Flex Application check

2008-04-17 Thread kaleb_pederson
--- In flexcoders@yahoogroups.com, Ritesh Yadav [EMAIL PROTECTED] wrote: 1. Can i send or Use .swf file from flex in encrypted manner so no one can catch the .swf file with the help swf catcher tool. If yes let me know how to do that with flex. Sorry I'm a little late (ok, quite late) on

[flexcoders] Re: Undo/redo for flex cairngorm

2008-02-07 Thread kaleb_pederson
As I'm the author, I'd be interested as well ;). Since we're on the topic, I have a couple of related questions to people: 1) Would a non-cairngorm version of the Undo/Redo framework be useful? 2) Is the GPL License a problem for anybody? I tried initially to remove any dependence on

[flexcoders] Re: Symmetric Key Encryption in Flex Client C# WebServices

2008-01-29 Thread kaleb_pederson
I wrote one up for testing earlier, so I'll post it below. It's a bit long, and definitely not well structured, but it does work. As C# uses Rijndael, you'll need to make sure to restrict it to something that will work with the actionscript version. Specifically, the block size must be 128.

[flexcoders] Re: AsDoc and libraries problem

2007-12-07 Thread kaleb_pederson
One thing to note is that even though it's now officially included in the SDK, it still doesn't work in Linux. The last I checked, it needed a supporting executable that hadn't been ported over yet :(. That said, if that were you problem you'd probably get the following error message:

[flexcoders] Re: Symmetric Key Encryption in Flex Client C# WebServices

2007-11-30 Thread kaleb_pederson
--- In flexcoders@yahoogroups.com, peeyushtuli [EMAIL PROTECTED] wrote: Thank you all for the responses, but I have already tried this one. C# does not have an official implementation for AES, so I had to ignore that one. Actually, it does. AES is a subset of Rijndael. It's basically

[flexcoders] Announce: Flex UndoRedo Framework for Cairngorm

2007-10-18 Thread kaleb_pederson
Hello all, We (Soph-Ware Associates) have just released an Open Source Undo/Redo Framework for Flex. It integrates tightly with Cairngorm and allows for an unlimited number of Undo/Redo events (which in turn fire undoable Cairngorm Commands). The Flex UndoRedo Framework is lightweight and

[flexcoders] Re: bindable data type to update datagrid

2007-10-16 Thread kaleb_pederson
Bindable isn't a datatype. It's a metadata tag that tells the compiler that it needs to generate some code that will perform updates when the data changes. I posted a blog a week or so ago that talks about data binding and some of the code that is generated to support data binding. It might

[flexcoders] Re: FlexUnit Cairngorm

2007-10-04 Thread kaleb_pederson
--- In flexcoders@yahoogroups.com, Kevin [EMAIL PROTECTED] wrote: Is anyone currently using FlexUnit to test a Cairngorm app? I have some questions about how best to set this up. Thanks, Kevin Yes, people are using FlexUnit to test Cairngorm apps. There are at least two different

[flexcoders] Bug: GET/POST determined by XML Contents not method

2007-04-24 Thread kaleb_pederson
When I send data to a web service, whether or not it sends the request as a GET or a POST is determined by contents of the XML that I happened to be sending. For example, here's the ActionScript I used: import mx.rpc.http.HTTPService; var service:HTTPService = new HTTPService(); service.url

[flexcoders] Re: Bug: GET/POST determined by XML Contents not method

2007-04-24 Thread kaleb_pederson
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kaleb_pederson Sent: Tuesday, April 24, 2007 3:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Bug: GET/POST determined by XML Contents not method When I

[flexcoders] Re: BigInteger class for ActionScript

2007-02-08 Thread kaleb_pederson
PROTECTED] wrote: Kaleb Use Number as usual was in Flash. public var myNumber:Number = reachs 32k digits positive or negative public var myotherNumbre:int = reachs only integer numbers more than 0 public var ler:uint; Etc. Best. On 2/7/07, kaleb_pederson [EMAIL PROTECTED

[flexcoders] BigInteger class for ActionScript

2007-02-07 Thread kaleb_pederson
Hello all, Does anybody know of a BigInteger class (eg. one that supports virtually unlimited precision and digits) that's available? It will be used for encryption (generating random primes and such), so it needs to support at least 512 digits. Thanks. --Kaleb

[flexcoders] Re: TestCase for reproduceable bug in FlexUnit

2006-08-29 Thread kaleb_pederson
shortly thereafter. I'm welcome to suggestions on where to look to figure out what's going on. Thanks for the help. --Kaleb --- In flexcoders@yahoogroups.com, kaleb_pederson [EMAIL PROTECTED] wrote: Hello all, In the process of adding more unit tests to our test suite, I discovered a bug

[flexcoders] TestCase for reproduceable bug in FlexUnit

2006-08-28 Thread kaleb_pederson
Hello all, In the process of adding more unit tests to our test suite, I discovered a bug that would cause FlexUnit to freeze and stop processing any remaining test cases. Although it was inconsistent in where it stopped processing, it would stop processing about 73% of the time! I have

[flexcoders] Re: Building Flex 2 project with Maven

2006-08-25 Thread kaleb_pederson
Laurent, We would definitely be interesting in having a maven plugin available for Flex. We currently use maven for our projects but use an ant script to handle building the flex pieces. Tighter integration would be much nicer. Thanks --Kaleb --- In flexcoders@yahoogroups.com, lfontvielle

[flexcoders] Re: Asynchronous TestCase.setUp in FlexUnit (and another use case)

2006-08-25 Thread kaleb_pederson
through but it should be doable. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kaleb_pederson Sent: Tuesday, August 22, 2006 12:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] RE: Asynchronous

[flexcoders] RE: Asynchronous TestCase.setUp in FlexUnit (and another use case)

2006-08-22 Thread kaleb_pederson
Matt and all, I took a quick stab at this as it didn't look too bad, but unfortunately, it isn't quite that simple. FlexUnit is written such that it expects a number of things to happen synchronously, which causes some other problems in this case. Let me explain. After modifying

[flexcoders] Re: ComplexType in WSDL with webservice not sending arguments

2006-08-21 Thread kaleb_pederson
with these at all, so I don't understand exactly what purpose it may serve, but I would not be surprised at all if the WebService library did not support things like this. Ben --- In [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com, kaleb_pederson kibab@ wrote: Hello all

[flexcoders] ComplexType in WSDL with webservice not sending arguments

2006-08-18 Thread kaleb_pederson
Hello all, My webservice has one function, sendStrings(), which takes a sequence of arg0 values, each of which are strings. Despite the simplicity of the request, I cannot get the web service to send anything but an empty request across (other than variation 9 in which I send XML across). I

[flexcoders] Re: WSDLError:Element not resolvable = LoadEvent doesn't imply service ready

2006-08-15 Thread kaleb_pederson
PROTECTED] On Behalf Of kaleb_pederson Sent: Tuesday, August 08, 2006 7:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: WSDLError:Element not resolvable = LoadEvent doesn't imply service ready Frank, I did a bit more research into this. I don't need nearly a second

[flexcoders] Re: WSDLError:Element not resolvable = LoadEvent doesn't imply service ready

2006-08-15 Thread kaleb_pederson
' error and retry your call using a Timer on a short delay. Thanks again for your help closing out this bug, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kaleb_pederson Sent: Tuesday, August 15, 2006 12:28 PM

[flexcoders] Variations of sending arguments to a WebService in AS

2006-08-14 Thread kaleb_pederson
Hello, I'm trying to send some arguments to a webservice, but every variation I have tried other than generating the XML from scratch keeps failing (eg. sends an empty message body). Relevant parts of the WSDL are as follows: message name=sendStrings part element=tns:sendStrings

[flexcoders] Re: Operation.arguments is populated but nulls are sent

2006-08-14 Thread kaleb_pederson
Ben, unfortunately I can't give you any help... but this is about identical to what I see every time I try to send arguments in any non-trivial fashion (eg. wrapped in a sequence or using complex types). Basically, every time I send arguments ... they show up as nulls (eg. with empty bodies).

[flexcoders] Re: Variations of sending arguments to a WebService in AS

2006-08-14 Thread kaleb_pederson
(); args.groupingRequests.GroupName = RPRToolStaticData; op.arguments = args; service.GetDataByGrouping(); HTH, Ben --- In flexcoders@yahoogroups.com, kaleb_pederson kibab@ wrote: Hello, I'm trying to send some arguments to a webservice, but every variation I have tried other than generating the XML

[flexcoders] Re: WSDLError:Element not resolvable = LoadEvent doesn't imply service ready

2006-08-08 Thread kaleb_pederson
. So, this does not sound good ... I expect that your workaround is the only solution. Cheers, Franck _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kaleb_pederson Sent: Tuesday, August 08, 2006 1:38 AM

[flexcoders] Re: Array parameters fail with Webservices

2006-08-03 Thread kaleb_pederson
, kaleb_pederson kibab@ wrote: I'm using a webservice that requires that an array of strings be passed to one function. Each method that I have tried to send array parameters fails. By fails, I mean the request is successfully sent to the server but the parameter list is empty and thus

[flexcoders] Re: Array parameters fail with Webservices

2006-08-03 Thread kaleb_pederson
I have been using tcpdump to grab the packets. I can tell that the SOAP Envelope being generated contains an empty parameter list. Per my first post, the SOAP envelope being generated looks like the following (less formatting): ?xml version=1.0 encoding=utf-8? SOAP-ENV:Envelope

[flexcoders] Re: Array parameters fail with Webservices

2006-08-03 Thread kaleb_pederson
@yahoogroups.com, Darren Houle [EMAIL PROTECTED] wrote: Did you try creating and sending that XML I suggested? Darren From: kaleb_pederson [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Array parameters fail with Webservices Date

[flexcoders] Array parameters fail with Webservices

2006-08-02 Thread kaleb_pederson
I'm using a webservice that requires that an array of strings be passed to one function. Each method that I have tried to send array parameters fails. By fails, I mean the request is successfully sent to the server but the parameter list is empty and thus the response isn't valid for the