RE: [flexcoders] Re: checkbox in datagrid with vertical slider bar

2007-03-09 Thread Lisa Nelson
Now it's becoming clearer. I see that the itemClick event is caused by the itemrenderer, which fires it on a change event. When the slider bar moves it must cause the change to fire. I think that is a bug in our itemrenderer. From:

Re: [flexcoders] PDF Files

2007-03-09 Thread John Dowdell
Greg Hesla wrote: Would anyone like to share their experience with creating some sort of web-based PDF-annotation app? I realize that this may not be something that I can do in Flex, but if I can kick it off from within my Flex app, that would work as well. I'm not sure I understand

[flexcoders] Converting string to base64Binary

2007-03-09 Thread Brian Holmes
Does anybody have an example of how I can do this? Everything I've tried blows up. Thanks, b.. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have received this e-mail in error please notify the sender by

RE: [flexcoders] Converting string to base64Binary

2007-03-09 Thread Alex Harui
Google: Base64 Actionscript From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Friday, March 09, 2007 2:15 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Converting string to base64Binary Does anybody have

RE: [flexcoders] Converting string to base64Binary

2007-03-09 Thread Andrew Trice
I posted this a while back... http://tech.groups.yahoo.com/group/flexcoders/message/65507 import mx.utils.Base64Encoder; import mx.utils.Base64Decoder; private function base64Encode( data : ByteArray ) : String { var encoder : Base64Encoder = new Base64Encoder();

[flexcoders] Re: Converting string to base64Binary

2007-03-09 Thread bobignacio
Here is one of my posts which may help... http://tech.groups.yahoo.com/group/flexcoders/message/66247 Bob I. --- In flexcoders@yahoogroups.com, Brian Holmes [EMAIL PROTECTED] wrote: Does anybody have an example of how I can do this? Everything I've tried blows up. Thanks, b..

[flexcoders] Dynamically created component not tracking data changes

2007-03-09 Thread Engkee Kwang
In the sample code, I have a statically instantiated label that is bounded to data in an XML model. This label tracks changes to the XML data. I then dynamically create and add new Label and using BindingUtils, binds the new component to the same data element. While the new component instance

[flexcoders] Flex Data Services Question, Java backend

2007-03-09 Thread bruce1976
Hi, I want my Flex clients to be notified when new data is available. The data is read-only, so the Flex clients won't be updating it, they just need to display it. When the data is ready to be viewed, I have a Java backend that can send an HTTP post to any endpoint, but I'm having trouble

[flexcoders] Passing complex objects (e. g. collection of name-value pairs) to server via either URLLoader or HTTPService using POST method

2007-03-09 Thread Sergey Kovalyov
Hi All! What is the best approach to pass complex objects (e. g. collection of name-value pairs) to server via either URLLoader or HTTPService using POST method? Just for example, I need to send this collection to server: var collection : Array = [{x : 1, y : a}, {x : 2, y : b}, {x : 3, y :

Re: [flexcoders] DataGridColumn visibility problem. It appears again when dataProvider is replaced

2007-03-09 Thread Sergey Kovalyov
I use users.removeAll() and then populate users with new data using addItem() method in the loop now. It works. :) On 09 Mar 2007 09:16:12 -0800, Alex Harui [EMAIL PROTECTED] wrote: There's been a bug filed, and an update is expected to be available soon (hopefully a week or two). -Alex

RE: [flexcoders] Passing complex objects (e. g. collection of name-value pairs) to server via either URLLoader or HTTPService using POST method

2007-03-09 Thread Merrill, Jason
SOAP webservices can do that. You don't have to convert to XML first, you can send your complex Actionscript object directly to the WDSL method and it transfers via SOAP (XML) protocol. You can receive in the same way. Jason Merrill Bank of America Global Technology Operations Learning

Re: [flexcoders] custom charting component question

2007-03-09 Thread Brendan Meutzner
Voila... http://www.stretchmedia.ca/blog/index.cfm/2007/3/9/Flex-Chart-Range-Selector--Google-Financeish On 08 Mar 2007 01:54:19 -0800, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 07 Mar 2007, Adam Royle wrote: Eg. Should I use composition of a few charts and a draggable invisible

Re: [flexcoders] custom charting component question

2007-03-09 Thread Doug McCune
booyah! good work Brendan. If you grab the newest version of the slider from flexlib you can have both those datatips show up at once (and both thumbs get highlighted). awesome example. I love it when someone asks a question and a day or two later someone else just goes ahead and does it. Doug

RE: [flexcoders] Flex Data Services Question, Java backend

2007-03-09 Thread Dimitrios Gianninas
Within FDS there is a Java class called flex.data.DataServiceTransaction which will allow u from Java to update your Flex clients. I haven't used it yet, but plan too, within the FDS examples it is used, so look it up. Dimitrios Gianninas Optimal Payments Inc. -Original Message-

Re: {Disarmed} RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Toby Tremayne
A lot of the apps I'm looking at have requirements to constant access to a fairly large amount of data. As an example, think about an online shared contact database for some kinds of agents, maybe real estate or sales people of some sort - they need to share and coordinate data online but

Re: [flexcoders] mx:Script error ?

2007-03-09 Thread Groups Mail
when i don't use mx:Script /mx:Script flex2 compile my project last design but when i use script tag give an error to me so don't compile last design.. 2007/3/9, Tracy Spratt [EMAIL PROTECTED]: What happens in a new, empty application, with just the script tags? If that doesn't work,

[flexcoders] Graph Range Selector - Like Google Finance

2007-03-09 Thread Brendan Meutzner
Why I love Flex... http://www.stretchmedia.ca/blog/index.cfm/2007/3/9/Flex-Chart-Range-Selector--Google-Financeish -- Brendan Meutzner Stretch Media - RIA Adobe Flex Development [EMAIL PROTECTED] http://www.stretchmedia.ca

[flexcoders] newbie dataGrid question .

2007-03-09 Thread iilsley
I have an array collection that looks like public var dp:ArrayCollection = new ArrayCollection( [{type: 'Pen', price: '10' , label: Stock Name } ,{type: 'Sock' , price: '20' , label: Stock Name } ]); I want to display that data in a

[flexcoders] drag n drop file upload

2007-03-09 Thread Toby Tremayne
HI all, I've been looking at file uploading examples for AS3 and I've seen a few things using FileReference - however all the demos use a browse button way of doing things, and the only references i can find to drag and drop are in very old comments about how it didn't used to work.

Re: [flexcoders] drag n drop file upload

2007-03-09 Thread Muzak
In a browser, nope. As a standalone, you'll need a wrapper, like MDM Zinc. http://www.multidmedia.com/software/zinc/ regards, Muzak - Original Message - From: Toby Tremayne [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, March 10, 2007 6:23 AM Subject: [flexcoders] drag

[flexcoders] resize / hide canvas

2007-03-09 Thread johnesocko
I need help finding a blog or tutorial that resizes the canvas(box) or hides it, I saw it a few days ago but forgot to favorite place it. I made an image of what it looks like img src=http://simplexstudios.com/arrowsflex.jpg; width=400 height300 link to image

[flexcoders] Re: newbie dataGrid question .

2007-03-09 Thread iilsley
This is what I currently have .. is there a better way ?? ?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 mx.controls.Alert; import mx.collections.ArrayCollection;

<    1   2