[flexcoders] Flex form components

2008-11-10 Thread brucewhealton
I have a form that I've been using to handle TextInput components in Flex and I want to now be adding other components. This is a form that sends data to a php form processor that either puts the data into into a database or just emails it, or both. When working with this component: That'

RE: [flexcoders] Binding problems after update to 3.0.1

2008-11-10 Thread Mike Pearce
After setting up FB to use the 3.0 SDK everything is fine again. Would be interested to hear if anyone else has experienced this issue with the 3.1 SDK. Cheers, Mike -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Pearce Sent: Tuesday, Nove

[flexcoders] Problem with Flex form

2008-11-10 Thread brucewhealton
Hello all, I have been unable to figure out why something simple is not happening in a form of mine. I have a form that does successfully take the user input and email it to us. However, for some reason, the Alert button that should give the user feedback is not working. It just hangs

[flexcoders] Binding problems after update to 3.0.1

2008-11-10 Thread Mike Pearce
Hi all, Anyone else run into issues after installing the 3.0.1 update? Some simple bindings are no longer working in one of my projects. If I compile on another machine that has not been updated, the project works fine. Anyone got any info on this? Or know how to uninstall the update?

[flexcoders] Determining the destination of a URL redirect with URLLoader or something else?

2008-11-10 Thread robbarreca
Is there a way to determine what the final redirection of a URLLoader resource is? For example, with Loader I can load http://www.youtube.com/v/6JBAxkZun3s, which gets redirected to http://www.youtube.com/swf/l.swf?swf=http%3A//s.ytimg.com/yt/swf/cps-vfl62967.swf&video_id=6JBAxkZun3s&rel=1&showsear

Re: [flexcoders] Debugging: general advice

2008-11-10 Thread Josh McDonald
I use a lot of logging (with a simple framework that allows me to do some better things than mx.ILogger), the occasional trace() and Alert, and a lot of single-stepping and breakpoints. But I don't know how good the debugging support is on Linux, so that might not be an option. You could also look

[flexcoders] Re: AMFPHP and Value Objects

2008-11-10 Thread Amy
--- In flexcoders@yahoogroups.com, "Rich Rodecker" <[EMAIL PROTECTED]> wrote: > > you definitely need the $_explicitType property in the php VOs. Yes, I'm trying to figure out ways to pry verification that that has been done out of the client ;-).

[flexcoders] bar names on bar chart?

2008-11-10 Thread Maciek Sakrejda
Is there a way to get labels on the actual horizontal bars in a bar chart? E.g., something like | ---| | Category 1 | || | | | Category 2 | |-| | | | Category 3 | |---

Re: [flexcoders] Re: AMFPHP and Value Objects

2008-11-10 Thread Rich Rodecker
you definitely need the $_explicitType property in the php VOs. On Mon, Nov 10, 2008 at 4:06 PM, Amy <[EMAIL PROTECTED]> wrote: > --- In flexcoders@yahoogroups.com , "Rich > Rodecker" <[EMAIL PROTECTED]> > wrote: > > > > > If you are getting an array of untyped objects, that means that your > c

Re: [flexcoders] Question on how to find out what something is.

2008-11-10 Thread Fotis Chatzinikos
you are using a mx:Form. So from the docs: creationCompleteBroadcast when the object has finished its construction, property processing, measuring, layout, and drawing. At this point, the component may not be visible depending on its visible property, even though it has been drawn. The event objec

[flexcoders] udefined property error without function

2008-11-10 Thread john fisher
context: an mxml app, with classes written by me ( Zdemos) and Flare classes. "myCanvas" is the id of a canvas in the flex part of the file and it works. I don't understand--- this compiles: public var myDemoClass:Zdemos ; public var myDataFilePath:String = "http://.reald

[flexcoders] Debugging: general advice

2008-11-10 Thread john fisher
I read a thread from a few weeks ago, and Amy was using Alert to debug in the browser. So am I, and its moderately successful, but I wonder if there is a better way? I: linux, eclipse, flex builder For instance I'd like to step through on classes that aren't invoked until the user clicks. Is the

RE: [flexcoders] Question on how to find out what something is.

2008-11-10 Thread Jim Hayes
getQualifiedClassName() in flash.utils should tell you what the object is, I think, and to pass in any completely unknown object type your parameter should be typed as "object". If you only expect a few types to be passed as a parameter then I'd just test them with the "is" keyword and then cast

RE: [flexcoders] Question on how to find out what something is.

2008-11-10 Thread Tracy Spratt
Try event.target.className. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Fotis Chatzinikos Sent: Monday, November 10, 2008 6:05 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Question on how to find out what someth

[flexcoders] AdvancedDataGrid grouping name gets cut off if the first column is thin

2008-11-10 Thread blc187
Does anyone have any experience using AdvancedDataGrids? I would like the row that displays the folder and the grouping name to span the entire datagrid. For example, I have a data set that creates 3 groups titled Group 1, Group 2, Group 3. Each of these nodes has items underneath of it. I've

[flexcoders] Re: AMFPHP and Value Objects

2008-11-10 Thread Amy
--- In flexcoders@yahoogroups.com, "Rich Rodecker" <[EMAIL PROTECTED]> wrote: > > If you are getting an array of untyped objects, that means that your class > mapping is not set up properly. As already mentioned, make sure that you > have the $_explicitType variable set in your php VOs, and the

[flexcoders] Re: AMFPHP and Value Objects

2008-11-10 Thread Amy
--- In flexcoders@yahoogroups.com, Alan <[EMAIL PROTECTED]> wrote: > > Is it creating a problem for you? It shouldn't. From what I remember > you don't even really need VOs with AMFPHP. I'd rather not loop through the objects I'm getting back and convert them to my typed objects. Is that wh

[flexcoders] Re: AMFPHP and Value Objects

2008-11-10 Thread Amy
--- In flexcoders@yahoogroups.com, "Fotis Chatzinikos" <[EMAIL PROTECTED]> wrote: > > Might be completly irrelevant (have not used AMFPHP) but are you using > Remote class Metas? Yes. Thanks :-)

Re: [flexcoders] AMFPHP and Value Objects

2008-11-10 Thread Rich Rodecker
If you are getting an array of untyped objects, that means that your class mapping is not set up properly. As already mentioned, make sure that you have the $_explicitType variable set in your php VOs, and the RemoteClass metadata included in your AS classes. This might help: http://www.visible-f

Re: [flexcoders] AMFPHP and Value Objects

2008-11-10 Thread Alan
On my last AMFPHP project my PHP and Flex VOs were: package com.mydomain { [Bindable] [RemoteClass(alias="UserVO")] public class UserVO { public var id :int; public var username :String;

[flexcoders] Text Change Tracking

2008-11-10 Thread nhid
Hello, We need to implement a tracker on the text being changed within a textarea. For example, when any word is deleted, that word is shown as striked out, similar to MS Word Track Changes feature, rather than actually removing the word. Has anyone done this or seen something like this in Flex?

Re: [flexcoders] Basic auto Update of Flex UI with the Postgres database

2008-11-10 Thread Fotis Chatzinikos
Use the last inserted id or something similar... ie: 1) get all the data (all means what you really need, ie: last 100,200 whatever) webservice.getAllData() 2) Put in the list and keep a record of the latest id 3) every x seconds hit the web with webservice.getUpdatesFrom(lastInseretId) This way

[flexcoders] BitmapData getting clipped

2008-11-10 Thread flexaustin
I was wondering if anyone can tell me why my bitmapdata objects are getting clipped. I have clipContent = false in all my displayobjects parents and it doesn't seem to cut off anything that runs off screen to the right side. For some reason it is cutting everything above left of 0 or above 0 on sta

[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-10 Thread EddieBerman
Here you go... private function myDataTipFunction( e:HitData ):String { var obj:Object = e.chartItem; if (e.chartItem is ColumnSeriesItem) { ...your columnSeries code here } else { ...your lineSeries code here } -Eddie --- In flexcoders@yahoogroups.com, "Amy" <[EMAIL PROTECTED]> wrote: > > ---

Re: [flexcoders] AMFPHP and Value Objects

2008-11-10 Thread Alan
Is it creating a problem for you? It shouldn't. From what I remember you don't even really need VOs with AMFPHP. Are you getting those warning that say something like "unable to bind to property 'X '". Unfortunately, no one really knows what's going on with AMFPHP :) Wade said he's actu

Re: [flexcoders] AMFPHP and Value Objects

2008-11-10 Thread Fotis Chatzinikos
Might be completly irrelevant (have not used AMFPHP) but are you using Remote class Metas? example: package beans { [RemoteClass(alias="net.w2w.semantic.annotation.beans.SemanticTags")] [Bindable] public class SemanticTags { public var type:String ; public var tag

Re: [flexcoders] Question on how to find out what something is.

2008-11-10 Thread Fotis Chatzinikos
Something is an event, check the docs... It can be a MouseEvent, ClickEvent, ListEvent, and so on... A generic approach is declaring the function: init (event:Event) but only if you do not know the particular event class, you can then get access to your object (one in your example) via target

[flexcoders] Question on how to find out what something is.

2008-11-10 Thread timgerr
So I have this form so I have this function init():void { trace(One.getChildren().length) } My question is what is One, what kind of component or object is it. This is what I mean; I take the same form and add a creationcomplete to it: In the above example I pass

[flexcoders] Hslider skin

2008-11-10 Thread Alan Rother
Hey All, I'm a total newb at making things look "right" in flex. I've gotten ok at making them work. Now I've been tasked with re-inventing the wheel at work and building a video player to be used in one of our products... Anyhow, the designers have insisted I use a volume control that looks like

[flexcoders] AMFPHP and Value Objects

2008-11-10 Thread Amy
Hi, all; I have some VO's that I've created to work with AMFPHP. When I call the service, I'm getting an array of untyped objects. Another developer on the project believes that the reason for the problem is that the objects extend EventDispatcher and because they have additional methods on

[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-10 Thread Amy
--- In flexcoders@yahoogroups.com, "sailorsea21" <[EMAIL PROTECTED]> wrote: > > Hi Amy, > My graph is a multiple series (Column and Line). > I successfully modified the column series datatip but my line series > data tip is now giving me an error: > > "Type Coercion failed: cannot convert > m

Re: [flexcoders] Upgrade only ASDoc.

2008-11-10 Thread Josh McDonald
Flex (and Builder) will be perfectly happy with you having multiple SDKs installed. I've still got 2.0 HF1 as well as 3.0 and 3.1, and an SVN checkout of 3.x, so you'll have no problems, unless of course the new AsDoc doesn't know Fx3 syntax for MXML ;-) On Tue, Nov 11, 2008 at 1:09 AM, rleuthold

[flexcoders] Re: How to get Date type data from mx:DateField?

2008-11-10 Thread fourctv
Try the selectedDate property, that gives you the selected date as a Date object. hth julio --- In flexcoders@yahoogroups.com, "markflex2007" <[EMAIL PROTECTED]> wrote: > > Hi, > > I need get the Date type data from DateField,I can get String type > data with text attribute but I can not conver

[flexcoders] How to get Date type data from mx:DateField?

2008-11-10 Thread markflex2007
Hi, I need get the Date type data from DateField,I can get String type data with text attribute but I can not convert it to Date type. Please give me a idea. Thanks Mark

[flexcoders] Re: Drag and drop module

2008-11-10 Thread Claudiu Ursica
10x Alex, I downloaded the code and its working I'll see how can I adapt my code to this but i believe it will be fine. Cheers, Claudiu --- In flexcoders@yahoogroups.com, Alex Harui <[EMAIL PROTECTED]> wrote: > > http://blogs.adobe.com/aharui/2007/08/popup_dialogs_as_modules.html > > From: flexc

[flexcoders] Re: How to get image data and save it?

2008-11-10 Thread Cato Paus
I have sent you a copy of the source to at [EMAIL PROTECTED] --- In flexcoders@yahoogroups.com, Barry Gee <[EMAIL PROTECTED]> wrote: > > any chance of getting that code too? its a problem im trying to fgure > out too. > > thanks > > Barry. > > > Cato Paus wrote: > > > > I have sent it to you

[flexcoders] Sorting XMLListCollection based on node value

2008-11-10 Thread flexcoder2008
I have an XMLListCollection that I want to sort based on a particular node value. All of the examples I have seen show sorting by XML attribute. My xml is in the following format: William Jackson Bob Jackson I want to sort items by the DisplayName node, which will show up in a List cont

[flexcoders] Pulling classes from a SWC

2008-11-10 Thread Sceneshift
Hi guys, I have been looking into the best way to pull in library symbols (at compile time) from flash for quite some time now... but one last hurdle is really frustrating me. I found the best way is to load in your "asset" swf using a URLLoader, loadBytes and loaderContext to load the classes i

Re: [flexcoders] running flex on a headless server

2008-11-10 Thread Howard Fore
Hmm. How about (off the top of my head, never tried it) shell into the server, start the "screen" utility, then start XWindows and Firefox. Then once the app is up in Firefox, detach from the screen session. Firefox should remain running via screen, though I'm unsure about running X in screen. On

[flexcoders] running flex on a headless server

2008-11-10 Thread netdeep
I have a nice front end chart viewing application which allows users to query the database and see the results in chart form (basically a dashboard app). However, the end users want these reports automated and broadcast as 'snapshots' every few hours. So the idea is that the chart app would r

Re: [flexcoders] Seeking response to SDK-15710 jira issue.

2008-11-10 Thread Matt Chotin
The 3.2 nightly builds are available now. Charting is not included there, but you can expect that to be shipped next week assuming all goes well. Matt On 11/9/08 10:33 PM, "kumar_raj" <[EMAIL PROTECTED]> wrote: I'm cross posting this from Flex Support Forums in hope of getting some respons

RE: [flexcoders] Accessing webservice with flex

2008-11-10 Thread Tracy Spratt
"crossdomain.xml file which is in the same folder as my project". It should be at the root of the web server, so that you can do, http://www.mydomain.com/crossdomain.xml, and see the xml. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On B

[flexcoders] Re: Number of viewable rows in datagrid

2008-11-10 Thread Tim Hoff
Hi Orville, You might want to see if it works with the updateComplete or valueCommit events. Using he render event can be very expensive; as it fires everytime the display list is updated. -TH --- In flexcoders@yahoogroups.com, "creativepragmatic" <[EMAIL PROTECTED]> wrote: > > I figured it ou

[flexcoders] Re: Number of viewable rows in datagrid

2008-11-10 Thread creativepragmatic
I figured it out. Instead of using creationComplete, I used the render event. --- In flexcoders@yahoogroups.com, "creativepragmatic" <[EMAIL PROTECTED]> wrote: > > Hello Everyone, > > This seems like it should be easy to do. I am trying to get the > number of visible rows in a datagrid comp

RE: [flexcoders] drag and drop from Tree to List

2008-11-10 Thread Tracy Spratt
Because the dataProviders are presumably dissimilar, with the tree being hierarchical and the list being linear, you will not be able to depend on the built-in functionality, but will need to override the drag handler functions, and update the dataProviders yourself. Tracy _

[flexcoders] Animate LineChart

2008-11-10 Thread thedevguy
Is there a way to animate a line chart. I have 80 datapoints that I would like to draw on the linechart to make it look like a movie or animation. Is there a way to do this?

Re: [flexcoders] drag and drop from Tree to List

2008-11-10 Thread anuj sharma
Hi I am not sure I get that but in general if you drag and drop from lets' say 'A' to "B' ,I have used to drag and drop both ways from one list to another and I did is as follows A.dragMoveEnabled=true; A.dragEnabled=true; A.dropEnabled=true; B.dragMoveEnabled=true; B.dragEnabled=true; B.dropEnab

[flexcoders] Number of viewable rows in datagrid

2008-11-10 Thread creativepragmatic
Hello Everyone, This seems like it should be easy to do. I am trying to get the number of visible rows in a datagrid component. When using the creationComplete event of DataGrid, the number of rows is always 7 after the SWF is loaded. That is incorrect. There are 27 rows. Does anyone kno

[flexcoders] drag and drop from Tree to List

2008-11-10 Thread graysonpierce
I have a tree and a list that I'd like to use drag and drop on to do the following: 1. Do reordering in the list (ie move the items around) 2. Drag items from the tree to the list in order to copy items The problem I'm experiencing is that when I turn on dropEnabled="true" on the list the reord

[flexcoders] Play audio backwards

2008-11-10 Thread nathanpdaniel
Is it possible to play an audio clip (MP3, WAV, etc.) backwards?

[flexcoders] Basic auto Update of Flex UI with the Postgres database

2008-11-10 Thread anuj181
Hi Guys I asked his question earlier too and you guys were helpful in giving me solution but i ended up implementing solution which consume lot of resources . I have a tree which is getting data from Postgres though HTTP service and binding data in XMLList. As soon as new entry has been added to t

[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-10 Thread sailorsea21
Hi Amy, My graph is a multiple series (Column and Line). I successfully modified the column series datatip but my line series data tip is now giving me an error: "Type Coercion failed: cannot convert mx.charts.series::[EMAIL PROTECTED] to mx.charts.series.ColumnSeries." How can I have another

[flexcoders] Re: Flex 3 installation

2008-11-10 Thread markgoldin_2000
It worked, thanks. --- In flexcoders@yahoogroups.com, "Howard Fore" <[EMAIL PROTECTED]> wrote: > > Don't. Just reset the license in your current copy: Google "flex builder > license reset" or go to > http://blog.ryanswanson.com/2008/05/flex-builder-license-reset.html > > On Mon, Nov 10, 2008 at

[flexcoders] Is Astro (version 10) of the Flash VM on the auto-updateder now?

2008-11-10 Thread jim.abbott45
Can anyone (Matt, Alex, ...others?) confirm that version 10 is what the auto-updater is pushing out now? FYI: on at least one of my Development machines, I just got an update recommendation (to v10), even though I wasn't looking for an update. TIA, Jim

[flexcoders] Re: Adding objects to arraycollections

2008-11-10 Thread Tim Hoff
I think that you could have got this one from the docs. arrycoll.addItem(obj1); -TH --- In flexcoders@yahoogroups.com, "timgerr" <[EMAIL PROTECTED]> wrote: > > Hello all, I was wondering how to add objects to arraycollections > arrycoll:ArrayCollection = new ArrayCollection(); > obj1:Object = n

Re: [flexcoders] Flex 3 installation

2008-11-10 Thread Howard Fore
Don't. Just reset the license in your current copy: Google "flex builder license reset" or go to http://blog.ryanswanson.com/2008/05/flex-builder-license-reset.html On Mon, Nov 10, 2008 at 1:01 PM, markgoldin_2000 <[EMAIL PROTECTED]>wrote: > I am getting another copy of Flex 3. How do I uninstall

[flexcoders] Adding objects to arraycollections

2008-11-10 Thread timgerr
Hello all, I was wondering how to add objects to arraycollections arrycoll:ArrayCollection = new ArrayCollection(); obj1:Object = new Object(); obj2:Object = new Object(); obj1.id = 'Hi'; obj.2.id = 'Bye'; how do I add obj1 and obj2 to an array collection? Thanks, timgerr

Re: [flexcoders] Chile?

2008-11-10 Thread Fernando Lobos
yo soy de chile, mi msn: [EMAIL PROTECTED] On Mon, Nov 10, 2008 at 1:08 PM, sachinyc <[EMAIL PROTECTED]> wrote: > I am looking for fellow Flex+Java coders in Chile. If you are in Chile > or can move to Chile, I have some exciting opportunity that will be > really cool. Ping me here or on google

[flexcoders] Conditional imports for mocks

2008-11-10 Thread Richard Rodseth
For some time now I have had most of my code in libraries, and two tiny application projects, one with mock services instantiated, the other with actual services. I figured that this way the release SWF would not contain the mock classes. I was considering using conditional compilation instead, bu

[flexcoders] Flex 3 installation

2008-11-10 Thread markgoldin_2000
I am getting another copy of Flex 3. How do I uninstall current one, so it will accept new serial number? Thanks

[flexcoders] new build of as3corelib posted

2008-11-10 Thread Mike Chambers
I have posted a new build and download of the as3corelib library: http://code.google.com/p/as3corelib/downloads/list This is the first build in some time. Bug fixes, some new features, new docs, and more. mike chambers [EMAIL PROTECTED]

RE: [flexcoders] Viewing server response from a FileReference.upload request?

2008-11-10 Thread Tracy Spratt
The "DataEvent.UPLOAD_COMPLETE_DATA" event has the "data" property. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ozziegt Sent: Monday, November 10, 2008 12:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Viewing serv

[flexcoders] Re: Viewing server response from a FileReference.upload request?

2008-11-10 Thread btroop202
What are you using as your middleware? if you are using cf, you can load the data into a file, then look at the file. Like this:

[flexcoders] Re: flex skins and states issue

2008-11-10 Thread ashok
thanks subeesh. that worked like a charm. thanks once again. --- In flexcoders@yahoogroups.com, "Subeesh" <[EMAIL PROTECTED]> wrote: > > You can set the " headerHeight " of the panel to 0 . > > > > Subeesh > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of ashok >

[flexcoders] Viewing server response from a FileReference.upload request?

2008-11-10 Thread ozziegt
It seems that there is no way to view the response from the server when making a FileReference.upload request. While URLLoader has a data object, it seems that FileReference has no such object. Is this true? The server I am using returns an XML response which includes some information that I need.

[flexcoders] Re: external urls

2008-11-10 Thread valdhor
Here is one example: http://www.adobe.com/2006/mxml"; layout="horizontal" horizontalAlign="left" verticalAlign="top"> --- In flexcoders@yahoogroups.com, "iloveyouwisconsin" <[EMAIL PROTECTED]> wrote: > > Newbie alert...now for my stupid questio

Re: [flexcoders] Re: Use an .exe or a .dll

2008-11-10 Thread Donna Stewart
Have you looked at WebOrb?   --- On Mon, 11/10/08, mugsisme <[EMAIL PROTECTED]> wrote: From: mugsisme <[EMAIL PROTECTED]> Subject: [flexcoders] Re: Use an .exe or a .dll To: flexcoders@yahoogroups.com Date: Monday, November 10, 2008, 11:07 AM Thanks for the suggestions, but my .exe/.dll is n

RE: [flexcoders] flex skins and states issue

2008-11-10 Thread Subeesh
You can set the " headerHeight " of the panel to 0 . Subeesh From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ashok Sent: Monday, November 10, 2008 9:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] flex skins and states issue wanted some help with my uni

[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-10 Thread Amy
--- In flexcoders@yahoogroups.com, "sailorsea21" <[EMAIL PROTECTED]> wrote: > > Hi everyone, > I have a multiple series graph: ColumnSeries and LineSeries. > How can I modify the value displayed in my ColumnSeries datatip? > The value is a numeric value like 20465. > I would like to apply a numb

[flexcoders] sailorsea - Several buttons targeting different panels with 1 function?

2008-11-10 Thread sailorsea21
Hello everyone, I have several panels. They each have a print and a save button. Is it possible to have only one function to target the panel from the buttons? Here's my code: private function print(event:MouseEvent):void { var Printbutton:FlexPrintJob = new FlexPrintJob(); var printConfirmed:B

RE: [flexcoders] Persisting Datagrid sort order through dataprovider changes

2008-11-10 Thread Tracy Spratt
Call refresh() on the collection after assigning the new result data. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ericbichara Sent: Monday, November 10, 2008 7:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Persist

[flexcoders] Re: Help on sorting an ArrayCollection then adding an item to the top

2008-11-10 Thread Tim Hoff
Yes, that wording does make a difference. You can look into using a sortCompare function. Or, you can hack it by adding the item to the collection, but in addition add an additional property to all of the items in the collection, like sortIndex; that will be used to sort the reset item at the to

Re: [flexcoders] Re: How to get image data and save it?

2008-11-10 Thread Barry Gee
any chance of getting that code too? its a problem im trying to fgure out too. thanks Barry. Cato Paus wrote: > > I have sent it to you on your [EMAIL PROTECTED] > with all the > source code.. or do you use a other email? > > --- In flexcoders@yahoogroups.com

[flexcoders] Re: How to get image data and save it?

2008-11-10 Thread Cato Paus
I have sent it to you on your [EMAIL PROTECTED] with all the source code.. or do you use a other email? --- In flexcoders@yahoogroups.com, "markflex2007" <[EMAIL PROTECTED]> wrote: > > Hi, > > I develop an AIR application. I use file browser to select a image > file and I want to get the image da

[flexcoders] Chile?

2008-11-10 Thread sachinyc
I am looking for fellow Flex+Java coders in Chile. If you are in Chile or can move to Chile, I have some exciting opportunity that will be really cool. Ping me here or on googleTalk [EMAIL PROTECTED] Have fun, Sachin

Re: [flexcoders] Re: How to get image data and save it?

2008-11-10 Thread Fotis Chatzinikos
MArk search your previous thread... i have seen the code... Possibly in an attachment cannot remember... On Mon, Nov 10, 2008 at 5:56 PM, markflex2007 <[EMAIL PROTECTED]>wrote: > Hi Cato, > > Please send me your post link. > > I can not see your post with code. > > Thanks > > Mark > > > --

[flexcoders] Re: How to get image data and save it?

2008-11-10 Thread Cato Paus
Hi i posted you a message on markflex2007 with some source code look at the flex project it reads bytes form the database. --- In flexcoders@yahoogroups.com, "markflex2007" <[EMAIL PROTECTED]> wrote: > > Hi, > > I develop an AIR application. I use file browser to select a image > file and I want

[flexcoders] Re: How to get image data and save it?

2008-11-10 Thread markflex2007
Hi Cato, Please send me your post link. I can not see your post with code. Thanks Mark

[flexcoders] flex skins and states issue

2008-11-10 Thread ashok
wanted some help with my unique problem. in my application there are several states, and in one of the states, i have a canvas which contains a viewstack. the elements of the viewstack are panels. i have used skinning for the panels inside the viewstack. i don't see the titlebar for these panels th

[flexcoders] Re: How to get image data and save it?

2008-11-10 Thread markflex2007
Maybe my question is how to read a file to binary format and save it to db. Thanks Mark --- In flexcoders@yahoogroups.com, "markflex2007" <[EMAIL PROTECTED]> wrote: > > Hi, > > I develop an AIR application. I use file browser to select a image > file and I want to get the image data and save it

[flexcoders] Re: Help with Custom Text Area (Limited by lines)

2008-11-10 Thread tchredeemed
Yes, it would, and I think I just figured out how to do it... A few changes and I have come up with this: public class LimitedTextArea extends TextArea { private static const MAX_LINES:int = 10; private var allowMore:Boolean = true; public function LimitedTextAre

RE: [flexcoders] Re: Custom combobox even propagation

2008-11-10 Thread Alex Harui
Combobox stops propagation of the keyboard event. Go with your original but do this in content.mxml content.addEventListener(KeyboardEvent.KEY_DOWN, handleKeyboard, true); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of schneiderjim Sent: Monday, November 10, 2008 7:16

RE: [flexcoders] Re: Help with Custom Text Area (Limited by lines)

2008-11-10 Thread Alex Harui
I see. What if you go back to your original attempt and set MAX_LINES to 11? Will it then "stop" at 10? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tchredeemed Sent: Monday, November 10, 2008 7:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Help with

[flexcoders] Re: Custom combobox even propagation

2008-11-10 Thread schneiderjim
I'll admit that I'm not sure you mean by the "capture phase". I can tell you what else I did. In the customer comboxbox constructor, I did add this (pseudo code): public MyComboBox () : void { component = new ComboBox(); component.addEventListener(Keyboard.KEY_DOWN, handleIt); } private func

[flexcoders] How to get image data and save it?

2008-11-10 Thread markflex2007
Hi, I develop an AIR application. I use file browser to select a image file and I want to get the image data and save it to database so other people can see the image by reading the image data in database. I can not save the imageFile.url to database because other people do not have the image in

[flexcoders] Re: Help with Custom Text Area (Limited by lines)

2008-11-10 Thread tchredeemed
public class LimitedTextArea extends TextArea { private static const MAX_LINES:int = 10; private var textLength:int = 0; private var storedInput:String; private var limitHit:Boolean = false; public function LimitedTextArea(){ this.addEventListener( KeyboardEvent.KEY_UP, keyUpHandler ); this.addEv

[flexcoders] Upgrade only ASDoc.

2008-11-10 Thread rleuthold
Hi, Does anybody know if it's possible to upgrade to a newer version of ASDoc without having to upgrade the whole sdk ? It would love to use the new mxml asdoc feature but my app is not Gumbo ready at all. Thank's rico

[flexcoders] Re: Around image in new flash text engine

2008-11-10 Thread Cato Paus
I want to know too ! --- In flexcoders@yahoogroups.com, "cenkhchuluun" <[EMAIL PROTECTED]> wrote: > > Hello guys~ I'm planning to develop a rich text editor using flex. One > big task is that make it possible to insert image within text content > surrounded by texts, I mean inline image. As you

RE: [flexcoders] Help with Custom Text Area (Limited by lines)

2008-11-10 Thread Alex Harui
What did the code look like when you tried to save the last length? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tchredeemed Sent: Monday, November 10, 2008 6:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Help with Custom Text Area (Limited by lines) This

RE: [flexcoders] Drag and drop module

2008-11-10 Thread Alex Harui
http://blogs.adobe.com/aharui/2007/08/popup_dialogs_as_modules.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claudiu Ursica Sent: Monday, November 10, 2008 5:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drag and drop module Hi, I have a module who co

RE: [flexcoders] Re: Custom combobox even propagation

2008-11-10 Thread Alex Harui
Try listening in capture phase From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of schneiderjim Sent: Sunday, November 09, 2008 4:10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Custom combobox even propagation Thanks, but I'm not looking to capture "normal" k

[flexcoders] Help with Custom Text Area (Limited by lines)

2008-11-10 Thread tchredeemed
This is my code: public class LimitedTextArea extends TextArea { private static const MAX_LINES:int = 10; private var storedInput:String; private var limitHit:Boolean = false; public function LimitedTextArea(){ this.addEventListener( KeyboardEvent.KEY_UP, keyUpHandler )

[flexcoders] Re: Using XML Object passed from ASP.NET web service in a Flex Datagrid

2008-11-10 Thread valdhor
Okely Dokely ;-} Best Regards Steve --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > So, Steve, sign your posts! > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of valdhor >

[flexcoders] Re: need some help with extending the LinkBar a bit

2008-11-10 Thread valdhor
LinkBars have LinkButtons as their underlying components so something like the following should do it: http://www.adobe.com/2006/mxml"; xmlns:local="*" creationComplete="onCreationComplete()">

[flexcoders] Re: fileRequest.upload to cfc help

2008-11-10 Thread btroop202
there is a flex FileReference that you need to use, then call a upload cfm page. So here is the cfm page:

[flexcoders] Around image in new flash text engine

2008-11-10 Thread cenkhchuluun
Hello guys~ I'm planning to develop a rich text editor using flex. One big task is that make it possible to insert image within text content surrounded by texts, I mean inline image. As you know there's already inline image support in both flex3,4 (TextField, TextView), the problem is that the ins

[flexcoders] Re: lockedRowCount won't set

2008-11-10 Thread grg_blls
Hi, this is not a solution to your problem, that happens to be mine as well! I posted the same question on the Oct 30 - having missed your post - I actually came to the same findings you have, in my project. As there was no answer to your post, also there are no answers to mine. Testing exhaus

[flexcoders] sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-10 Thread sailorsea21
Hi everyone, I have a multiple series graph: ColumnSeries and LineSeries. How can I modify the value displayed in my ColumnSeries datatip? The value is a numeric value like 20465. I would like to apply a numberFormatter to the value displayed in the ColumnSeries datatip without affecting the Lin

[flexcoders] Google finance charts - Compare stocks

2008-11-10 Thread chebrolu_srilatha
I am trying to implement flex charts much similar to google finance interactive charts. When the stocks are compared say yahoo and microsoft stocks are compared. then the y -axis labels are showing the percentage change in the price value. Could any one please let us know how its implemented?

[flexcoders] Advanced Data Grid - LockedRowCount property

2008-11-10 Thread grg_blls
Is there actual evidence that this property "lockedRowCount" actually exists (or has any effect) in Advanced Data Grid (of AS3 stable)? As I have posted this question before (and others did before me) but got no reply, I wonder what is the reason... Contrary to the above statements, the other

  1   2   >