Re: [flexcoders] Removing an item from a sorted ArrayCollection?

2008-11-25 Thread Haykel BEN JEMIA
Where did you find that note? Can you perhaps post a sample code with the problem? I tried to reproduce the problem without success. I have this test app that is working perfectly: ?xml version=1.0 encoding=utf-8? mx:Application

Re: [flexcoders] Removing an item from a sorted ArrayCollection?

2008-11-25 Thread Ashish Verma
Hello All, I want to be Flex Certified. from where i can get the Demo Test Papers. Thanks Ashish On Fri, Nov 21, 2008 at 10:51 PM, bjorn [EMAIL PROTECTED] wrote: I experienced some problems with ArrayCollection's removeItemAt(). It seemed to work... randomly. Tucked away in the

Re: [flexcoders] Re: Removing an item from a sorted ArrayCollection?

2008-11-25 Thread Jules Suggate
Yeah, I second this suggestion. IViewCursor is your friend :) And I know I haven't added much to the discussion -- but I want to contribute, not just leech off everyone! You guys are too quick to reply! :) On Tue, Nov 25, 2008 at 16:15, gabriel montagné [EMAIL PROTECTED]wrote: On Mon, Nov

[flexcoders] Memory leaks in Flex SDK

2008-11-25 Thread Jules Suggate
Hi all, I know this is a multennial subject, but I just checked Adobe's JIRA and found three confirmed memory leaks in the Flex SDK :( They are: + Memory leak in SWFLoader: https://bugs.adobe.com/jira/browse/SDK-18076 + BindingUtils don't use weak event listeners, creating potential memory

Re: [flexcoders] Removing an item from a sorted ArrayCollection?

2008-11-25 Thread Jules Suggate
Bjorn, are you certified? Perhaps that's your problem ;^) On Tue, Nov 25, 2008 at 21:57, Ashish Verma [EMAIL PROTECTED] wrote: Hello All, I want to be Flex Certified. from where i can get the Demo Test Papers. Thanks Ashish On Fri, Nov 21, 2008 at 10:51 PM, bjorn [EMAIL PROTECTED] wrote:

Re: [flexcoders] ComboBox as itemRenderer/editor in Datagrid is not updating dataProvider...

2008-11-25 Thread Sefi Ninio
Isn't it enough to dispatch dataChanged event from the combobox property setter? Won't that cause the DP to refresh? Sefi On Mon, Nov 24, 2008 at 8:15 PM, Alex Harui [EMAIL PROTECTED] wrote: Depending on your data, you may need to call itemUpdated so renderers find out there's been a

Re: [flexcoders] Re: Newbie binding question

2008-11-25 Thread Michael Prescott
Oh sorry, I omitted the the getter from my example - but yes, I have getters. (The IDE warns you that [Bindable] doesn't do anything when you omit the getter.) I'm wondering if data binding requires the event to be a PropertyChangeEvent for data binding to work? Michael On Mon, Nov 24, 2008 at

Re: [flexcoders] Re: login system with flex and coldfusion

2008-11-25 Thread Tom Chiverton
On Monday 24 Nov 2008, cfx_david wrote: I ran through some of the documents in where they instructed to edit services-config file and all. But it only resulted in Destination Coldfusion not found. Please give your mxmlc command line. You've probably just got the path to the

Re: [flexcoders] The Online Flex Builder!

2008-11-25 Thread Johannes Nel
this mailing list has been running for years, no where near the beginning of the archives :) On Mon, Nov 24, 2008 at 10:45 PM, Jim Hayes [EMAIL PROTECTED] wrote: John Grden had one quite a while back, not seen any news on it for a while though. The name of it escapes me for now I'm afraid.

Re: [flexcoders] Embedding Flash Player

2008-11-25 Thread Tom Chiverton
On Tuesday 25 Nov 2008, Jules Suggate wrote: Yeah, we've accepted that already :) You might be able to write out a .iso file, then have the user double click it, or navigateToUrl() to it and let the O/S handle invoking the burner... -- Tom Chiverton Helping to evangelistically visualize data

Re: [flexcoders] Re: Newbie binding question

2008-11-25 Thread Haykel BEN JEMIA
The official documentation says to use the following syntax: [Bindable(event=eventname)] Jules' suggestion seems to be an alias for it (the Adobe team is also using this one): [Bindable(eventname)] Haykel Ben Jemia Allmas Web RIA Development http://www.allmas-tn.com On Tue, Nov 25, 2008

Re: [flexcoders] Removing an item from a sorted ArrayCollection?

2008-11-25 Thread bjorn
No, my problem is coming from a world with a robust LinkedList implementation. Good times. Anyhow, I'll look into the Demo Test Papers and see if they can help me with ListCollectionView .. thanks guys! :-) Bjørn 2008/11/25 Jules Suggate [EMAIL PROTECTED] Bjorn, are you certified? Perhaps

Re: [flexcoders] SWF Verification

2008-11-25 Thread EECOLOR
I don't think you can control how it sends the hash I do not want to control it. I want to know how it creates the hash and how the hash is sent so I can implement the same serverside logic as FMS. This way I could improve the security of my AMF3 enabled application. Greetz Erik On Mon, Nov 24,

Re: [flexcoders] Re: Newbie binding question

2008-11-25 Thread Jules Suggate
Have you tried just doing [Bindable(dataChanged)] instead of [Bindable(name=dataChanged)]? On Tue, Nov 25, 2008 at 17:32, Michael Prescott [EMAIL PROTECTED] wrote: Oh sorry, I omitted the the getter from my example - but yes, I have getters. (The IDE warns you that [Bindable] doesn't do

[flexcoders] Re: The Online Flex Builder!

2008-11-25 Thread Cato Paus
Found it at http://osflash.org/flexible :) --- In flexcoders@yahoogroups.com, Cato Paus [EMAIL PROTECTED] wrote: Hi all, I remeber taht someone did create a FlexBuilder in a flash-application, but I'cant remeber where, someone have the url ?

[flexcoders] Re: supertabnavigator component and reordering tabs

2008-11-25 Thread valdhor
Are you using the SuperTabNavigator example? If so, add the event listener to the nav element and try again (This is the top SuperTabNavigator). I did this and it worked fine. Otherwise, post some code and I can give it a looksee. --- In flexcoders@yahoogroups.com, Derrick Anderson [EMAIL

[flexcoders] Re: ItemRenderer's style is changed when scrolling DataGrid

2008-11-25 Thread valdhor
You may be better off overriding the set data function in your renderer. The following is an example I have used in the past to create a linkButton in a cell if the data is greater than zero or to gray it out if it is zero: package renderers { import mx.controls.*; import

[flexcoders] Sailorsea21 - Can I use a nested XML node as a dataprovider for my pie chart?

2008-11-25 Thread sailorsea21
Hi everyone, can I use a nested XML node as a dataprovider for my pie chart? I have the following XML file: ?xml version='1.0' encoding='UTF- 8' ? data result test001464 /test001 test002425 /test002 test00326 /test003 test00463 /test004 test0054573 /test005 subresult answerYes /answer

Re: [flexcoders] Re: supertabnavigator component and reordering tabs

2008-11-25 Thread Derrick Anderson
thanks, I did have the listener on the top level element- i just realized the problem was a binding error happening just before (that I could not see unless debugging) that was causing that listener to not get applied. working now, thanks d. On Tue, Nov 25, 2008 at 8:29 AM, valdhor [EMAIL

[flexcoders] fp10, fb 3, and profiling

2008-11-25 Thread Derrick Anderson
Hi, I recently upgraded to flash player 10 and I got the most recent FB updater- and now I notice that I cannot profile anymore. The console gives me a socket error. Does FP10 not work with profiler? thanks, d.

[flexcoders] Re: fp10, fb 3, and profiling

2008-11-25 Thread Derrick Anderson
The error I get is Profiling can only be performed on the debug version of an application. I have flashplayer 10r12_36 debug version installed. thanks, d. On Tue, Nov 25, 2008 at 9:25 AM, Derrick Anderson [EMAIL PROTECTED] wrote: Hi, I recently upgraded to flash player 10 and I got the most

[flexcoders] Re: ComboBox as itemRenderer/editor in Datagrid is not updating dataProvider...

2008-11-25 Thread biosmonkey
My understanding of this function is that it is to cause an update in the rendering of the control attached to the data, which implies that the dataProvider has the correct data - the control is just not showing it. I have the reverse problem. In my case, the renderers (the combo boxes) are

[flexcoders] Re: How can I create a path animation in Flex?

2008-11-25 Thread tim.geiges
Take a look at, it might have your answer(I hope) :-) http://keith-hair.net/blog/2008/05/30/interpolation-of-a-point-on-quadratic-curve/#more-4 --- In flexcoders@yahoogroups.com, gilbert_mizrahi [EMAIL PROTECTED] wrote: I would like to be able to draw a path and then have an object travel

[flexcoders] Crash of safari, firefox using XML.setChildren for XML in a XMLListCollection

2008-11-25 Thread shauncutts
The following code will crash Flash 9.0 r124 (debug version) when built with flex builder 3.0: (flash running on either Firefox or Safari, MacOS) ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=dotest();

[flexcoders] Re: help here with an item renderer

2008-11-25 Thread tim.geiges
If I understand what you are asking then in the buttons within the repeater you just add the click= to point to your function, like mx:Repeater id=myrepeater mx:Button click=navigateToURL(myrepeater.currentItem.url)/ /mx:Repeater and my XML would look more like button id=button1

Re: [flexcoders] Re: How can I create a path animation in Flex?

2008-11-25 Thread Sefi Ninio
You can use a tween library ( there are many out there - tweener, tweenlite etc.). you can give it a source and origin x,y Points and duration, easing function etc and it will handle the animation. it the route is not a straight line, you can break the animation into sections, listen for the end

Re: [flexcoders] The Online Flex Builder!

2008-11-25 Thread ivo
This is probably what you are looking for http://flexible.riaforge.org/ but I have not been able to get it to work properly with Flex 3. From: Johannes Nel [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 25, 2008 2:23:16 AM Subject:

[flexcoders] Deleting a node from XML

2008-11-25 Thread sheetal_nn2000
Hi, I am having an xml which is binded to a Advanced datagrid.I want to delete a selected row from the grid.For that i want to remove that node form xml.How do i do that.

[flexcoders] Subobjects null within Assembler when updating to LCDS 2.6

2008-11-25 Thread taze170171
Hello! We have justed updated our application from LCDS 2.5.1 to LCDS 2.6. If we now update an object, referenced subobjects which are sent from the AIR Client to the server, are null when the objects arrive at the Assembler. When createItem is called the subobjects are sent to the assembler.

[flexcoders] Re: Module loaded but not displayed every time...

2008-11-25 Thread Claudiu Ursica
Hi again, I see nobody bumped into this issue... Since the previous post I have discovered that the module does not show up because the cration complete event does not fire all the time. I was able to log the preinitialize event and the init event but when the module doesn't show it is because

[flexcoders] Re: The Online Flex Builder!

2008-11-25 Thread Cato Paus
yes I found it and got it working in Flex 3 :) --- In flexcoders@yahoogroups.com, ivo [EMAIL PROTECTED] wrote: This is probably what you are looking for http://flexible.riaforge.org/ but I have not been able to get it to work properly with Flex 3. From:

[flexcoders] How to set reference to parent?

2008-11-25 Thread markflex2007
Hi, I added a component to a container like this: container1.addChild(component1); now I want to change the property of container in the component.how to set the reference of the parent container,I do not remember that. Please help me. I try parent.x = 1 but it doesn't work.Thanks Mark

[flexcoders] Problem opening Flex project

2008-11-25 Thread markgoldin_2000
Opening Flex Builder all of a sudden I was presented with a new configuration like I have never done any development yet with this installation. I am trying to import my project. I am selecting a project folder, and it takes it fine, but selecting same folder for project location does not even

[flexcoders] Re: How to set reference to parent?

2008-11-25 Thread florian.salihovic
It would be component.parent, not just parent unless you are working in the child's scope. A better way would be to register an eventlistener (don't forget to remove it if it's not necessary anymore) for the child in the parent's scope. Why? To me it's the same problem you might run into

Re: [flexcoders] How to set reference to parent?

2008-11-25 Thread Derrick Anderson
i think it's parentDocument, any time i've ever had to use it I've opted to use events however. d. On Tue, Nov 25, 2008 at 10:35 AM, markflex2007 [EMAIL PROTECTED]wrote: Hi, I added a component to a container like this: container1.addChild(component1); now I want to change the property

[flexcoders] LCDS hostinG

2008-11-25 Thread Johannes Nel
HI Can you guys recommend a LCDS hosting company. Thanks Johan -- j:pn \\no comment

[flexcoders] richtexteditor focusOut event

2008-11-25 Thread Derrick Anderson
Hi, so I noticed that the RTE does not have a focusOut event that it dispatches. I want to dispatch an event whenever somebody blurs the RTE the same way I can with the focusOut event on regular text fields. Is this possible? I have tried the 'change' event and 'valueCommit', but both of these

[flexcoders] Re: Can I use a nested XML element as a dataprovider for my pie chart?

2008-11-25 Thread Amy
--- In flexcoders@yahoogroups.com, sailorsea21 [EMAIL PROTECTED] wrote: Hi everyone, can I use a nested XML element as a dataprovider for my pie chart? This isn't a pie chart, but it might point you in the right direction: http://flexdiary.blogspot.com/2008/08/charting-example.html HTH;

[flexcoders] Bug: Combobox maxWidth does not work with percent width

2008-11-25 Thread fotis.chatzinikos
Hi, When the following comboBox is used with width=100% and maxWidth 190 the maxwidth is not used when the underlying list contains names wider than 190 pixels...Instead the full name is shown and the combo becomes 230 or any other amount of pixels needed... This is only fixed if the width is

[flexcoders] Re: How can I create a path animation in Flex?

2008-11-25 Thread gilbert_mizrahi
Tim, That could help. I have to see how I can extend that functionality for more complex paths, but this seems to be a good start. Sefi, I am familiar with some of the tween engines. However, I believe the create tweens from point x1,y1 to x2,y2. Hence, I need to break the path in multiple line

RE: [flexcoders] Deleting a node from XML

2008-11-25 Thread Tracy Spratt
delete [e4x expression that returns the node you want to delete] Note you cannot use a variable. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sheetal_nn2000 Sent: Tuesday, November 25, 2008 4:58 AM To:

[flexcoders] Re: help here with an item renderer

2008-11-25 Thread valdhor
I don't know if I really understand what you are trying to do so correct me if I am wrong... My understanding: You have XML that you are using as a dataProvider for a repeater; You want buttons to be created for each item in the dataProvider; Each button (When Clicked) should navigate to a URL

[flexcoders] Re: Architecture question using Move Effect and Events

2008-11-25 Thread steve.klee
I believe you need to set the mouseChildren property on your custom component to false, that way the label inside your component will not deal with the mouse event and let it bubble up to your event listener you set on your component. HTH.

[flexcoders] Re: Module loaded but not displayed every time...

2008-11-25 Thread valdhor
Are you contacting a server by any chance? Perhaps you could post some code? --- In flexcoders@yahoogroups.com, Claudiu Ursica [EMAIL PROTECTED] wrote: Hi again, I see nobody bumped into this issue... Since the previous post I have discovered that the module does not show up because the

[flexcoders] Re: Crash of safari, firefox using XML.setChildren for XML in a XMLListCollection

2008-11-25 Thread valdhor
File a bug. I can see why it is failing but it should not crash the browser. --- In flexcoders@yahoogroups.com, shauncutts [EMAIL PROTECTED] wrote: The following code will crash Flash 9.0 r124 (debug version) when built with flex builder 3.0: (flash running on either Firefox or Safari,

[flexcoders] Re: Bug: Combobox maxWidth does not work with percent width

2008-11-25 Thread valdhor
According to the documentation: == maxWidth property maxWidth:Number [read-write] Number that specifies the maximum width of the component, in pixels, in the component's coordinates. This value is used by the container in

[flexcoders] TileList

2008-11-25 Thread Eduardo Souza
Hello everyone, I've two TileLists control in my Panel. I want to detect when the user have taked one and put it in the other. I want to detect when that item leaved my TileList too. And I want to disable the user to take the item and drag it to the same tilelist, what I need to do? Thanks

[flexcoders] Re: dragging an object with a mask

2008-11-25 Thread Jayson
I ended up using a timer to add and remove the mask every 10 milliseconds while the object is being dragged. works great! Thanks for the help. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Show us what you did. We dragged masked stuff successfully. You addChild the

Re: [flexcoders] Re: Bug: Combobox maxWidth does not work with percent width

2008-11-25 Thread Fotis Chatzinikos
Hmmm :-) Should read the docs, next time, but still... maxWidth should be maxWidth irrelevant of parent containers or any other #$%^... Either way, thanks for the info, I am just starting to get really tired with flex... F On Tue, Nov 25, 2008 at 6:57 PM, valdhor [EMAIL PROTECTED] wrote:

[flexcoders] Re: Architecture question using Move Effect and Events

2008-11-25 Thread Amy
--- In flexcoders@yahoogroups.com, devenhariyani [EMAIL PROTECTED] wrote: To clarify the question: My custom mxml component is called: MyCustomMXMLComponent.mxml it has a Label and a Text Area inside of it. When a user does a mouse rollover on the Label I want the MyCustomMXMLComponent to

[flexcoders] Re: UID, how is it used ?

2008-11-25 Thread erdal
Thanks for the clarification but I have a feeling that I would not be the last person make similar assumtions after reading sections like this from the Developer's guide. -- Excerpt from the section 'Data providers and the uid property' If Flex must consider two or more different objects

[flexcoders] Re: ItemRenderer's style is changed when scrolling DataGrid

2008-11-25 Thread Amy
--- In flexcoders@yahoogroups.com, Fu Di [EMAIL PROTECTED] wrote: hi everyone, i wrote a renderer which extends DataGridItemRenderer in DataGrid some code below: override public function getTextStyles():TextFormat { if (!listData||this.text==)

[flexcoders] Problem resizing application

2008-11-25 Thread Vitor Cunha
Hello all, I have an Application that resizes according to the browser size / screen resolution in order to make use of all the avaliable space. The problem is that when I resize the browser screen (f.i. raise it's height), I can't click the buttons and other components anymore (but they're

[flexcoders] getting the number of children in a grouping collection via the groupingFunction

2008-11-25 Thread djbrown_rotonews
i'm wanting to change the label of my groups in the AdvancedDataGrid, and I see where that's exposed via the groupingFunction. What i'm wanting to do is to modify it in such a way that it returns the groupingField name itself, plus the number of children in that group. As an example, if I had

Re: [flexcoders] Re: Module loaded but not displayed every time...

2008-11-25 Thread claudiu ursica
I am, but via bindings (set via BindUtils.bind setter in the complete handler), but I have put a message before those bindings and it is not like the bindings are not init, the event doesn't get dispatched. The setters are the one who dispatch cairngorm events and in the command (actually

[flexcoders] API to controling cctv IP Camera

2008-11-25 Thread farid wl
Hi guys   I wanna write an air application to manage Ip camera in cctv field . the services are such as coonecting to Ip cameras, preview and  record video on local drives and ptz function.,,,   anybody knows API  to used for it .   pls help me .   I'll appreciate   Best Regards farid valipour

Re: [flexcoders] API to controling cctv IP Camera

2008-11-25 Thread Fotis Chatzinikos
Hi, this is slightly irrelevant to this group,.. search google about Adobe Media Services or Red5 for a free alternative (have not used it -yet- myself but its there and it seems stable enough from the various demos that lie around... On Tue, Nov 25, 2008 at 8:43 PM, farid wl [EMAIL PROTECTED]

[flexcoders] Re: Newbie binding question

2008-11-25 Thread Amy
--- In flexcoders@yahoogroups.com, Jules Suggate [EMAIL PROTECTED] wrote: Have you tried just doing [Bindable(dataChanged)] instead of [Bindable(name=dataChanged)]? Yes, that would probably help, since it should be [Bindable (event=dataChanged)]. Good catch.

[flexcoders] States and Flash components

2008-11-25 Thread Amy
Hi, all; I am using a Flash component that's been wrapped using the Flash Component Kit for use in Flex. I'd like to be able to use States to add things into the container with it, but I get the error 1067: Implicit coercion of a value of type com.rw.adBlankenship.views:PagingFlexWall to an

[flexcoders] Re: richtexteditor focusOut event

2008-11-25 Thread nathanpdaniel
Add your FocuseEvent.FOCUS_OUT event to the textArea property (more like - child) of your RichTextEditor. Given a RichTextEditor id of rte it'd look like this in AS3: rte.textArea.addEventListener(FocusEvent.FOCUS_OUT, onFocusOut); function onFocusOut(event:FocusEvent):void { // add code

[flexcoders] simple way to draw a 3D ball?

2008-11-25 Thread markflex2007
Hi. I am look for a simple way to have a 3D ball with Text on it. Please give me a idea. Thanks Mark

Re: [flexcoders] Re: How can I create a path animation in Flex?

2008-11-25 Thread Johannes Nel
i fair while ago i created an animation in flash, exported it to xml (its a command in flash) import the correct action script classes and used it in flex. i cannot recall if i had t make changes. http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/motionXSD.html i am certain other people

Re: [flexcoders] States and Flash components

2008-11-25 Thread Jamie S
Your PagingFlexWall class must inherit from mx.flash.UIMovieClip or mx.flash.ContainerMovieClip in order to take advantage of states in Flex. Jamie On Tue, Nov 25, 2008 at 11:20 AM, Amy [EMAIL PROTECTED] wrote: Hi, all; I am using a Flash component that's been wrapped using the Flash

RE: [flexcoders] TileList

2008-11-25 Thread Tracy Spratt
Override the dragEnter, dragDrop and perhaps dragOver event handlers. See the docs for details and examples. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eduardo Souza Sent: Tuesday, November 25, 2008 12:12 PM To:

Re: [flexcoders] Re: checkbox usage in flex

2008-11-25 Thread navaneethakrishnan balraj
Ok.I think I found the solution. I removed the method= post from the Httpservice and it did the trick. But I did try the evaluation version. Thanks for all the input.   -NB --- On Mon, 11/24/08, valdhor [EMAIL PROTECTED] wrote: From: valdhor [EMAIL PROTECTED] Subject: [flexcoders] Re: checkbox

Re: [flexcoders] [CUSTOM COLLECTION SERIALIZATION - BLAZEDS]

2008-11-25 Thread Joao Kreuzberg
Hi Seth, Thanks for the quick reply Seems like the problem was a bug with BlazeDS. Like I mentioned, the custom objects inside of the collection (Country for example) are working fine just the custom collection type I created that was not. The did some digging in BlazeDS code and I verified

RE: [flexcoders] Re: help here with an item renderer

2008-11-25 Thread Tracy Spratt
...create a custom component to encapsulate... Yes, yes, yes. Though it is not clear what Gustavo wants, Steve is correct, this is the way to do Repeater. Gustavo, The word/phrase itemRenderer has special meaning. itemRenderers are used with List-based components, and are tightly integrated

[flexcoders] Flexbuilder is getting on my last nerve

2008-11-25 Thread wkolcz
I like to start my AS files by adding all the import statement of all the items I know I am going to need. However, if I forget one and FB is nice enough to add it form me, it tends to delete a couple of mine (seemingly randomly, except for Alert...It hates

RE: [flexcoders] Re: ComboBox as itemRenderer/editor in Datagrid is not updating dataProvider...

2008-11-25 Thread Tracy Spratt
...directly manipulate the grid's dataProvider... This is my preferred approach, over depending on the list components own editing process. An itemRenderer gets a reference to the entire dataProvider item that spawned it. The framework passses it in via the set data function. You can use

[flexcoders] Checkbox in datagrid

2008-11-25 Thread sbnkn
Hi ALL, This group is being really helpful. I have asked a question earlier and people responded with answers on the same day. I appreciate and thank you all. Now back to the another question. I have a form to enter and a datagrid to display the records. Form has: text, textarea and multiple

[flexcoders] Re: How can I create a path animation in Flex?

2008-11-25 Thread gilbert_mizrahi
Johannes, I didn't think in the possibility to script the movement this way. Even though I want to have in AS3, so I can create paths and animations at run time, this could be a potential solution, once I understand how to create the motion XML dynamically. Thanks. I will look more into this

RE: [flexcoders] Re: help here with an item renderer

2008-11-25 Thread Tracy Spratt
You cannot do this: click=navigateToURL(myrepeater.currentItem.url) You will get an error. currentItem only exists when the repeater is executing, not when the click action happens. For simple cases, you can use getRepeaterItem() in the handler. For even slightly more complex repeated

RE: [flexcoders] Re: copying large amount of data using System.setClipboard() in Flash 10.

2008-11-25 Thread Tracy Spratt
setClipboard must be user invoked, with a button or link or something. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ilam Mougy Sent: Monday, November 24, 2008 11:35 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

RE: [flexcoders] Re: XML attributes

2008-11-25 Thread Tracy Spratt
Try this: var myName:String = node.attribute(Name); Or make sure *every* node has the Name attribute, including the root node. The loop works because it skips the root. I just always use attribute() if I am reading, and @ only if I am setting. Tracy

RE: [flexcoders] When is a crossdomain.xml file required?

2008-11-25 Thread Tracy Spratt
I am still in the sameDomain, bold words. Post the url to the Flex app and to the HTTPService you are calling, and let's see. allowScriptAccess should only affect scripting (ExternalInterface) Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] Flexbuilder is getting on my last nerve

2008-11-25 Thread Michael Prescott
I haven't come across this, but I heartily recommend upgrading to 3.0.2 if you haven't already. On Tue, Nov 25, 2008 at 3:21 PM, wkolcz [EMAIL PROTECTED] wrote: I like to start my AS files by adding all the import statement of all the items I know I am going to need. However, if I forget

RE: [flexcoders] Re: ComboBox as itemRenderer/editor in Datagrid is not updating dataProvider...

2008-11-25 Thread Tracy Spratt
And to your original question, that seems like the hard way to do it. Why not just loop over the dataProvider and set each item's selectedIndex property? Use the dataProvider API, or call itemUpdated(), or re-assign the dataProvider to get the changes to show up in the DG. Tracy

RE: [flexcoders] Checkbox in datagrid

2008-11-25 Thread Tracy Spratt
Are the CheckBoxes in the Form or in the DataGrid, or both? What is the dataProvider for the DataGrid? How are you linking the Form to the DataGrid? How are the CheckBox states being stored in your dataProvider item? Tracy From:

[flexcoders] Embedding mp3 sounds in css files

2008-11-25 Thread Wildbore, Brendon
Hi All, I need some advice on how to do this. I want to embed an mp3 file in a css file and then play it back in my application. Unfortunately I cannot find any advice on how to do this on the web. Any ideas??? Thanks in advance. Brendon

RE: [flexcoders] BlazeDS - Best practice for determining if server session is invalid.

2008-11-25 Thread Seth Hodgson
Hi, In your services-config.xml file, within the properties for the channel/endpoint you app is using to issue remoting calls to the server, try turning on the following config option: !-- Optional. Default is false. Setting this flag to true will cause clients

[flexcoders] Re: States and Flash components

2008-11-25 Thread Amy
--- In flexcoders@yahoogroups.com, Jamie S [EMAIL PROTECTED] wrote: Your PagingFlexWall class must inherit from mx.flash.UIMovieClip or mx.flash.ContainerMovieClip in order to take advantage of states in Flex. It does, obviously, since it was made with the Flex component kit. Any idea why

[flexcoders] How to send data as XML (data is loaded through HTTP in List Box)

2008-11-25 Thread anuj181
Hi All I use HTTP service to load data in List Box. I pasted code below, Now I need to allow drag and drop operation which I am successfully able to do that. However once items are dropped in second list , I need to wrap up the data as XML and send it to server , I guess i will use 'POST' method

RE: [flexcoders] How to send data as XML (data is loaded through HTTP in List Box)

2008-11-25 Thread Tracy Spratt
...it is dropping just the label I doubt that that is correct. Why do you think it is so? What is the dataProvider type for both lists? The built-in d/d functionality expects the same types in source and target and copies or moves entire items. The second list is expecting the same type of

RE: [flexcoders] [CUSTOM COLLECTION SERIALIZATION - BLAZEDS]

2008-11-25 Thread Seth Hodgson
Hi João, You can download the BlazeDS 3.2 release (milestone build) here: http://opensource.adobe.com/wiki/display/blazeds/download+blazeds+3 That should contain the fix you mention. Best, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joao Kreuzberg Sent:

Re: [flexcoders] How to send data as XML (data is loaded through HTTP in List Box)

2008-11-25 Thread anuj sharma
Hi Tracy I agree, I just fixed this problem 5 minutes ago. Actually problem was I stores everything in XML List but I was passing an array containing label as the data Provider which was just for the visual perspective, so for sending data I need to grab the XML List's nodes associated with the

RE: [flexcoders] How to send data as XML (data is loaded through HTTP in List Box)

2008-11-25 Thread Tracy Spratt
...I put the post on the list , and within little time i just figured out... No problem, that happens to all of us! Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of anuj sharma Sent: Tuesday, November 25, 2008 5:41 PM To:

Re: [flexcoders] Re: UID, how is it used ?

2008-11-25 Thread Josh McDonald
It could be clearer (especially the last sentence), but it seems to me that it's telling you what to do, rather than what the SDK will do. But I assume the Cursor class (which I don't use often, so take this with a grain of salt) would respect the IUID interface and not require you to specify the

Re: [flexcoders] Re: copying large amount of data using System.setClipboard() in Flash 10.

2008-11-25 Thread Josh McDonald
That's what he's complaining about :) I'd just do what you do before, only when you're done with the progress bar, replace it with text that says Done! and a button that says Copy result to clipboard. -Josh On Wed, Nov 26, 2008 at 6:52 AM, Tracy Spratt [EMAIL PROTECTED] wrote: setClipboard

Re: [flexcoders] Re: How can I create a path animation in Flex?

2008-11-25 Thread Josh McDonald
Gilbert, If you do end up doing it with curves like in the top-most link, the maintainers of your favourite tween engine would probably love to see it as a patch ;-) -Josh On Wed, Nov 26, 2008 at 6:31 AM, gilbert_mizrahi [EMAIL PROTECTED] wrote: Johannes, I didn't think in the possibility

Re: [flexcoders] Re: fp10, fb 3, and profiling

2008-11-25 Thread Jamie S
I have seen this message too after upgrading to Flash 10. Usually trying to launch the application a couple of times or switching to another browser to profile in fixes it. Jamie On Tue, Nov 25, 2008 at 6:29 AM, Derrick Anderson [EMAIL PROTECTED] wrote: The error I get is Profiling can only be

[flexcoders] Re: simple way to draw a 3D ball?

2008-11-25 Thread oneworld95
This might be possible with the Degrafa package for Flex. You can do this in Flash but haven't done this myself. Check out at Degrafa at http://www.degrafa.com/ -Alex --- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: Hi. I am look for a simple way to have a 3D ball

[flexcoders] Re: simple way to draw a 3D ball?

2008-11-25 Thread oneworld95
Also check out: http://gisflex3d.blogspot.com/2007/03/flex-and-3d-is-it-possible.html It has a ton of info and some links to solutions. -Alex --- In flexcoders@yahoogroups.com, oneworld95 [EMAIL PROTECTED] wrote: This might be possible with the Degrafa package for Flex. You can do this in

[flexcoders] Best browser for debugging on Mac OSX?

2008-11-25 Thread Guy Morton
Anyone got a recommendation? I've been using Firefox, but it seems to bloat memory-wise the longer it runs - often consuming 500Mb after a while. As FB3 also is a memory hog, this makes it hard to run on a 2Gb machine. All I really need it a lightweight browser that can load the Flash

Re: [flexcoders] BlazeDS - Best practice for determining if server session is invalid.

2008-11-25 Thread Fotis Chatzinikos
Hi Seth, the following line looks quite promising: It should handle this case seamlessly, removing the need to re-prompt the user with a login dialog. Can you elaborate a bit? How is that possible? In my case I use spring-acegi to login, prior to the flash component, but if there is another

Re: [flexcoders] Embedding mp3 sounds in css files

2008-11-25 Thread Fotis Chatzinikos
Are you sure that you want to embed an mp3 (binary) file inside a css (text) file? Maybe you need to rephrase a bit? What do you want to do? On Tue, Nov 25, 2008 at 11:11 PM, Wildbore, Brendon [EMAIL PROTECTED] wrote: Hi All, I need some advice on how to do this. I want to embed

Re: [flexcoders] Best browser for debugging on Mac OSX?

2008-11-25 Thread Bjorn Schultheiss
Camino is supposed to be pretty fast. Its a little bit more difficult to set up your proxies but it is possible. I was using Camino but I currently use Firefox. On Wed, Nov 26, 2008 at 10:45 AM, Guy Morton [EMAIL PROTECTED] wrote: Anyone got a recommendation? I've been using Firefox, but

Re: [flexcoders] Best browser for debugging on Mac OSX?

2008-11-25 Thread Nate Beck
For debugging, Camino is great. On Tue, Nov 25, 2008 at 4:11 PM, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Camino is supposed to be pretty fast. Its a little bit more difficult to set up your proxies but it is possible. I was using Camino but I currently use Firefox. On Wed, Nov 26,

RE: [flexcoders] BlazeDS - Best practice for determining if server session is invalid.

2008-11-25 Thread Seth Hodgson
Hi Fotis, The client library caches credentials in order to support seamless fallback through channels in your ChannelSet that preserves your desired authenticated identity both at connect time, as well as for automatic failover across peer servers in a cluster at any point after you've

[flexcoders] WindowedApplication titleIcon does not display

2008-11-25 Thread solarpower999
Hello. Has anyone tried to set an icon using the titleIcon property for a WindowedApplication component? I tried it and it doesn't seem to work. The path is correct. I have also set icons in many other components, so I know what I am doing. Part of the relevant code is below. Any ideas?

RE: [flexcoders] Best browser for debugging on Mac OSX?

2008-11-25 Thread Tim Rowe
Biggest downside I think we found to Camino was the lack of Firefox plugins. Especially when you're relying on things like FoxyProxy, it does create a bit of an issue using Camino full-time. If you're not worried about though, and/or all you want to do is just test your code, it might not hurt

  1   2   >