[flexcoders] Drag is cancelling Click event

2007-02-27 Thread ecpmaz
I have a component that is drag enabled, and I want him to be click enabled also... Unfortunately I am not able to catch any click event (or even mouseUp)... Do you have any ideas to solve this problem ? mx:Canvas mouseDown=drag(event) mouseUp=click(event)

[flexcoders] Re: How can I loop through a Tile ?

2007-02-27 Thread oneproofdk
--- In flexcoders@yahoogroups.com, Ciarán [EMAIL PROTECTED] wrote: Hi Mark, Hi Ciarán Thanks for your answer. I can see your point, so I'll try to illustrate what I'm doing and trying to achieve: In the application, I have a mx:tile id=tile1/ In a HTTPService Result Handler, I loop through

[flexcoders] Multi-axis chart

2007-02-27 Thread Mikhail Shevchuk
Hello, What is the best way to implement multi-axis line chart like this ( http://www.infosoftglobal.com/FusionCharts/PowerCharts.asp#maxisline) ? -- A vivid and creative mind characterizes you.

Re: [flexcoders] Re: Keyboard issues on VISTA

2007-02-27 Thread Tom Chiverton
On Monday 26 Feb 2007, iko_knyphausen wrote: Ok, thanks. No the processor was around 10% max. And it seems to happen on all Vista boxes with Vista Home Premium (see my visit to COMPUSA), with the exception of one AMD laptop that I had upgraded to Vista Ultimate. Continues to run fine on any XP

Re: [flexcoders] Re: Quick Flex 2.0 questions

2007-02-27 Thread Tom Chiverton
On Saturday 24 Feb 2007, Adam Pasztory wrote: automatically when you declare a var using that data type. I love clever little features like that. comment:PetGripe=stupid 'cross platform' IDE that doesn't run on Linux; :-) -- Tom Chiverton Helping to synergistically embrace open-source

[flexcoders] Re: How can I loop through a Tile ?

2007-02-27 Thread oneproofdk
Just to visualize the problem : http://flex2.dk/mark/screencaps/tileproblems.jpg

Re: [flexcoders] (Simple?) Problem with TextInput component

2007-02-27 Thread Tom Chiverton
On Monday 26 Feb 2007, Ciarán wrote: How do I get rid of it? Have you tried the padding/margin etc. CSS properties ? -- Tom Chiverton Helping to synergistically mesh interactive applications at http://thefalken.livejournal.com This email

Re: [flexcoders] Flex Fullscreen Apps

2007-02-27 Thread Tom Chiverton
On Monday 26 Feb 2007, john_69_11 wrote: though. Do I need to manually change the sized/position of all my components when changing between normal and fullscreen or am I doing If you've absolutely positioned them, yes. You'd have the same problem if someone resized the browser window. -- Tom

Re: [flexcoders] Multi-axis chart

2007-02-27 Thread Tom Chiverton
On Tuesday 27 Feb 2007, Mikhail Shevchuk wrote: What is the best way to implement multi-axis line chart like this ( http://www.infosoftglobal.com/FusionCharts/PowerCharts.asp#maxisline) ? The normal Flex Charting stuff supports multiple axis. -- Tom Chiverton Helping to elementarily brand

Re: [flexcoders] pie chart: group small values together

2007-02-27 Thread Tom Chiverton
On Monday 26 Feb 2007, bruno.navert wrote: Is there some quick painless way to get this to work ? You'll need to loop over the results you get back and construct a new collection to bind the chart to that has the properties you want. This may mean learning a bit of ActionScript. -- Tom

RE: [flexcoders] Drag is cancelling Click event

2007-02-27 Thread Bas J. Brey
You should use the drag events for dragging, there is an example in the help that shows how to work with dragging. _ Van: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Namens ecpmaz Verzonden: dinsdag 27 februari 2007 9:14 Aan: flexcoders@yahoogroups.com Onderwerp:

Re: [flexcoders] The complete component communication solution for Flex. ALON DP.

2007-02-27 Thread Tom Chiverton
On Tuesday 27 Feb 2007, helihobby wrote: To solve this, I came up with the ALON Design Pattern and I wish to get some feedback. How does this strategy compare to Cairngorm's ? It looks fairly similar - things fire abstract events to a central controller. -- Tom Chiverton Helping to

[flexcoders] Re: How can I loop through a Tile ?

2007-02-27 Thread oneproofdk
Hi Ciarán Just put up a small example for you (and others) to see. Rightclick to view source: http://flex2.dk/mark/addchild/childTest.html Very simple app - 2 buttons. Add Children - will add 12 vboxes, each containing 2 images Loop Through Children - Will loop through tile1.numChildren -

[flexcoders] Re:How do I prevent the user from selecting text in a text area

2007-02-27 Thread Robi Ray
Make the enabled property as false add a suitable color value to the 'disabledColor' attribute.

RE: [flexcoders] Chart annotationElements based on series data

2007-02-27 Thread Ely Greenfield
There's no obvious way to do what you're doing. The annotation element has access to the chart, so you could iterate over the series of the chart, and ask for their data. To get access to what is currently visible on screen, you could ask for their renderData, then look at the filteredCache

Re: [flexcoders] Creating a Video Player in Flex

2007-02-27 Thread Brian Dunphy
You can also take this one step farther and put an HSlider and a ProgressBar inside a Canvas container (overlaying one over the other) and create a video scrubber that also displays percentage loaded. Brian On 2/26/07, Alan Rother [EMAIL PROTECTED] wrote: Awesome Thank you. I had

Re: [flexcoders] flash 9 alpha IDE run on mac os x intel?

2007-02-27 Thread Brian Dunphy
No, it is not available for Intel Macs at this time. I've setup a good development environment on an Intel Mac by doing the following: - Using Flex Builder 2 (OS X) for my Actionscript 3 development environment - Using Parallels (virtualization software) to load Flash 9 w/ Actionscript 3 preview

RE: [flexcoders] How to align identical CategoryAxis as HorizontalAxis and SecondHorizontalAxis

2007-02-27 Thread Ely Greenfield
Are you trying to align the gridlines, or align the axes? The short answer is no. There's no general way to force the chart to align a horizontal and secondary horizontal axis (with the asumption, perhaps wrong, being that the reason you're using secodary axes in the first place is because

RE: [flexcoders] Re: broken: stacked AreaChart when using horizontal DateTimeAxis

2007-02-27 Thread Ely Greenfield
The DateTimeAxis uses the built in ECMAScript Date parsing function to convert strings to dates. So if your dates are in a different format, you need to provide your own parsing function. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] FDS with Java Question: Why is it grouping requests?

2007-02-27 Thread Jeff Vroom
When you get the fault for the first delete, you probably just need to call revertChanges - either for all changes or just that item. After any fault, all messages you commit as part of that batch get reverted - i.e. put back into the uncommitted list. When you revert them, we'll undo those

RE: [flexcoders] pie chart: group small values together

2007-02-27 Thread Ely Greenfield
Hi Bruno. You could apply a sort to the data on the client before assigning it to the chart. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bruno.navert Sent: Monday, February 26, 2007 8:48 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Custom Component Styles

2007-02-27 Thread Stephen Gilson
Hi Graham, Isn't that similar to the example in the docs here: http://livedocs.adobe.com/flex/201/html/skinstyle_149_7.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of g_odds Sent: Monday, February 26, 2007 11:55 AM To:

RE: [flexcoders] Re: How to get the real X Y of a repeater item

2007-02-27 Thread Gordon Smith
Here is a sample app which does what you describe. - Gordon ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script![CDATA[ import mx.containers.Canvas; import mx.containers.TitleWindow; import mx.controls.Button;

Re: [flexcoders] Re: Cairngorm FDS Sample

2007-02-27 Thread Douglas Knudsen
remoteobject which requires FDS RemoteObject use in CF does NOT require FDS. DK On 2/26/07, auddaraj [EMAIL PROTECTED] wrote: Thanks for getting back posting your sample, Jeff. Yes Cairngorm store uses remoteobject which requires FDS, however they don't make you data management services. I

Re: [flexcoders] loading a swf file and dynamic symbols

2007-02-27 Thread Ciarán
Hi, Embedding is a compile-time operation, so you need to embed your symbols initially, then reference them later. You might try embedding all the symbols as separate assets within your flex app, i.e. [Embed(source='imageSwf.swf;,symbol='symbolName')] public var symbolName:Class; You can of

Re: [flexcoders] (Simple?) Problem with TextInput component

2007-02-27 Thread Ciarán
mx:TextInput does not create or extend any class with the properties paddingTop/paddingBottom - I wish it were that easy! -Ciarán On 2/27/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 26 Feb 2007, Ciarán wrote: How do I get rid of it? Have you tried the padding/margin etc. CSS

RE: [flexcoders] ctrl key with a combination - doesnt seem to work

2007-02-27 Thread Robert Chyko
Are you sure you want to be capturing a capital C (keyCode == 67)? I think I am using keyCode == 17 for lowercase c (but you will want to double check). -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jmorpher03 Sent:

Re: [flexcoders] Time Based State Transitions

2007-02-27 Thread Mike Britton
You could use Timer, but this would also work. You may want to switch it to use a Singleton. Usage: var myTraceBack:CommunicationManager = new CommunicationManager(); myTraceBack.addEventListener(CommunicationManager.ANIMATION_COMPLETE, onDoneMove); myTraceBack.startCountdown(1000); package

Re: [flexcoders] Re: FDS/Hibernate Sample of updating hierarchical list of values

2007-02-27 Thread Chris Allen
Hi Simon, I'm one of the leaders for the Red5 project (http://osflash.org/red5), and I also run a consulting business focused on Flash, Flex, Java and Red5. I saw this post that you sent to the Flexcoders list about the troubles that you are having with FDS and Hibernate. I thought that it

Re: [flexcoders] Creating a Video Player in Flex

2007-02-27 Thread Mike Britton
I made this component with that in mind. It's a work in progress, but the HSlider code is pretty solid: ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx= http://www.adobe.com/2006/mxml; creationComplete=init() mx:states mx:State name=Full Screen

RE: [flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-27 Thread Robert Chyko
yourDataGrid.addEventListener(ListEvent.ITEM_CLICK, setColumnCopy); function setColumnCopy(){ _selectedCol = yourDataGrid.columns[event.columnIndex].dataField; Alert.show(yourDataGrid.selectedItem[_selectedCol]); } -Original Message- From: flexcoders@yahoogroups.com

Re: [flexcoders] observing a model change in cairngorm

2007-02-27 Thread Douglas Knudsen
Could you explain how a little? If I have a Class Foo containing a ArrayCollection of Goo classes and Goo has a ArrayCollection of Hoo classes and I change one of the Hoo instances, my bindings to Foo will not fire. Seems my bindings to one of the Goos will thugh. Its as if the change events

RE: [flexcoders] Cairngorm FDS Sample

2007-02-27 Thread jason.proulx
Heya, I was looking for one too and there doesn't seem to be one. I'm able to currently encapsulate Create/Read/Delete actions in commands, but I haven't yet found a reliable way to encapsulate Updates in a command. Everything else works very nicely. Example of fill: var

RE: [flexcoders] Re: Just curious, A big development team or individual developers

2007-02-27 Thread - FI / Jonas Eliasson +
We are a team of 6 developers working on a flex project from two offices using SVN. We have a modular setup where we use different RSL's and external modules which are pulled in from a main application. This way we can work independently. I have been developing Adobe (Macromedia) products for

RE: [flexcoders] ctrl key with a combination - doesnt seem to work

2007-02-27 Thread Robert Chyko
Please disregard my reply... i got my code from a coworker and after some testing based on your post I believe the code I am using is incorrect. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jmorpher03 Sent: Monday,

RE: [flexcoders] Looking for guidance on HTTPService sequencing

2007-02-27 Thread Tracy Spratt
Here is how I do this: 1) create a single result handler function, used by all calls. 2) When I invoke send, on the returned AsyncToken, I set a property, sCallId, to a string that identifies the call 3) When a result returns, I get the sCallId and use it in a switch statement

Re: [flexcoders] (Simple?) Problem with TextInput component

2007-02-27 Thread Daniel Freiman
The UITextField can be extended, but there is no way to get rid of the border/padding directly. If you really want, you should be able override x, y, width and height of UITextField to fake out the bounds with an offset of 2 in each direction, but overriding those properties can get tricky.

Re: [flexcoders] Re: Problem with List Item Renderer (and states)

2007-02-27 Thread nwebb
Thanks to everyone who has put forward a suggestion so far :). My List is populated with an ArrayCollection of Typed objects (of type Band). Obviously my Band class should not have the responsibility of storing the current state (expanded/collapsed) - or even knowing anything about it, so I am

Re: [flexcoders] Creating a Video Player in Flex

2007-02-27 Thread André Rodrigues Pena
I'd like to know how to embed youtube videos to Flex On 2/26/07, Alan Rother [EMAIL PROTECTED] wrote: Awesome Thank you. I had searched the archives but didn't find this one. =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer -- André Rodrigues Pena LOCUS

RE: [flexcoders] Be patient, some messages are taking many hours to post.

2007-02-27 Thread Tracy Spratt
Well, that one didn't! Maybe I embarrassed the server. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Monday, February 26, 2007 1:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Be patient, some

Re: [flexcoders] Time Based State Transitions

2007-02-27 Thread Clint Tredway
you can use setInterval or setTimeout On 2/26/07, nextadvantage [EMAIL PROTECTED] wrote: How would I go about changing view states say every 10 secs... with a 1 sec fade? -- http://indeegrumpee.spaces.live.com/

[flexcoders] Re: Can anyone help on getting data from a grid cell

2007-02-27 Thread li wenzhi
a complete sample: - ?xml version=1.0? !-- DataGrid control example. -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; initialize=initApp() mx:Script![CDATA[ import mx.controls.Alert;

RE: [flexcoders] disabling COPY in drag/drop operations

2007-02-27 Thread Jason Hawryluk
Create a dragStart event and if (event.altKey==true){ event.preventDefault(); return; } un tested but should get you on the right track... jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de darvon4u Envoyé : lundi 26 février

Re: [flexcoders] Finding out when an arraycollection in my model is set

2007-02-27 Thread Webdevotion
Thanks fellow Flex coders; Slangeberg's tip did the trick I was looking for ; ) On 2/25/07, slangeberg [EMAIL PROTECTED] wrote: You can use simple binding, via {} brackets. MyComp dataProvider={model.library} / Or, you can use the ChangeWatcher: ChangeWatcher.watch( model, library,

[flexcoders] Links defined in Label or Text htmlText doesn't work upon the first click when in TabNavigator

2007-02-27 Thread Sergey Kovalyov
Hi All! Take a look at this example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:TabNavigator width=100% height=100% mx:VBox label=Adobe mx:Label selectable=true mx:htmlText ![CDATA[a

[flexcoders] Tree Leaf Renderer (TreeItemRenderer)

2007-02-27 Thread Anthony Lee
Hi All, I'd like to present Tree leaves as value pairs with the first value in a fixed width space. ie. simple columns. I attempted to extend TreeItemRender and swap the default label:UITextField with a VBox containing two UITextFields but am coming up against a few problems, not the least of

Re: [flexcoders] Multiple TrackHighLight for a slider without thumbs

2007-02-27 Thread Young Kim
Very interesting approach and I guess I should give it a shot. However, what if I want to have multiple track highlights in one HSlider. e.g. a track highlight for b/w 10 - 20 and other track highlight for 30 - 40 so forth. Add more HSlider for each highlight segment? Can we implement this

[flexcoders] how do you call the super's super?

2007-02-27 Thread Anthony Lee
Hi, Sorry for the lame AS questions, but can anyone tell me how to call the super method of the class I'm extending? ie. the grandparent and not the parent. Thanks, tonio

[flexcoders] Data Corruption with Multiple Trees

2007-02-27 Thread Anthony Lee
The lack of information about how to populate the Tree component with a non-XML data source is driving me nuts. Now I'm having an issue with populating multiple Trees, as soon as I set the dataProvider for the second Tree the information in both gets corrupted. I'm about ready to write this off

Re: [flexcoders] Storing / retrieving rich text

2007-02-27 Thread André Rodrigues Pena
I don't know how you are reading and writing data. If it's HTTPService (more likely) you may need to set the resultFormat to text. On 2/27/07, pdflibpilot [EMAIL PROTECTED] wrote: I am trying to develop a method to allow web administrators to be able to edit text in their Flex application

[flexcoders] channel disconnected before an acknowledgement was received

2007-02-27 Thread John Menke
I am getting an error *channel* *disconnected* before an acknowledgement was received when i envoke a fill method on my Assembler. This method uses Spring remoting to make an RMI call to retrieve data and i have confirmed the method call works. Is there any way of increasing the timeout on a

[flexcoders] Re: Cairngorm FDS Sample

2007-02-27 Thread auddaraj
Thanks Dimitrios Billy for your posting your thoughts. It would be great if someone can share a sample project using FDS with Cairngorm along with data services(not remoting). Thanks --- In flexcoders@yahoogroups.com, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Ok I'll chime in here since

[flexcoders] Re: Test for Network Connection

2007-02-27 Thread Matt Maher
Good lord Jim, you have saved me TONS of work! Thank you so very much! --- In flexcoders@yahoogroups.com, Jim Cheng [EMAIL PROTECTED] wrote: Matt Maher wrote: I'm writing an on-line/off-line application that will sync your data once you return to an on-line status. Instead of calling an

[flexcoders] Annoying IE Error (Works in All other browsers!)

2007-02-27 Thread danneri21
I have a Flex app, an administration panel for one of my clients site. There is a section where the client can add / delete/ edit advertising supporters. There are three states, one to create the new supporters, one to view all the supporters, and then from there edit the sponsers or delete

[flexcoders] channel disconnected before an acknowledgement was received

2007-02-27 Thread John Menke
I am getting an error channel disconnected before an acknowledgement was received when I call a fill method on my Assembler. This fill method uses Spring remoting to make an RMI call to retrieve data and I have confirmed the method call works. Is there any way of increasing the timeout on a

[flexcoders] list of events really dispatched by a view

2007-02-27 Thread Eric Guesdon
Hi to All, I'm looking to get the list of events really connected in a view. For example: mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; creationComplete=dispatchEvent (new Event ('myViewCreationCompleteHandler')) mx:Button id=myButton

[flexcoders] Re: Timers Not Firing

2007-02-27 Thread norealnamesleft
I had some weird deal where I had 2 timers calling the same EventHandler (copy and paste mistake) and even though i stopped both Timers one kept going Not that this is optimal but I would try offsetting your Timers 100, 101, 102, etc and see if that works or running one function and using

[flexcoders] flash cookie

2007-02-27 Thread thierrybertossa
Is it possible to store a cookie (LSO) from a domain www.x.com and then access this cookie from a .swf played outside internet explorer or mozilla (in flash player directly) if we know the name of the domain www.x.com ?? thanks

[flexcoders] Re: Storing / retrieving rich text

2007-02-27 Thread iko_knyphausen
Have you tried using CDATA around your text when retrieving from your database? ![CDATA[ ]] I use it to store HTML formatted text in a database and to retrieve it back into any HTML capable control, such as rtfedit or textarea... even a simple TEXT control as itemrenderer works with this

[flexcoders] Re: Invalid Configuration Exception

2007-02-27 Thread jairokan
Hi Dimitrios, Thanks for the advise. I found the exception details on the log file. And the details solved my problem missing folder WEB- INF/flex/classes. I don't know why I didn't check the log file before I submit my enquiry. That's an obvious step to do when debugging. In case if someone

[flexcoders] Re: How to clear a TileList of its items?

2007-02-27 Thread nboulet
Thanks for the tips! It worked like a charm for me :) --- In flexcoders@yahoogroups.com, Clint Modien [EMAIL PROTECTED] wrote: Odd... did you try setting the dataprovider to a new object instead of setting it too null? You could also try: yourTileListID.dataProvider.removeAll();

Re: [flexcoders] Re: Dynamically creating a text object

2007-02-27 Thread Matt Wicks
I have a (possibly) related isssue : creating a component which then creates a seres of Overlays on top of itself - one of which is a series of text objects - -- the base component that I am addingChild' to is a Sprite - adding multiple shapes or sprites works fine but when I add Text

RE: [flexcoders] Re: Quick Flex 2.0 questions

2007-02-27 Thread Gordon Smith
Jamie, you can try out FlexBuilder for free (I think for 30 days) to help decide whether it's worth it. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Adam Pasztory Sent: Saturday, February 24, 2007 11:06 AM To:

[flexcoders] Result to ArrayCollection - somtimes node is single, sometimes it's an array

2007-02-27 Thread darylgmyers
When I use an HTTPService result as an ArrayCollection, certain nodes will be set as a single item or an array depending on the number of items in the node. Is there a simple way to always force a node to an array regardless of how many items there are?

[flexcoders] Re: WS call sucessful with resultFormat=e4x, fails otherwise

2007-02-27 Thread ben.clinkinbeard
Anyone? --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: Hello, we are seeing some weird behavior when calling an RPC encoded .NET web service. Unless we set resultFormat to e4x, we receive the following error: fault: [FaultEvent fault=[RPC Fault

[flexcoders] Re: Custom Component Styles

2007-02-27 Thread g_odds
Hi Stephen, The link you posted was what I was attempted to point people to in my first post. What I posted is indeed similar to what the Live Docs suggest but with a fairly vital twist. That suggested by the Live Docs means if a user defines only one of the component's style attributes using a

[flexcoders] Re: Chart annotationElements based on series data

2007-02-27 Thread g_odds
Seeing as the annotation element would be tied so tightly to the details of the individual series, would it maybe be an idea to create your own series that draws the series and, optionally, the curve annotation? That way it'd simplify accessing the series data too. The downside would be that you

Re: [flexcoders] Re: Storing / retrieving rich text

2007-02-27 Thread Ben Marchbanks
Wrapping the text in ![CDATA causes the CDATA to be interpreted literally and rendered along with the text. setting the resultFormat to text makes it much more difficult to handle the text and distribute it to the appropriate display objects. Barring any easier solutions at this point it

RE: [flexcoders] Re: WS call sucessful with resultFormat=e4x, fails otherwise

2007-02-27 Thread Karl Johnson
What data types are your returning in your SOAP Response from the .NET web service? There definitely are complex object types that java/.net support that Flex/AS do not. Karl Cynergy From: flexcoders@yahoogroups.com on behalf of ben.clinkinbeard Sent: Tue

[flexcoders] AS3 component woes

2007-02-27 Thread Janis Radins
Hey ppl! I'm trying to buil a menu component in here and I ran in some strange issues. I know how to workaround this issue but still i'm pretty much interested in why is it so. What I have is pretty straight forward routine. When user sets dataProvider I set allChildrenChanged = true and fire

[flexcoders] Re: Programatically creating LineSeries

2007-02-27 Thread Mehul Doshi
Thanks Tariq. I've looked at that example earlier but it doesn't quite work properly to do what I'm trying. The example uses an already known ArrayCollection and thus the yField of the different series can be set very easily. In my case, I'm getting an XML and then I'm not sure how to set up

[flexcoders] Re: loading a swf file and dynamic symbols

2007-02-27 Thread Mark
I didn't think of that (that it's a compile-time operation), thanks for pointing that out, it makes sense now why it wouldn't be working. So then let me ask this, is there another way to get to that symbol without embedding the SWF? The example you give, although I'm sure will work for me,

Re: [flexcoders] Embedding FusionCharts in a Flex application

2007-02-27 Thread Muzak
FusionCharts are AS2. You'll be able to load a FusionChart swf into a Flex app, but you won't be able to control it from Flex though. regards, Muzak - Original Message - From: Jon Rowland [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 27, 2007 11:16 AM

[flexcoders] Re: Getting XML from an item in an ArrayCollection

2007-02-27 Thread nboulet
I'm having the same problem when affecting the result of an httprequest to an ArrayCollection. The problem is, when there's no results or only 1, I get the same error (#1034) as you. Any ideas how to solve this? Thanks! Nicolas --- In flexcoders@yahoogroups.com, gekkemus [EMAIL PROTECTED]

Re: [flexcoders] Re: broken: stacked AreaChart when using horizontal DateTimeAxis

2007-02-27 Thread Tom Chiverton
On Monday 26 Feb 2007, Ely Greenfield wrote: The DateTimeAxis uses the built in ECMAScript Date parsing function to convert strings to dates. So if your dates are in a different format, you need to provide your own parsing function. Plug :-) http://thefalken.livejournal.com/40103.html -- Tom

Re: [flexcoders] Annoying IE Error (Works in All other browsers!)

2007-02-27 Thread Tom Chiverton
On Tuesday 27 Feb 2007, danneri21 wrote: It's really frustrating. I've tried it in Firefox Opera and they both work. Do all three browsers have the latest debug player installed ? -- Tom Chiverton Helping to heterogeneously expedite efficient infomediaries at http://thefalken.livejournal.com

[flexcoders] DataGrid to Xml

2007-02-27 Thread Jaap Cammeraat
Hi all, To populate a DataGrid is simple thru binding an ArrayCollection. Is there also a simple way to save the DataGrid (or ArrayCollection) as Xml? Regards Jaap Cammeraat

[flexcoders] Re: Drag is cancelling Click event

2007-02-27 Thread ecpmaz
You should use the drag events for dragging, there is an example in the help that shows how to work with dragging. What do you mean by 'drag events' ? A drag operation has to be initiated by a std mouse event, no ? Anyway, changing 'mouseDown' to 'mouseMove' to initiate the drap operation

[flexcoders] Re: Be patient, some messages are taking many hours to post.

2007-02-27 Thread Yaison Alcantara
ROFLOL!

Re: [flexcoders] Re: loading a swf file and dynamic symbols

2007-02-27 Thread Tom Chiverton
On Tuesday 27 Feb 2007, Mark wrote: hoping to display that symbol on the fly only because we're talking about close to 30 separate symbols, and that could grow as time goes on. I think you want the URLLoader here then. -- Tom Chiverton Helping to autoschediastically transform

[flexcoders] Re: Flex Fullscreen Apps

2007-02-27 Thread john_69_11
Not browser resizing, the new fullscreen option stage.displayState = StageDisplayState.FULL_SCREEN; Figured this out by just setting the stage.scaleMode = EXACT_FIT Works perfect now --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 26 Feb 2007, john_69_11

[flexcoders] Re: Keyboard issues on VISTA

2007-02-27 Thread camlinaeizerous
Have you been able to try it on home basic or professional? It is odd that it would only happen on premium and not ultimate.

[flexcoders] Flash Video Player

2007-02-27 Thread john_69_11
I've created a flv video player and have a step button to slowely move through the video. This step button is really just a hack, on mouse down it plays the video, on mouse up it pauses. Only problem is that when reporting the playheadTime from the video. When I play the video normally vs when

[flexcoders] Re: Annoying IE Error (Works in All other browsers!)

2007-02-27 Thread camlinaeizerous
I just ran it without the issues you just described. Using IE 6, Firefox 2 and IE Tabs in Firefox. I was receiving the following errors before being able to login. When i refreshed only received the loginform state error but even using log out it never actually logged me out when i refreshed the

RE: [flexcoders] Re: Timers Not Firing

2007-02-27 Thread Daniel Thompson
Thanks norealnamesleft. I think it's turning out to be a bug in the Flash player. In 9r28 the timers start firing again; in 9r16 (or 9r15...), they do not. Thanks, -DT -Original Message- I had some weird deal where I had 2 timers calling the same EventHandler (copy and paste

[flexcoders] Re: The complete component communication solution for Flex. ALON DP.

2007-02-27 Thread helihobby
It is similair. But in this Design Pattern you also have the direct com using getService and setService. Regards, Sean - HeliHobby.com --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 27 Feb 2007, helihobby wrote: To solve this, I came up with the

[flexcoders] changing states from within a component

2007-02-27 Thread stephen50232
Hi, I'm working on an application, which is component based. One of my components is a Login screen, in which the user enters the username and password, these details are passed to a ColdFusion CFC and checked, the result is then checked. If the login is successful I want to be able to change

RE: [flexcoders] changing states from within a component

2007-02-27 Thread Karl Johnson
Like everything, there are a million ways to do this. And best practices involve opinions sometimes...but I would say the best practice is to fire off an event in your login cfc result handler, and have the parent app listen on that loginSuccessfull event. Then have this.currentState = Home,

Re: [flexcoders] changing states from within a component

2007-02-27 Thread Jeffry Houser
Have the login component fire an event upon succesful, or failed, login. Have the 'main app respond to the event by changing states (or displaying an error). At 12:23 PM 2/27/2007, you wrote: Hi, I'm working on an application, which is component based. One of my components is a Login

[flexcoders] disabling COPY in drag/drop operations

2007-02-27 Thread Brian Holmes
set the dragMoveEnabled=false on your datagrid a+ brian.. *** 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 return e-mail delete this e-mail

[flexcoders] Flex Builder Syntax Highlighting Not Working

2007-02-27 Thread mark_c_robinson
Has anyone experienced syntax highlighting for the Flex Builder plugin (2.0.1) in Eclipse (3.2.1) failing all together or at best working sporadically? And has anyone determined a fix?

[flexcoders] Basic inheritance question

2007-02-27 Thread jairokan
Hi, I'm reading the Developer's Guide and in the section using Events, they say on a paragraph that : If you try to call another method on the currentTarget (for example, the setStyle() method), Flex returns an error. The setStyle() method is defined on UIComponent, a subclass of DisplayObject.

[flexcoders] Re: ArrayCollection.filterFunction assigned but returns null

2007-02-27 Thread ben.clinkinbeard
Anyone? --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: I've got a filterFunction assigned, the DataGrid that is bound to the ArrayCollection shows the correctly filtered list, and debugging shows that the source Array has 10 items while the collection only has

[flexcoders] Re: Storing / retrieving rich text

2007-02-27 Thread iko_knyphausen
Maybe I misunderstood your last post, but I am getting an XML field from a HTTPservice call with resultformat e4x and this XML field has HTML content wrapped in a CDATA tag. I bound this XML field to a regular text control's html property and it renders as HTML not as text --- In

Re: [flexcoders] Re: Storing / retrieving rich text

2007-02-27 Thread Ben Marchbanks
Can you share a sample of the XML content that you bind to your text control ? For now I have stripped the XML formatting (i.e. newlines and indents - rich Text tags remain in place) to achieve the desired results with AS. Otherwise my process is very much as you describe yours and works

RE: [flexcoders] Basic inheritance question

2007-02-27 Thread Karl Johnson
In general you always want to cast something like this - because event.currentTarget is of type object and NOT UIComponent or Button. But since objects are loosely typed as type Object, then you reference any property or method you want at compile time. Often at runtime though you will hit

[flexcoders] Error Handling on Computers with No Sound Hardware

2007-02-27 Thread JClouz
When I have flex play a sound effect on a computer with no sound hardware I get this actionscript error: TypeError: Error #1009: Cannot access a property or method of a null object reference. at mx.effects.effectClasses::SoundEffectInstance/play() at mx.effects::EffectInstance/startEffect()

[flexcoders] Re: Storing / retrieving rich text

2007-02-27 Thread iko_knyphausen
Sure... see below... The data gets stored as HTML (posted via Form fields) but without CDATA wrapping. The server side script that returns the data puts the wrapper CDATA tags around before sending the XML... mx:HTTPService id=xmlItemGridLog resultFormat=e4x fault=httpsFault(event)

[flexcoders] Re: setFocus - help needed

2007-02-27 Thread e_baggg
Change the line of code in your goTo() method to be: focusManager.setFocus(one); --- In flexcoders@yahoogroups.com, dffmyco [EMAIL PROTECTED] wrote: Three text input controls. Tab enabled, tab index 1,2,3. On the focus out of text control three I run a function to set focus back to text

[flexcoders] Re: Need help seaching and comparing in an ArrayCollection

2007-02-27 Thread e_baggg
That is exactly what you need to do. Create a for loop and get a handle on each object in the loop. Then, set up a method that returns a Boolean if it needs to be flagged. This method will check the dates. if true, then inside your For loop, flag the data object. Note: You can do the

  1   2   >