[flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-26 Thread mydarkspoon
If you're running a firewall softwarre, it might block port 3434, which the flex builder uses for debugging. --- In flexcoders@yahoogroups.com, Sheriff [EMAIL PROTECTED] wrote: reverted back to Flex 3 Beta 2 and installed the older flash player and everything works again so i am guessing it

[flexcoders] function binding toString

2007-12-26 Thread yigit
hi all; i have a custom class which has a toString method; so i can directly use it as a source to textInput's text field. i want to make binding work, i mean when the result of the toString changes, i want the view to update itself automatically. nameID field of roleRef is an instance of my

Re: [flexcoders] Re: Mock objects in AS3

2007-12-26 Thread Christophe Herreman
Hi Adam, I have also been looking into runtime interface implementation to create Mock objects and a basic AOP framework. I'm stuck at the exact same thing as you are and the others that are working on this. My guess is that we will need to have some kind of bytecode manipulation framework to

[flexcoders] Re: Sorting nested collections in Value Objects? (DataServices or RemoteObject f

2007-12-26 Thread simonjpalmer
Not sure I have understood all the subtleties of being managed objects, but as a personal preference, I would avoid the server all together - but that's just me. If you really have to use the server then I would make the sorting a property of the persistence tier (i.e. the database select

[flexcoders] Show and Hide using delay

2007-12-26 Thread Tom Preet
Hi All, In my am using two buttons when I clicked on button one it will display the some text on another, it will display only for 3 seconds. same will repeat when I clicked on another button. but this was happening for only one time again I need to refresh the page. I need to display the label

Re: [flexcoders] function binding toString

2007-12-26 Thread Frederico Garcia
yigit escreveu: hi all; i have a custom class which has a toString method; so i can directly use it as a source to textInput's text field. i want to make binding work, i mean when the result of the toString changes, i want the view to update itself automatically. nameID field of roleRef is

Re: [flexcoders] Timer running fast in Firefox than in IE with same time interval?

2007-12-26 Thread Frederico Garcia
arpan srivastava escreveu: Hi All, I have a list with many items which moves automatically by using a timer. Timer is set to 10 ms i.e. after every 10 ms second it fires an event which moves the items in the list by some distance. In IE it runs fine but in Firefox it runs very fast, i

[flexcoders] How to check if a file exist in the server?

2007-12-26 Thread Anzer
How to check if a file exist or not in the server? Currently am doing it with HTTPService, but I need to know if there is any better mechanism since I want to check files with big sizes and I think HTTPService will load the actual file into memory (not sure if that's correct, let me know if

Re: [flexcoders] How to check if a file exist in the server?

2007-12-26 Thread Paul Andrews
- Original Message - From: Anzer To: flexcoders@yahoogroups.com Sent: Wednesday, December 26, 2007 12:13 PM Subject: [flexcoders] How to check if a file exist in the server? How to check if a file exist or not in the server? Currently am doing it with HTTPService,

Re: [flexcoders] function binding toString

2007-12-26 Thread Jhonny Everson
I guess that your solution has a problem, the circular reference to toString. it could be something like: [Bindable] public var stringValue:String = ; public function toString():String { ... ( some processing that results in a string var 'string1') stringValue= string1; return stringValue; }

[flexcoders] Re: URLRequest passing Authorization

2007-12-26 Thread Matt
I'm certain others have had to deal with this...is there no way to tell the URLRequest to ignore authentication?

[flexcoders] Re: Different DataTips for multiple series in one chart.

2007-12-26 Thread jer_ela
dataTipFunction is a property of the chart, not the series, so you will have to have a single function that looks at the hitData to determine which series the mouse is over. The hitData.element property will give you access to the properties of the series that the mouse is over. If you give the

Re: [flexcoders] Re: Mock objects in AS3

2007-12-26 Thread Jens Halm
I have also been looking into runtime interface implementation to create Mock objects and a basic AOP framework. I'm stuck at the exact same thing as you are and the others that are working on this. My guess is that we will need to have some kind of bytecode manipulation framework to

[flexcoders] Re: Best Way To Implement tabnavigator switching

2007-12-26 Thread jer_ela
There is no correct way of doing this. However it would make for better encapsulation if you instead called the getData method in each component's show method. That way the tabnavigator would need to know less about its children. --- In flexcoders@yahoogroups.com, iilsley [EMAIL PROTECTED]

Re: [flexcoders] function binding toString

2007-12-26 Thread Frederico Garcia
Jhonny Everson escreveu: I guess that your solution has a problem, the circular reference to toString. it could be something like: [Bindable] public var stringValue:String = ; public function toString():String { ... ( some processing that results in a string var 'string1')

Re: [flexcoders] Re: Application Structure

2007-12-26 Thread Max Frigge
Yeah I would ask them if there where any. I haven't published anything yet. It's gonna be a student research, which I have to do. I hope I will figure out some interesting opinions and trends to create a nice mail client with that results in mind. I will let you know as soon as there is

Re: [flexcoders] Re: Sorting nested collections in Value Objects? (DataServices or RemoteObject f

2007-12-26 Thread Kevin
Thank you for your thoughts about this. Through trial and error and a little bit of frustration I am coming to the conclusion that sorting the data in the specific view is perhaps the only way to do it with Managed data. Sorting on the server seems like a waste unless the data never

[flexcoders] Catch itemEditEnd event

2007-12-26 Thread markgoldin_2000
I am trying to catch itemEditEnd event by adding this code to my DataGrid definition: addEventListener(itemEditEnd, getCellInfo); I am modifying data in the cell but dont have getCellInfo fired. What am I doing wrong? Thanks

RE: [flexcoders] DataGrid - Append an empty row

2007-12-26 Thread Tracy Spratt
Add an item to the dataProvider. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, December 25, 2007 11:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid - Append an empty row

[flexcoders] Re: Solutions for provide a secure access to a Web-Service using Flex

2007-12-26 Thread João
Frederico, we might end up with something like: 1- The client calls an Hello Web Service, and the server returns a random string starting a session with a state not authenticated 2- The client encodes the string using SHA1, and a shared secret key hardcoded on the client, and returns the result

[flexcoders] NO Selction change when i click on the list rendererer button item

2007-12-26 Thread srikanth_reddy_007
I have a combo box item renderer and inside the renderer i have a button which represents modify the item which pops up a window to edit the item. when i click on the button inside the list renderer item, the item gets selected as well which is the default behaviour of flex. can some one tell

Re: [flexcoders] Re: Solutions for provide a secure access to a Web-Service using Flex

2007-12-26 Thread Frederico Garcia
João escreveu: Frederico, we might end up with something like: 1- The client calls an Hello Web Service, and the server returns a random string starting a session with a state not authenticated 2- The client encodes the string using SHA1, and a shared secret key hardcoded on the client,

[flexcoders] Remove Sort

2007-12-26 Thread markgoldin_2000
I am using Sort to be able to run Find...() commands on cursors. But at the end I dont want to have it shown sorted, so how can I get rid of sorting after I have found an item in it?

[flexcoders] Converting the Loader info to Class

2007-12-26 Thread srikanth_reddy_007
I have a Dictionary of Image objects which is implemented as below public class IconMap { [Bindable] public var images:Dictionary = new Dictionary (); [Embed(source=/resources/app_extx_32.svg)] public

Re: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-26 Thread Sheriff
It only works for Flex 3 Beta 2, Flex 3 Beta 3 does not work with the flash 9.0115 build. Flex 3 Beta 2 actually connects and works, but Beta 3 does not - Original Message From: mydarkspoon [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 26, 2007 2:16:50 AM

Re: [flexcoders] Re: [Fixed] Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-26 Thread Sheriff
It turns out the ESET NOD 32 Antivirus had something blocked, I am guessing the port. - Original Message From: Sheriff [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 26, 2007 11:53:15 AM Subject: Re: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

Re: [flexcoders] Remove Sort

2007-12-26 Thread Kevin
You would need to do one of two things depending on what functionality you want. If you have a previous sort that you want to reinstate, then you need to: var savedSort:Sort = someListCollection.sort; someListCollection.sort = new Sort(); //implement all your sort and find logic... //when

[flexcoders] Reusability question

2007-12-26 Thread markgoldin_2000
I am designing a custom ListGrid. Most of functionality will be in the base class. But some will deppend on a specific instatiation. For example, when new row is added to the ListGrid I need to run additional code for each object being instatiated from the base class. And that code is unique

[flexcoders] Re: Sorting nested collections in Value Objects? (DataServices or RemoteObject f

2007-12-26 Thread simonjpalmer
As ever there's a thousand different ways of doing anything and no real right or wrong, so there's nothing intrinsically wrong with your approach. If you dislike having singleton wrapper classes for your sorts, then you could just have a map/collection of singleton sort objects on your

[flexcoders] ItemRenderer in TileList not redrawing?

2007-12-26 Thread Matt Maher
Setup: I have a tilelist with a customer item renderer and an array collection dataprovider. The array collection has 100 items. The list can show 10 renerers on the screen. Problem: When I change (filter) the underlying array collection to 5 items the list redraws correctly in that there are

Re: [flexcoders] Re: Sorting nested collections in Value Objects? (DataServices or RemoteObject f

2007-12-26 Thread Kevin
mx:ListCollectionView id=lcv_People list={MyParty.people} sort={myViewSpecificNameSort}/ mx:TileList dataProvider={lcv_People} / Ah!!! mxml, of course! It's so funny how I had been thinking in terms of doing everything in actionscript, that I missed this most obvious solution. Not to

Re: [flexcoders] How to restrict TileList to display items only in single row?

2007-12-26 Thread Kevin
Do you need to use a TileList for this? Would an HBox with a repeater would work for you? I guess it all depends if you need the functionality of ListBase. - Kevin On Dec 26, 2007, at 2:28 PM, ad9798 wrote: A horizontal direction TileList creates a new row when there are more items to

[flexcoders] How to restrict TileList to display items only in single row?

2007-12-26 Thread ad9798
A horizontal direction TileList creates a new row when there are more items to display after the single row has been filled, but I'm trying to restrict that behavior and put every items in the single row with the horizonal scrollbar?

[flexcoders] Re: How to restrict TileList to display items only in single row?

2007-12-26 Thread sher_ali2004
You can set the rowCount property to 1 as: rowCount=1 Sher Ali Flex and Flash Developer [EMAIL PROTECTED] +92 321 51 89 391

Re: [flexcoders] ItemRenderer in TileList not redrawing?

2007-12-26 Thread Frederico Garcia
Matt Maher escreveu: Setup: I have a tilelist with a customer item renderer and an array collection dataprovider. The array collection has 100 items. The list can show 10 renerers on the screen. Problem: When I change (filter) the underlying array collection to 5 items the list redraws

Re: [flexcoders] Reusability question

2007-12-26 Thread Frederico Garcia
markgoldin_2000 escreveu: I am designing a custom ListGrid. Most of functionality will be in the base class. But some will deppend on a specific instatiation. For example, when new row is added to the ListGrid I need to run additional code for each object being instatiated from the base

Re: [flexcoders] Reusability question

2007-12-26 Thread mark goldin
Yes, I can create a generic method for my Grid: public function doSomethingAfterRowIsAdded():void { } But I can't have any code there because it is specific to an object instatiation. Frederico Garcia [EMAIL PROTECTED] wrote: markgoldin_2000 escreveu: I am designing a

[flexcoders] Re: Show and Hide using delay

2007-12-26 Thread brian.raymes
The problem I see is that you never tell the label to be visible after you hide it. Once it disappears, it never comes back. You also might want to assign the setTimeout call to a variable, so you can clear your setTimeout method in the case you need to cancel it. Here is your code, modified

Re: [flexcoders] Reusability question

2007-12-26 Thread Frederico Garcia
mark goldin escreveu: Yes, I can create a generic method for my Grid: public function doSomethingAfterRowIsAdded():void { } But I can't have any code there because it is specific to an object instatiation. */Frederico Garcia [EMAIL PROTECTED]/* wrote: markgoldin_2000 escreveu:

Re: [flexcoders] Reusability question

2007-12-26 Thread mark goldin
I think I understand what you are saying. But I am already extending Flex' s native DataGrid. I thought I could have added a custom method somehow without creating as many classes as many grids I am going to have in my project. Am I understanding you correctly? I will need to extend my base

[flexcoders] Re: How to restrict TileList to display items only in single row?

2007-12-26 Thread ad9798
--- In flexcoders@yahoogroups.com, sher_ali2004 [EMAIL PROTECTED] wrote: You can set the rowCount property to 1 as: rowCount=1 Sher Ali Flex and Flash Developer [EMAIL PROTECTED] +92 321 51 89 391 Thanks for replay Sher Ali. However, rowCount dose not work for TileList when there are

[flexcoders] Re: How to restrict TileList to display items only in single row?

2007-12-26 Thread ad9798
--- In flexcoders@yahoogroups.com, Kevin [EMAIL PROTECTED] wrote: Do you need to use a TileList for this? Would an HBox with a repeater would work for you? I guess it all depends if you need the functionality of ListBase. - Kevin On Dec 26, 2007, at 2:28 PM, ad9798 wrote: A

[flexcoders] ContextMenu events NOT firing when mouse over certain components

2007-12-26 Thread Mike Anderson
Hello All, I have a Lake Map Application that I am converting from Flash to Flex, and am having some serious issues when it comes to Context Menus. I have a Box Container, which holds a custom MapViewer Component (based on the UIComponent), in addition to a background Canvas (which provides the

Re: [flexcoders] Reusability question

2007-12-26 Thread Frederico Garcia
mark goldin escreveu: I think I understand what you are saying. But I am already extending Flex' s native DataGrid. I thought I could have added a custom method somehow without creating as many classes as many grids I am going to have in my project. Am I understanding you correctly? I will

[flexcoders] Re: How to restrict TileList to display items only in single row?

2007-12-26 Thread scalenine
I may have missed something, but is there a reason why a HorizontalList wouldn't work? Juan scalenine.com : degrafa.com --- In flexcoders@yahoogroups.com, ad9798 [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Kevin lists@ wrote: Do you need to use a TileList for this? Would

[flexcoders] Re: Sorting nested collections in Value Objects? (DataServices or RemoteObject f

2007-12-26 Thread simonjpalmer
Glad I could help, that's what is great about this group! --- In flexcoders@yahoogroups.com, Kevin [EMAIL PROTECTED] wrote: mx:ListCollectionView id=lcv_People list={MyParty.people} sort={myViewSpecificNameSort}/ mx:TileList dataProvider={lcv_People} / Ah!!! mxml, of course! It's

[flexcoders] Re: How to restrict TileList to display items only in single row?

2007-12-26 Thread ad9798
--- In flexcoders@yahoogroups.com, scalenine [EMAIL PROTECTED] wrote: I may have missed something, but is there a reason why a HorizontalList wouldn't work? Juan scalenine.com : degrafa.com --- In flexcoders@yahoogroups.com, ad9798 young97@ wrote: --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Mock objects in AS3

2007-12-26 Thread aduston1976
Jens: Indeed, we need Proxy#newProxyInstance in AS. This is how EasyMock creates its mocks. There is an equivalent mechanism in c# that is used by Rhino Mocks, which is similar to EasyMock insofar as it uses the record/replay metaphor. Cristophe: I would love to talk about this offline. Do you

[flexcoders] Bubbling and event from a popup

2007-12-26 Thread simonjpalmer
I have a custom control in my app which pops up a dialog in which the user can alter some data in the underlying domain model. I have a custom event SetDirtyEvent(o:Object) which gets dispatched and a listener in the main app which then keeps a singleton list of objects which have been changed

[flexcoders] Fwd: problem with relative assets path

2007-12-26 Thread Bart Wttewaall
*bump* (yeah, I know.. shameless!) -- Forwarded message -- From: Bart Wttewaall [EMAIL PROTECTED] Date: 23 dec. 2007 21:57 Subject: problem with relative assets path To: flexcoders@yahoogroups.com Hi list, I'm building a big Cairngorm application that consists of a GUI that

RE: [flexcoders] Fwd: problem with relative assets path

2007-12-26 Thread Tracy Spratt
Clearly you are talking about assets loaded at run-time, since embedded assets are baked in. I have taken to passing a full assets url into any application via flashvars and accessing that via the application.parameters associative array. This prevents path issues, and let me have

Re: [flexcoders] How to restrict TileList to display items only in single row?

2007-12-26 Thread Muzak
Use a HorizontalList maybe? http://livedocs.adobe.com/flex/201/langref/mx/controls/HorizontalList.html - Original Message - From: Kevin [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 26, 2007 8:41 PM Subject: Re: [flexcoders] How to restrict TileList to

Re: [flexcoders] Fwd: problem with relative assets path

2007-12-26 Thread Muzak
Use Modules? http://livedocs.adobe.com/flex/201/html/modular_083_2.html Check the docs for Module and ModuleManager. regards, Muzak - Original Message - From: Bart Wttewaall [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, December 27, 2007 12:16 AM Subject:

[flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-26 Thread Mike Morearty
Which component caused it to stop working -- the new Flex Builder, or the new Flash player? In other words, if you run the old beta 2 with the new player 115, does it work? If you run the new beta 3 with the old player that came out with beta 2 (whatever version that was), does it work? By the

[flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-26 Thread Mike Morearty
Oops, I missed your followup saying that NOD 32 Antivirus caused the problem. Glad to see you figured it out. I have to ask, though -- I occasionally see references to this sort of problem, only to have it always come down to NOD 32 Antivirus. I have never, ever heard of that program in any

[flexcoders] Re: layout / scrolling issues

2007-12-26 Thread foobone9
I appreciate your posting as I was having the same (or a very similar) problem. I found a solution for my problems in this thread: http://tech.groups.yahoo.com/group/flexcoders/message/84056 By setting my HBox's minWidth=0 I got the scrollbars as I wanted. Putting the HBox inside of a canvas

Re: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-26 Thread Sheriff
I have no reason, just read alot of good reviews on it and decided to try it. I had to uninstall it though and download another antivirus/secuirty program and everything worked after. - Original Message From: Mike Morearty [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

[flexcoders] Flex 2 Key doesnt work on Beta 3

2007-12-26 Thread Sheriff
Anyone having the same problem? My flex 2 key when I enter it in the Beta 3 it doesnt work. It works in Beta 2 though. Looking for last minute shopping deals? Find them fast with Yahoo! Search.

[flexcoders] php serialize finction and flex arraycollection

2007-12-26 Thread bmilesp
is it possible to use php serialize function to serialize an array on the server, use flex httpervice to retrieve the serialized array as result=text, then deserialize the array somehow into an arrayCollection? I ve looked at AMFPHP and WebOrb, although they work using RPCs, they seem more

[flexcoders] php serialize function into arraycollection?

2007-12-26 Thread bmilesp
is it possible to use php serialize function to serialize an array on the server, then use flex httpervice to retrieve the serialized array as resultFormat=text, then deserialize the array somehow into an arrayCollection? I ve looked at AMFPHP and WebOrb, although they work using RPCs, they seem

Re: [flexcoders] function binding toString

2007-12-26 Thread Kevin
Binding to getters or read-only functions is tricky. I haven't found a really elegant OOP approach, although others have offered solutions like dispatching event from functions etc.. http://www.rubenswieringa.com/blog/binding-read-only-accessors-in-flex The basic problem is that the

RE: [flexcoders] Bubbling and event from a popup

2007-12-26 Thread Alex Harui
Popups are not parented by the application. Everybody is parented by systemManager, so that's a better place to listen for bubbling. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Wednesday, December 26, 2007 2:53 PM

RE: [flexcoders] Reusability question

2007-12-26 Thread Alex Harui
Look at how labelFunction is implemented. You supply a custom function that gets called under certain circumstances. Others use events. It is more object-oriented IMHO. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mark goldin Sent:

RE: [flexcoders] NO Selction change when i click on the list rendererer button item

2007-12-26 Thread Alex Harui
Try calling stopImmediatePropagation on the mouse events From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of srikanth_reddy_007 Sent: Wednesday, December 26, 2007 9:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] NO Selction change

RE: [flexcoders] Catch itemEditEnd event

2007-12-26 Thread Alex Harui
Make sure editable=true on the DG. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday, December 26, 2007 7:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Catch itemEditEnd event I am trying to

RE: [flexcoders] Clickable image in dataGrid advice?

2007-12-26 Thread Alex Harui
Is it a Bitmap, mx:Image, something else? Make sure it is an InteractiveObject and has mouseEnabled=true From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Monday, December 24, 2007 6:39 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] tileList displaying items order other than that represented by dataProvider

2007-12-26 Thread Alex Harui
Are you using a custom renderer? Sounds like it doesn't know how to be recycled. More about renderer recycling on my blog (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Sent: Friday, December 21, 2007 2:11

RE: [flexcoders] Moving Buttons - Bug?

2007-12-26 Thread Alex Harui
Don't have time to run it, but probably a fact of life. When things move/zoom on rollover/rollout, they can move from under the mouse causing further rollover/rollouts From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Heiko Niemann Sent:

RE: [flexcoders] Non-debug mode movie cannot be used for profiling?

2007-12-26 Thread Alex Harui
Check the compiler settings. Make sure -debug is one of the options. Or compare the file size when you export release version. There should be a significant difference. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aaron smith Sent:

RE: [flexcoders] TypeError: Error #1006: getShape is not a function. (Sometimes...)

2007-12-26 Thread Alex Harui
Does it matter which one you load first? Is it the second that always fails? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rich Germuska Sent: Sunday, December 23, 2007 1:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Converting the Loader info to Class

2007-12-26 Thread Alex Harui
load is asyncrhonous. Loader.content won't be available until after the complete event. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of srikanth_reddy_007 Sent: Wednesday, December 26, 2007 9:30 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Remove Sort

2007-12-26 Thread Alex Harui
.sort = null From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday, December 26, 2007 9:27 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Remove Sort I am using Sort to be able to run Find...()

RE: [flexcoders] Re: Problem with RSL and SWFLoaders

2007-12-26 Thread Alex Harui
Have you tried using the framework RSL caching? Can you have a shell for applets so they never run on their own even when pulled out into their own browser window? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick Durnell Sent:

RE: [flexcoders] DataGrid dataField - Get name

2007-12-26 Thread Alex Harui
IDropInListItemRenderer. You'll see examples in TextInput.as and other Flex components From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, December 25, 2007 8:19 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] ItemRenderer in TileList not redrawing?

2007-12-26 Thread Alex Harui
Renderers get recycled so make sure your renderer can be refreshed w/o being re-created. More info on my blog (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Maher Sent: Wednesday, December 26, 2007 11:26 AM

Re: [flexcoders] function binding toString !! Additional information

2007-12-26 Thread yigit
i think i'm misunderstood; because your solution suggestions does not fit my problem. first of all, functions can be binded. (with an event driven architecture that triggers the function to be executed and all bindable references be updated) to see how it is done, take a look at the article in