RE: [flexcoders] using Repeater

2005-07-07 Thread Abdul Qabiz
Hi Rajesh, id should be string following rules for a variable name(should not start with numbers, should not contain some special chars except $ etc). You can not pass a binding expression there. Why do you want to assign a dynamic id? Since you are using repeater to generate ViewStack, you know

RE: [flexcoders] How do I bound XML data into an array that is my data provider for a data grid

2005-07-07 Thread Abdul Qabiz
Hi, Look at the following code: ##employeesModelTest.mxml## http://www.macromedia.com/2003/mxml"; xmlns="*" initialize="onAppInit()"> import ComboBoxCellRenderer; function onAppInit() { ComboBoxCellRenderer.dataProvider = ["San Francisco", "Ban

[flexcoders] aboute default mouse moveover style

2005-07-07 Thread Banks
Hi,all, When mouse move over event takes, the control's style changes. My question is: what style does the flash choose. i want to simulate the style of the mouse moveover event occurs. -- Best Regards --Zhu Feng MSN: [EMAIL PROTECTED] -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/g

[flexcoders] CheckBox in the DataGrid

2005-07-07 Thread shahnavaza
Hi All, I have a DataGrid with a checkbox rendered successfully using CellRenderer. My first problem is that how do I get the array of all Checked checkboxes on particular button Click. Secondly, I need to unCheck all checked Checkboxes on UnCheck button click. Following is the Snippet. Thanks for

[flexcoders] Is antialiasing possible in flex?

2005-07-07 Thread Nithya R
pls let know if antialiasing is possible with flex/   thanks nithyaSend instant messages to your online friends http://uk.messenger.yahoo.com -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoder

RE: [flexcoders] Re: Printing whole lotta pages?

2005-07-07 Thread Nihit Saxena
Thanks Manish, Its correct, to print a content completely, it should not be under any mask. For 1.5 this is an undocumented solution to the problem.       From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Thursday, July 07, 2005 12:3

[flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread ptrisnadi
I tried searching for the answer everywhere (including The Mail Archive) but no success. Basically I want to add 1 or more images to a tilelist from another tilelist in a popup. Both tilelists are populated with correct images based on the XML file. I use addItemAt and it seems to do somethin

Re: [flexcoders] Redirect to next page

2005-07-07 Thread Harinath
Thanks a lot Abdul! Its working ... On 7/6/05, Abdul Qabiz <[EMAIL PROTECTED]> wrote: > Hari, > > As Sree said, in Flex we think application in terms of Views. In your > case, user can submit the data and see the result in the same place. > > You can send the data using HTTPSerivce, servlet p

RE: [flexcoders] Load a large swf (13MB)

2005-07-07 Thread Philippe Maegerman
Not sure, but I think the question was about being able to stream a .swf file, via flashcom or not ;)) I don't have an answer but I'd like to know too   Philippe Maegerman   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul QabizSent: jeudi 7 juillet 2005 8:

RE: [flexcoders] Load a large swf (13MB)

2005-07-07 Thread Abdul Qabiz
I think, you can not stream swf via flashcomm.     -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Philippe MaegermanSent: Thursday, July 07, 2005 1:36 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Load a large swf (13MB) Not sure, but I think

RE: [flexcoders] Is antialiasing possible in flex?

2005-07-07 Thread Abdul Qabiz
Yeah it is possible. You need to embed the font outlines in Flex app for anti-aliasing to occur.    Please search the archives, this topic has been discussed recently.   If you still have doubts, let us know..   -abdul     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Beh

[flexcoders] Flex and Remoting?

2005-07-07 Thread chris.alvarado
Hello again everyone =) So, ive been playing around with some of the Flex examples and building little test widgets today and i must say im really liking what im seeing. to recap, i have a large app built using Flash, ColdFusion and MS SQL and im strongly considering recommending that we rearchit

RE: [flexcoders] Flex and Remoting?

2005-07-07 Thread Abdul Qabiz
Flash Remoting in Flex is known as RemoteObject. And it is still a better solution... Flex server comes with built-in remoting gateway, so every things is seemlessly integrated. And it is very easy to use RemoteObject in Flex as compared to Flash... You can search the macromedia website, flexcode

[flexcoders] Re: Dynamically add an MXML to a Panel

2005-07-07 Thread cazzaran
You gathered correct. Unfortunately, what I was trying to do was a sort of "runtime load" of an MXML component, which, in retrospect, I should have known wasn't possible. I tried what you said verbatim, and it didn't work. However, I got the jist of what you were saying; what I did was to simply a

RE: [flexcoders] Flex & external desktop application communication

2005-07-07 Thread Alistair McLeod
Hi Ted,   I’m sure everyone on this list is interested in seeing Flex implementations, so please do let us know when you’ve got something to show us.   Cheers,   Ali   -- Alistair McLeod Development Director iteration::two   [EMAIL PROTECTED] Office: +44 (0)131 338 6108

RE: [flexcoders] Is antialiasing possible in flex?

2005-07-07 Thread Bikram Sahu
hi,     recently i am facing a problem that i want to upload a file to the server please tell me how can i pass the file to the server in flex.   with Regards Bikram Sahu -Original Message-[Bikram Sahu]  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]On Behalf O

RE: [flexcoders] Is antialiasing possible in flex?

2005-07-07 Thread Abdul Qabiz
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19382 http://www.flexauthority.com/articlesArchive/fileUpload.cfm  www.markme.com/mchotin/archives/006375.cfm (currently down - should be up soon)   you can adopt similar technique using any server-side script...     -abdul Fr

RE: [flexcoders] CheckBox in the DataGrid

2005-07-07 Thread Abdul Qabiz
Hi, You can achieve this by just updating dataProvider and if design of yourCellRenderer in such a way that if dataProvider changes CellRenderer is updated. Say you have a field in dataProvider, which is bound with checkbox's selected property. If you change the dataProvider, CheckBoxes get updat

Re: [flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread Scott Barnes
sorry your message was truncated, could you followup with the code? you can't move one movieclip (ie image) from containerA to containerB, sadly DuplicateMovieClip only allows you to duplicate a movieclip onto the same level as its original source (btw FLASH 8 wishlist feature). The only way is t

Re: [flexcoders] Flex & external desktop application communication

2005-07-07 Thread Scott Barnes
That's for sure, as i can just see the Director of Finance @ my work drool at the ability to transmit data from FLEX to his annoying Excel spreedsheet(s) and vice versa. Never thought it was possible, so i'm very keen to see "how". On 7/7/05, Alistair McLeod <[EMAIL PROTECTED]> wrote: > > >

Re: [flexcoders] Re: Dynamically add an MXML to a Panel

2005-07-07 Thread Scott Barnes
On 7/7/05, cazzaran <[EMAIL PROTECTED]> wrote: > You gathered correct. Unfortunately, what I was trying to do was a > sort of "runtime load" of an MXML component, which, in retrospect, I > should have known wasn't possible. No, you wouldn't be the first and will not be the last. I remember thinkng

RE: [flexcoders] Flex & external desktop application communication

2005-07-07 Thread Abdul Qabiz
>Never thought it was possible, so i'm very keen to see "how". Many ways :), some are... - LocalConnection - XMLSocket I wrote a Flash application in past, which used to communicate with MS Outlook and MS Excel. It was kind of experiment after someone on flashcoders asked about it.. If you ar

[flexcoders] Camera

2005-07-07 Thread Philippe Maegerman
Is it possible to instantiate a Video Object in Flex to attach a webcam and stream to flashcom?   Philippe Maegerman   -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-07-07 Thread Manish Jethani
On 7/7/05, Matthew Shirey <[EMAIL PROTECTED]> wrote: > Uhm... to get right to the point... That's Crazy. Why are MenuItems and > Menus not children?? I'm not aware of the exact reason for this, but my guess is that they are not children in order to support the following case: The Box

RE: [flexcoders] Flex & external desktop application communication

2005-07-07 Thread Theodore E Patrick
The nice aspect of a local server (HTTP/XMLSocket) for integration is that you can interact with Flex applications in the browser cleanly within the security sandbox of the player. So long as the crossdomain.xml files are in place and valid, you can have Flex integrate with a local server without i

Re: [flexcoders] Macromedia Flex contracts a plenty!

2005-07-07 Thread Clint Modien
404 for http://www.flexauthority.com from 2 different locations in North America On 7/7/05, Jeff Steiner <[EMAIL PROTECTED]> wrote: I thought that I would bring up the Flex Jobs topic in the forums of Flex Authority.  I am seeing probably 4-5 Flex jobs a week on the major job s

Re: [flexcoders] using Repeater

2005-07-07 Thread Clint Modien
very nice and LARGE section in the docs... (thank you flex doc team) http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=0419.htm p.s. rtfm On 7/7/05, Abdul Qabiz <[EMAIL PROTECTED]> wrote: Hi Rajesh,id should be strin

[flexcoders] HistoryManger state is undefined on loading

2005-07-07 Thread rockmoyosa
My case: - saveState is executed - On "Back" loadState is executed. But. Than my state is "undefined" private var changed:Boolean; public function initHistory():Void { mx.managers.HistoryManager.register(this); storeInternalState();

RE: [flexcoders] Camera

2005-07-07 Thread Philippe Maegerman
Thank you very much Abdul, After a good battle I was arrived to your second proposition, very light and simple.  I wanted to go the 'deluxe' way and bundle it into a .swc so I could instantiate a tag and pass arguments like 'height', 'width', 'src' video settings etc ... but coudn't ge

[flexcoders] Re: HistoryManger state is undefined on loading

2005-07-07 Thread rockmoyosa
I tell what happened. state. objects are now STRINGS(!?) << DUMP START >> this:Object |model = [object Object] (string) |view = false (string) I can overcome the view by: var detailVisible = Boolean(state.view == "true"); But for model it's a different story. --- In flexco

RE: [flexcoders] Dynamic LineSeries color doesnt work

2005-07-07 Thread Ely Greenfield
What type of chart are you using? Series in a chart get an 'internalStyleName' from the enclosing chart. Each series gets a different internalStyleName. Different chart types have different internal style names for their series. The LineSeries has internalStyleNames that have strokes applied f

[flexcoders] MM weblogs moved

2005-07-07 Thread Matt Chotin
Most of the weblogs from Macromedia were moved from www.markme.com to weblogs.macromedia.com. The templates got uglier but the machine is better :-) If you see any problems let us know. Matt -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-07-07 Thread Matthew Shirey
Thanks for the additional information.  Since I do understand a bit of how flash is being used to present these UI elements, I do understand, thanks to you, why there's no parent/child relationship.  For me, its just really unfortunate.  Because of the difficulty I have had with the scaling of a

[flexcoders] XML Socket Doesn't Work

2005-07-07 Thread cshafer213
Can Anyone Tell Me what is wrong with the following code to connect to an XML socket server? The stat Lable should display either "status = Connected" or "status = Error" when the button is clicked, and nothing is happening. Thanks, Chris Shafer, George Weiss Associates http://www.macromedia.co

Re: [flexcoders] Reorder tree via dragging

2005-07-07 Thread Matthew Shirey
As I am currently working with this, I can say that dataForFormat("source") will give you a reference to the source object of the drag drop operation.  I am not sure about the "items" one though.  I've read mixed documentation, some say its "treeItems".  Any rate, there's a formats array in the

Re: [flexcoders] MM weblogs moved

2005-07-07 Thread Dave Carabetta
On 7/7/05, Matt Chotin <[EMAIL PROTECTED]> wrote: > Most of the weblogs from Macromedia were moved from www.markme.com to > weblogs.macromedia.com. The templates got uglier but the machine is > better :-) If you see any problems let us know. > Matt, Do you know when/if the /go/* feed URLs will

Re: [flexcoders] MM weblogs moved

2005-07-07 Thread John Dowdell
Dave Carabetta wrote: > Do you know when/if the /go/* feed URLs will be updated? These are in the pipeline (gotta do it!), but the older machine was physically damaged, while its owners (Mike Chambers & Christian Cantrell) are at the FlashForward conference in New York. It will probably take a

[flexcoders] Push/"AJAX" via a Loader (Re: Flex & external desktop application communication)

2005-07-07 Thread Eric Raymond
So a loader can be used to communicate with an HTTP Server in a push model?!!! Is this analagous to the way AJAX web sites push content to the client? This would be an amazing hack! If so, I'm very curious as to how well this works in practice. (I suspect the devil is in the details here.) The

RE: [flexcoders] XML Socket Doesn't Work

2005-07-07 Thread Theodore E Patrick
Chris, You need to use Delagate with XMLSocket callbacks. This should work: import mx.utils.Delegate; sock.onClose = Delegate.create( this, sockOnClose ); sock.onConnect = Delegate.create( this, sockOnConnect ); sock.onData = Delegate.create( this, sockOnData ); Cheer

Re: [flexcoders] MM weblogs moved

2005-07-07 Thread Dave Carabetta
On 7/7/05, John Dowdell <[EMAIL PROTECTED]> wrote: > Dave Carabetta wrote: > > Do you know when/if the /go/* feed URLs will be updated? > > These are in the pipeline (gotta do it!), but the older machine was > physically damaged, while its owners (Mike Chambers & Christian > Cantrell) are at the F

[flexcoders] Re: HistoryManger state is undefined on loading

2005-07-07 Thread jacksodj
I personnaly have seen really flakey behavior from that history controller. I have posted before, but have not been able to see a good resolution --- In flexcoders@yahoogroups.com, "rockmoyosa" <[EMAIL PROTECTED]> wrote: > My case: > > - saveState is executed > - On "Back" loadState is execute

RE: [flexcoders] How do I bound XML data into an array that is my dataprovider for a data grid

2005-07-07 Thread joe . g . james
Thanks that works great, but if  select something from the combobox and then try to sort the column that the combobox is in, it does not sort with the rest of the row. How do I set that value?  Thanks CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended

RE: [flexcoders] Flex over dialup?

2005-07-07 Thread Bob Remeika
Jesse, I appreciate the time for the thorough response. This is something that is useful knowledge not only to us, but to the community as a whole. I will try to keep everybody updated as we discover tips and tricks that will help other developers. Thanks, Bob Remeika -Original Message--

RE: [flexcoders] Macromedia Flex contracts a plenty!

2005-07-07 Thread Jeff Steiner
Sorry – site maintenance this morning.   Back up and running.   And – there is another contract out there.   Jeff Founder Flex Authority http://www.flexauthority.com   We are actively seeking contributors for the site.  Have a sample that you want to share with the world?  Se

RE: [flexcoders] How do I bound XML data into an array that is my dataprovider for a data grid

2005-07-07 Thread Tracy Spratt
Are you using editField() to update the dataProvider in the “//TODO:” section? Tracy   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, July 07, 2005 12:29 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcod

[flexcoders] Control Bar Background Color

2005-07-07 Thread jwc_wensan
Good Afternoon: In my code I have changed the "headerColor" of the Panel and want to change the ControlBar background color to match. I changed the background color to match, but it did not work. I then read this from livedocs: The container inherits all the properties of its parent

RE: [flexcoders] Push/"AJAX" via a Loader (Re: Flex & external desktop application communication)

2005-07-07 Thread Theodore E Patrick
> So a loader can be used to communicate with an HTTP Server in a push > model?!!! Is this analagous to the way AJAX web sites push content to > the client? Loader is for SWF/Image but there are ton of various ways to exchange data in Flash. The Flash Player has supported data exchange since vers

[flexcoders] CheckCellRenderer

2005-07-07 Thread terry_hrtn
I'm using the CheckCellRenderer from the samples on a datagrid that is inside of a title window. The problem I'm having is when I check the top item the item in the grid that is not being displayed at the moment is also checked. Any ideas? -- Flexcoders Mailing List FAQ: http://groups.yaho

[flexcoders] getDropParent() when the branch is closed.

2005-07-07 Thread Jeff Krueger
All,       I am trying to drag an item from a grid and drop it on a tree control.  I have found that the getDropParent seems to be the best bet when trying to find where to add a new child node to.  The only problem I am having is if the user chooses to drop the item on a branch

Re: [flexcoders] Flex over dialup?

2005-07-07 Thread JesterXL
Anything to help a "fish"; we studied your company's book back in college. - Original Message - From: "Bob Remeika" <[EMAIL PROTECTED]> To: Sent: Thursday, July 07, 2005 2:28 PM Subject: RE: [flexcoders] Flex over dialup? Jesse, I appreciate the time for the thorough response. This i

RE: [flexcoders] Is antialiasing possible in flex?

2005-07-07 Thread Sreejith Unnikrishnan
Title: Message Nithya, you dont seem to take the FAQs seriously :-(   Please take this as a friendly advice. Take a minute to search the mail-archive. Anyways, for now, check out http://www.mail-archive.com/cgi-bin/htsearch?method=and&format=short&config=flexcoders_yahoogroups_com&restrict=&

[flexcoders] data binding remoting data . . .

2005-07-07 Thread chris.alvarado
good afternoon everyone, so im finally diving into Flex and im really liking it so far. ive found some pretty good examples of working with data from remoting (specifically Coldfusion). however i havent found any examples of how to bind data to something like a combobox. in Flash with remoting w

Re: [flexcoders] Reorder tree via dragging

2005-07-07 Thread Sean McKibben
So, what I've ended up using is the dataForFormat("source") when the dragSource is a tree, which gets a reference to the tree. Once you have that, the actual items being dragged will be the selectedNode or the selectedNodes, depending on whether or not the tree allows multiple selection. S

[flexcoders] Re: Control Bar Background Color

2005-07-07 Thread Andrew Spaulding
I assume you used the headerColors attribute on the panel to change the header colours. The Panel component also has a footerColors style. The footerColors style is an array of two colours used to the draw footer background (the area for the ControlBar). use it like this: You can also use the

Re: [flexcoders] Load a large swf (13MB)

2005-07-07 Thread John Dowdell
Clint Modien wrote: > Can I start playing the movie before it's loaded? The question is actually harder to answer than it might seem, because SWF has added more capabilities and content types since it started. Here's a good intro to the basic streaming nature of a SWF file, written towards Flas

Re: [flexcoders] Load a large swf (13MB)

2005-07-07 Thread Clint Modien
found the answer... has to be an flv... the 13MB swf would have to completely download before it would start playing... http://www.macromedia.com/devnet/mx/flash/articles/video_primer_03.html On 7/7/05, John Dowdell <[EMAIL PROTECTED]> wrote: Clint Modien wrote:> Can I start playing the movie

Re: [flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread P Trisnadi
Thanks for your interest and notice, Scott. To recap: I have a TileList that shows images and their names, read from an XML file and rendered by a CellRenderer. When the [Add Photo] button is clicked, a createPopUp is called. This PopUp also has a TileList that reads another XML file with the same

[flexcoders] Re: XML Socket Doesn't Work

2005-07-07 Thread cshafer213
--- In flexcoders@yahoogroups.com, "Theodore E Patrick" <[EMAIL PROTECTED]> wrote: Thanks for responding and putting me on the right track. I changed my code to add the Delegate as best I could but I still can't get it working: http://www.macromedia.com/2003/mxml";> > Chris, > >

[flexcoders] Re: using Repeater

2005-07-07 Thread Rajesh Jayabalan
Thanx a lot --- In flexcoders@yahoogroups.com, Clint Modien <[EMAIL PROTECTED]> wrote: > very nice and LARGE section in the docs... (thank you flex doc team) > > http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=0419.htm >

Re: [flexcoders] data binding remoting data . . .

2005-07-07 Thread Tarik Ahmed
Hi Chris. It sounds like you mostly got this working; are you saying you're getting stuck on selectedIndex part of it? But in general ya... I would an mx:RemoteObject, with a method where upon completion have a result="resultHandler(event.result)" that assigns the resulting data to a local arra

RE: [flexcoders] Re: XML Socket Doesn't Work

2005-07-07 Thread Theodore E Patrick
Ah, there are 2 errors is there, socket is a temporary variable within the connect method and null is not a valid value for the server. Think of the block as a class (because it is at runtime). I made this mistake first time round the MXML tree. http://www.macromedia.com/2003/mxml";>

[flexcoders] Re: How to compile a transparent application

2005-07-07 Thread mohimbe77
--- In flexcoders@yahoogroups.com, "mohimbe77" <[EMAIL PROTECTED]> wrote: > Hi all, > > I've been developing in Flex for about 6 months and need to be able to > compile an MXML application that ends up being transparent when it is > placed on an HTML page. > > I know all about the 'wmode' att

[flexcoders] using a repeater with large data sets

2005-07-07 Thread Andrew Spaulding
Hi all, I posted this about an hour ago but it didnt appear to show up (sorry if you have already received this) I am using a repeater to show a list of search results. Each search result is a container of sorts with a custom header, clicking on the header open and closes the search result deatai

Re: [flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread P Trisnadi
Not sure why second message was also truncated. Let's try this again... -- Thanks for your interest and notice, Scott. To recap: I have a TileList that shows images and their names, read from an XML file and rendered by a CellRenderer. When the [Add Photo] button is clicked, a createPopUp i

[flexcoders] using a repeater with large data sets

2005-07-07 Thread Andrew Spaulding
Hi all, I am currently using a repeater to display a list of search results, each of them being a container of sorts with a custom header with extra controls. Click on the header open and closes the result, a long with a few other bits and pieces. One thing I have found is that with a larger sea

RE: [flexcoders] using a repeater with large data sets

2005-07-07 Thread Tracy Spratt
One possibility with the repeater is to set the number of items that are rendered, then, instead of scrolling, use page-up, page-down buttons. A repeater with around a hundred moderately complex items is horribly slow. Show only 10, and recycleChildren and things improve dramatically. This is mu

[flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Andrew Spaulding
Good idea Trac! I'll use the count and startingIndex properties to manage the paging locally ;) Kind regards, Andrew Spaulding www.flexdaddy.info --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > One possibility with the repeater is to set the number of items that

Re: [flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Alex Cruikshank
Hi Andrew, If you're using remoting, I'd make sure your performance problems aren't with the serialization/deserialization of the results before you invest much time in optimizing the display. I've done some research into this (http://www.carbonfive.com/community/archives/2005/07/the_remoting_de.h

RE: [flexcoders] aboute default mouse moveover style

2005-07-07 Thread Matt Chotin
Generally this is the focusIn skin that you’re seeing on a lot of the components.  In the lists you’d be looking at the rollover styles.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Banks Sent: Thursday, July 07, 2005 1:02 AM To: [

RE: [flexcoders] aboute default mouse moveover style

2005-07-07 Thread Matt Chotin
Sorry, meant the focus skins (you’ll see them on UIComponent)   From: Matt Chotin Sent: Thursday, July 07, 2005 9:45 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] aboute default mouse moveover style   Generally this is the focusIn skin that you’re seeing on

RE: [flexcoders] Re: HistoryManger state is undefined on loading

2005-07-07 Thread Matt Chotin
Yes, I think all history manager information is stored as strings so type is not going to be maintained and you’ll need to deal with that in your loadState method.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of rockmoyosa Sent: Thurs

RE: [flexcoders] CheckCellRenderer

2005-07-07 Thread Matt Chotin
What do you meant the item in the grid that is not being displayed.  As in an item you didn’t have selected updated as well?  Perhaps you’re updating the wrong entry in the data provider?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of terry_h

RE: [flexcoders] getDropParent() when the branch is closed.

2005-07-07 Thread Matt Chotin
Maybe you could add a itemRollOver handler on the Tree so that when you are dragging (indicated by dragEnter I guess) and you encounter a branch you could make sure the branch gets opened?   Matt       From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On B

RE: [flexcoders] Reorder tree via dragging

2005-07-07 Thread Matt Chotin
We mention the formats in the List section of the drag and drop chapter I think.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sean McKibben Sent: Thursday, July 07, 2005 3:46 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcode

RE: [flexcoders] aboute default mouse moveover style

2005-07-07 Thread Matt Chotin
Actually, I might have been looking at Flex 2.0 docs here J  highlightColor is used when a component has focus, not sure if mouseOver will cause highlight too (I think it does).   From: Matt Chotin Sent: Thursday, July 07, 2005 9:45 PM To: Matt Chotin; flexcoders@yahoogroups.co

RE: [flexcoders] Added image/s in TileList is/are not shown

2005-07-07 Thread Matt Chotin
You’re using the List addItemAt method instead of the DataProvider addItemsAt method.  I think you want to use _root.modelImage2.photo.addItemsAt(0, tilelistAllImage.selectedItems); as the body of your addLibrary method, no need for the for loop.   Matt From: flexcoders@yahoog

[flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Andrew Spaulding
Hi Alex, Yeh I followed your posts on performace with large data sets, and our return data from the RemoteObject service is relatively fast. The problem lies with the rendering of the results. For what I'm doing I have found the the Repeater works better for me compared to a List with a CellRende

RE: [flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Matt Chotin
My blog post from way back has an example of that control (well the files that come with the example)   http://weblogs.macromedia.com/mchotin/archives/2004/03/large_data_sets.cfm   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Andre

[flexcoders] Re: using a repeater with large data sets

2005-07-07 Thread Andrew Spaulding
Ah ofcourse, the 'PageSelector' component you wrote. I remember reading the articles a long time back when you first wrote them, but in this scenario I wasn't interested in server side paging. I'll check out the component, thanks, Andrew www.flexdaddy.info --- In flexcoders@yahoogroups.com,