RE: [flexcoders] Cairngorm FrontController

2007-03-16 Thread Stembert Olivier (BIL)
I think when Shannon is talking about components he's talking about modules in fact. In that case, each module has its own controller. In that scenario, if you dispatch an event and that event (same event type) is registered in two different modules, the two commands in different modules will be

RE: [flexcoders] HTML in Flex

2007-03-16 Thread Kumar
I have used the same functionality implementing an IFRAME in my application to open the webpage. It is the simplest and quick solution.. Thanks, Kumar _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Friday, March 16, 2007 4:50 AM To:

[flexcoders] Re: Custom VScrollBar class assigned to a container !

2007-03-16 Thread pitziilu
ANYBODY ??

RE: [flexcoders] newbie question re: BarSeries programatically setting the showDataEffect

2007-03-16 Thread Gordon Smith
myBarSeries.setStyle(showDataEffect, myZoomOutEffect); - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of iilsley Sent: Thursday, March 15, 2007 10:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] newbie question re:

Re: [flexcoders] HTML in Flex

2007-03-16 Thread Jatin Nanda
There are a couple of guys who've already blogged this: - 1) Christophe Coenraets did a *Flex* and *IFrame for Flex 1.5 *2) http://www.deitte.com/archives/2006/05/update_to_embed.htm#more 3) http://renaun.com/blog/2006/11/16/157/ I'm sure there are more, but I reference these ones! On 3/16/07,

RE: [flexcoders] Compilation, library-path and configuration file

2007-03-16 Thread Stembert Olivier \(BIL\)
Any ideas??? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stembert Olivier (BIL) Sent: Wednesday, March 14, 2007 11:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Compilation, library-path and configuration file Hi

Re: [flexcoders] TextArea.text confusion

2007-03-16 Thread Roman Protsiuk
Exactly. Thanks for the tip, Alex. R. On 3/16/07, Alex Harui [EMAIL PROTECTED] wrote: Sounds like he wants the light grey add comments in the TA and then have it clear on focus in. For sure, textChanged will be false by the time you get back from super.commitProperties so I think I'd

[flexcoders] Datagrid Button Renderer Performance

2007-03-16 Thread durnelln
Hi all, I have a simple button renderer (below) which I use in my datagrids. All seemed fine but I now have four of these button renderers in each row of my datagrid(s) and performance starts to suffer when there are many rows on display at once (my app can easily have a hundred or more rows

[flexcoders] Best way to graphical assets into Flex

2007-03-16 Thread Giles Roadnight
Hi All I have a flash project as a banner here: http://www.caterpillar-designs.com/ The caterpillar (which appears after a few seconds) is capable of a lot more than walking across the banner, he can walk to where you click and I want to add some very basic AI to him (he's called Cecil!). I

[flexcoders] Re: Funny appearance of TabNavigator icons

2007-03-16 Thread Danko Kozar
I forgot to mention that the TabNavigator appears inside the TitleWindow.. --- In flexcoders@yahoogroups.com, Danko Kozar [EMAIL PROTECTED] wrote: I really need help with this one. My tab navigator has icons that render on wrong positions. Please look at this image:

[flexcoders] Re: HTML in Flex

2007-03-16 Thread v.cekvenich
take a look at pointcast.com for example.

[flexcoders] Re: netstream mp3 access to SoundMixer.computeSpectrum in sandbox not allowed

2007-03-16 Thread v.cekvenich
Any idea how to make a sound class out of a netstream? ? tia, .V --- In flexcoders@yahoogroups.com, v.cekvenich [EMAIL PROTECTED] wrote: How do I get something similar so that I can draw a spectrum(vibrating lines) of the music streaming on netstream in flash 2.01? tia, .V

RE: [flexcoders] Datagrid Button Renderer Performance

2007-03-16 Thread Jason Hawryluk
Personally I have a huge preference for AS only itemrenderers however that said, at first glance I would ask why are you adding a event listener when the button has this built in? mx:Button click=onClick(event); xmlns:mx=http://www.adobe.com/2006/mxml; initialize=init(); Take note of the

RE: [flexcoders] Re: Funny appearance of TabNavigator icons

2007-03-16 Thread Jason Hawryluk
Can you be more specific. Are you creating this in as/mxml? Are the tabs being added at runtime? Are the icons being assigned at runtime? Etc.. Difficult to assist if we have no idea what might have led to this display? Providing code helps. jason -Message

Re: [flexcoders] DataGrid in Action Script

2007-03-16 Thread Vinay Pillay
hi kumar, This is very easy. you actually need not use any logic for this This is the default property of data grid do the following 1.just drag drop the data grid 2.do not define any column header or column data grid itself will give u the column according to data in the data provider.

[flexcoders] Re: Datagrid Button Renderer Performance

2007-03-16 Thread durnelln
--- In flexcoders@yahoogroups.com, Jason Hawryluk [EMAIL PROTECTED] wrote: Personally I have a huge preference for AS only itemrenderers however that said, at first glance I would ask why are you adding a event listener when the button has this built in? My button renderer listens for the

[flexcoders] Adding variable number of LineSeries to LineChart

2007-03-16 Thread Bhuvan Gupta
Hi All, I am generating a Line chart to contain dynamic LineSeries items. I have a treenode, if I click on the tree node I need to show the line chart comparing the values of all its children. The child count is not fixed. I tried doing it in MXML by adding Repeater to the mx:series but it

[flexcoders] Simulating clicking the X of a TitleWindow

2007-03-16 Thread qnotemedia
I have a popup TitleWindow where I've added a listener for clicking the X-close button so that I can do something on-close...i.e.: myPopup.addEventListener(CloseEvent.CLOSE,postPopupFunction); My popup has other methods of closing tho - a cancel button and listening for the ESC key. How do I

[flexcoders] How to style through CSS HTML in RichTextEditor???

2007-03-16 Thread maikelsibbald
As my subject is saying? How to style through CSS HTML in RichTextEditor/TextArea? Does anybody know hoe to do this? The docs are saying You can also define a:link, a:hover, and a:active styles for anchor tags by using style sheets.

[flexcoders] Re: Funny appearance of TabNavigator icons

2007-03-16 Thread Danko Kozar
Im creating this as MXML. Tabs are not created in runtime. Here's my MXML: - ?xml version=1.0 encoding=utf-8? mx:TitleWindow xmlns:mx=http://www.adobe.com/2006/mxml; title=Test mx:Script

Re: [flexcoders] TextArea.text confusion

2007-03-16 Thread Roman Protsiuk
The working version of this component (ExtendedTextArea) can be found here http://roma-ch.blogspot.com/2007/03/one-down-more-to-go.html. Thanks everyone, R.

Re: [flexcoders] HTML in Flex

2007-03-16 Thread dorkie dork from dorktown
this dork has a pretty cool html component. i think he said it was coming out weekend. there's some demos on this page (check out the fit to height feature) http://www.judahfrangipane.com/blog/?p=79 On 3/16/07, Jatin Nanda [EMAIL PROTECTED] wrote: There are a couple of guys who've already

[flexcoders] Re: using videoDisplay with netstream (FMS)

2007-03-16 Thread John Wilker
nobody? I searched and found a few references but none were clear enough (my failing, not the poster's) Thanks On 3/15/07, John Wilker [EMAIL PROTECTED] wrote: So I've got a videDisplay component and I want to talk to FMS. I've got code to get my rtmp path for the media figured out. What I

[flexcoders] Trace Output Stopped Working

2007-03-16 Thread Paul Whitelock
Yesterday for some mysterious reason the trace() statement stopped sending data to the console. Event a simple statement like trace(Here) did nothing (and yes, I was in debug mode). I tried restarting Eclipse, rebooting the computer, etc. and nothing helped. Finally I uninstalled the Flex plug-in,

[flexcoders] Wondering why ArrayUtil.getItemIndex() loops through Array Items instead of using Array.indexOf()

2007-03-16 Thread Arul
Looking at mx.utils.ArrayUtil class I'm wondering why it does not make use of native method Array.indexOf for getItemIndex() method. I'm thinking native method should be faster public static function getItemIndex(item:Object, source:Array):int { var n:int = source.length;

Re: [flexcoders] Trace Output Stopped Working

2007-03-16 Thread Brian Dunphy
Are you using a Mac? I noticed that when I installed the latest 10.4.9 updates on my Macbook Pro, Apple pushed the install of Flash Player 9.0.28.0 (non-debug). It took me a few minutes to figure out that my debug version of the player had been trashed, and that I had to re-install. Hope this

[flexcoders] memory keeps increasing when RemoteObject is used

2007-03-16 Thread vargaandrea
Hi, I noticed that my project keeps using more and more memory, even when it does nothing (or I thought so). I finally came to the conclusion that remote calls causing it. Here is a small test: http://virtualro.cluj.astral.ro/andi/memtest/ It has a timer that keeps updating a label with

[flexcoders] Re: Trace Output Stopped Working

2007-03-16 Thread Paul Whitelock
No, I'm on a PC. Flex Builder connects to the SWF and I can set breakpoints so I don't think there's a problem with the Flash Player but maybe I'll try re-installing the debug version just to see if it makes a difference. Thanks for the reply! Paul --- In flexcoders@yahoogroups.com, Brian

Re: [flexcoders] How to style through CSS HTML in RichTextEditor???

2007-03-16 Thread John Wilker
Here's how I did it. I've got an RSS feed reader and wanted to be able to see the links in the body. it's not in CSS though. in my init() function. var hover:Object = new Object(); hover.color = #1EBBDE; hover.textDecoration = underline; var

[flexcoders] Re: Trace Output Stopped Working

2007-03-16 Thread Paul Whitelock
Just tried re-installing the Flash Player Debug version and no luck :-( Paul --- In flexcoders@yahoogroups.com, Paul Whitelock [EMAIL PROTECTED] wrote: No, I'm on a PC. Flex Builder connects to the SWF and I can set breakpoints so I don't think there's a problem with the Flash Player but

Re: [flexcoders] Re: Trace Output Stopped Working

2007-03-16 Thread Clint Tredway
How are you trying to view the trace outputs? On 3/16/07, Paul Whitelock [EMAIL PROTECTED] wrote: Just tried re-installing the Flash Player Debug version and no luck :-( Paul --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Paul Whitelock [EMAIL PROTECTED] wrote: No, I'm

RE: [flexcoders] tutorials for writing custom classes

2007-03-16 Thread Stephen Gilson
There are several places that you can start. From the Flex Dev Center, try the 4 Quickstarts on creating components: http://www.adobe.com/devnet/flex/ From the doc, there is an entire book on the subject: http://livedocs.adobe.com/flex/201/html/Part3_CreateComps_135_1.html Stephen

[flexcoders] Error after 2.0.1 update

2007-03-16 Thread Sean Sell
I just updated my flex builder installation to 2.0.1 (trying to get Flex Automation working) now I have 27 errors all for the same thing: SeverityDescriptionResourceIn FolderLocationCreation Time Id 21172: Definition mx.binding:RepeaterComponentWatcher could not be

[flexcoders] Re: Trace Output Stopped Working

2007-03-16 Thread Paul Whitelock
Through the console in Flex Builder. I've been using Flex Builder since about August of last year and this is the first time that I've had a problem with the trace statement not working. It's especially odd that it's happened two days in a row now. Paul --- In flexcoders@yahoogroups.com, Clint

[flexcoders] Re: Apollo (Should Adobe Keep the Name)

2007-03-16 Thread Rich Tretola
Due to a poor service I had to trash the original poll that was posted last night. At the time, the vote was 31 yes and 5 no. If you voted yesterday, please post a new vote today. http://blog.everythingflex.com/2007/03/15/apollo-the-great-debate/ On 3/15/07, Rich Tretola [EMAIL PROTECTED]

Re: [flexcoders] Runtime Memory Problems

2007-03-16 Thread slangeberg
Only after I hit a saturation point (Around 2.5Meg) would it Garbage Collect. My machine has 2Gig of Ram. You're worried about a Flex app using 2.5MB memory? That's nearly nothing. I've seen apps use upwards of 100M, and that's still not much compared to 2GB. If you look at the articles

[flexcoders] Re: Simple form submit example

2007-03-16 Thread nasawebguy
According to Ben Forta this is what I need. 1) Create a ColdFusion CFC method which accepts a record to insert, either a struct with properties or just a list of arguments. DONE 2) Define a mx:RemoteObject connection to the CFC. DONE 3) Create your form in Flex. The click event on the form

Re: [flexcoders] memory keeps increasing when RemoteObject is used

2007-03-16 Thread Rich Tretola
I have found that the FDS server is greedy and it will take as much memory as you have to offer. For example: I have an application that shows 300 mb of ram being used by my Firefox browser on Windows XP with 2 gb of machine ram. The same application runs at only 90mbs of ram on a Windows XP

[flexcoders] Apollo (Should Adobe Keep the Name)

2007-03-16 Thread Rich Tretola
As we all know Apollo is the code name for the upcoming Adobe desktop runtime. Many developers including myself feel very strongly that the product should keep the name Apollo as its release name. Please answer the single question survey below to let Adobe know how you feel. It will take you

RE: [flexcoders] Runtime Memory Problems

2007-03-16 Thread Alex Harui
GC is opportunistic. This means it does not run all of the time. It tends to be triggered by allocating memory instead of freeing it, so watching an idle app will almost never result in GC. A good test is to cycle between two images 1000's of times and see if memory usage is unbounded.

[flexcoders] filter control panel using slider and radio button

2007-03-16 Thread benny_flex
I used http service to import my xml data and used a tile list to show them with images. Now I'm trying to make a filter panel that uses a slider and radio buttons, the same style like the demo flex store. Can you tell me how to approach this I have all the named data in my xml but don't know

[flexcoders] filter control panel using slider and radio button

2007-03-16 Thread benny_flex
I wanted to ask you guys if you can help me on one area that I've been stuck and trying to figure out. I used http service to import my xml data and used a tile list to show them with images with prices. Now I have made a filter panle that uses a slider and radio buttons for various options,

[flexcoders] Can we scroll two or more datagrid at the same time?

2007-03-16 Thread tang81285
Hi, All, Now I have two datagrid which have hscroll bar both, is it possible for me to assign a scroll bar to both datagrids? so that I can always see the same data, while scrolling on both levels? Thanks.

[flexcoders] My first Flex experiment. Styling weirdness.

2007-03-16 Thread Matthew Hayes
Hello all, I built my first Flex page the other day. I must say, everything went really smoothly except for one thing. I was trying to style a ToggleButtonBar. I even got the styling code from the Style Explorer app... where it seemed to work just fine. Here's the code:

[flexcoders] Re: How to style through CSS HTML in RichTextEditor???

2007-03-16 Thread maikelsibbald
Still not working for me, do you got a working sample online? --- In flexcoders@yahoogroups.com, John Wilker [EMAIL PROTECTED] wrote: Here's how I did it. I've got an RSS feed reader and wanted to be able to see the links in the body. it's not in CSS though. in my init() function.

[flexcoders] Re: VBox mouseOut: calls the function before actually mousing out?

2007-03-16 Thread ai.destin
--- In flexcoders@yahoogroups.com, David Clark [EMAIL PROTECTED] wrote: I think that you are seeing two different things that you probably are not expecting. Firstly, the controls inside the VBox will also raise mouseOut event and these will bubble up to your handler on the VBox. Secondly,

[flexcoders] Re: Trace Output Stopped Working

2007-03-16 Thread Paul Whitelock
I think I've figured out how to fix the problem. I first quit Eclipse and deleted the .metadata folder in my workspace after first making a copy of it. Next I restarted Eclipse and imported my project (Eclipse was reset to it's default workspace without the metadata). I tried debugging the project

[flexcoders] ControlBar on Panel not positioned correctly when added from ActionScript

2007-03-16 Thread scott_flex
This should be simple but i'm fighting the position of a ControlBar that's on a Panel control when add via actionscript, not mxml. The control bar is not correctly displayed at the bottom of the panel. IE... if the other child components cause the scroll bars to appear, I have to scroll to

[flexcoders] Re: Simulating clicking the X of a TitleWindow

2007-03-16 Thread Derrick Grigg
Have the window dispatch the close event, you can do this from anywhere, you just need a reference point to the title window you want to dispatch the event. ie. in the code inside the TitleWindow instance var e:Event = new Event(Event.CLOSE); //parent is a reference to the parent title window

[flexcoders] xml document not well-formed?

2007-03-16 Thread Greg Morphis
I'm trying to load XML data into a list.. I can see the data in the Eclipse Console and it looks well-formed to me.. locations default locationid4131/locationid cityFootown/city stateidAL/stateid location123 Hwy, Footown,

[flexcoders] O'Reilly's Programming Flex 2 book

2007-03-16 Thread Merrill, Jason
Does anyone have this book yet? O'Reilly Press Programming Flex 2: The Comprehensive Guide to Creating Rich Media Applications with Adobe Flex by Kazoun, Lott (watch the wrap) http://www.amazon.com/Programming-Flex-Comprehensive-Creating-Applicatio

Re: [flexcoders] Wondering why ArrayUtil.getItemIndex() loops through Array Items instead of using Array.indexOf()

2007-03-16 Thread Troy Gilbert
And furthermore, what's the point of having that method? I would assume the point of a util function would be to aggregate several common steps, but it seems to me like they just changed name? Array.indexOf() == ArrayUtil.getItemIndex() (functionality-wise) So, what's the deal? Troy. On 16

RE: [flexcoders] Cairngorm: When / why override clone in Events

2007-03-16 Thread Piotrowski, John
Sean, I recently had a project that I had to implement the Clone Method when defining a custom cairngorm event. I downloaded the source code to the flex 2 Cairngorm store and looked at how they were doing the custom events. In that project the clone event was simply creating a new instance

[flexcoders] FDS Configuration

2007-03-16 Thread mister.kotter
I have the following configuration: I am developing a multi-tiered J2EE application using Flex, Hibernate, and Spring. I am using FDS and have it configured to talk to the middle tier through AMF. Everything is deployed in an EAR file and the Flex web application and the FDS configurations are

[flexcoders] Passing different dataFields to the same itemRenderer component

2007-03-16 Thread missgiggygirl
Hello helpful people! :) I have a datagrid that is populated by an external XML file. Some of the cells have various icons in them. I am using an itemRenderer to insert an image in the first column. However, I do not know how to use this same itemRenderer/component for the other images,

Re: [flexcoders] Viewstack and passing variables to children

2007-03-16 Thread April Rosequist
Gordon, This is EXACTLY what I was looking for to get the button to link to the other child page. Thank you s much for posting that. Doug, I see what you are saying, but I'm so new to Flex and I didn't come over from Flash Dev. so I'm really not that hip on ActionScript. If someone

[flexcoders] Fascinating problem hiding columns in a DataGrid

2007-03-16 Thread Peter Demling
While a problem for me, I find the following behavior fascinating and inexplicable; so here's a good challenge for any Flexlock Holmes out there (full code is below - 26 lines, fairly simple): I have a DataGrid that's using a RemoteObject as its dataProvider, and I initialize the 'visible'

[flexcoders] Re: O'Reilly's Programming Flex 2 book

2007-03-16 Thread Paul Whitelock
Amazon sent me a notification recently that the publication date has changed to May 15th. Paul --- In flexcoders@yahoogroups.com, Merrill, Jason [EMAIL PROTECTED] wrote: Does anyone have this book yet? O'Reilly Press Programming Flex 2: The Comprehensive Guide to Creating Rich Media

RE: [flexcoders] Re: O'Reilly's Programming Flex 2 book

2007-03-16 Thread Merrill, Jason
Well, that bites - their Web sites still says it was published on March 1st. Post again when you get the book and let us know what you think. :) Jason Merrill Bank of America Global Technology Operations Learning Leadership Development eTools Multimedia Team

[flexcoders] Re: xml document not well-formed? [SOLVED]

2007-03-16 Thread Greg Morphis
got it On 3/16/07, Greg Morphis [EMAIL PROTECTED] wrote: I'm trying to load XML data into a list.. I can see the data in the Eclipse Console and it looks well-formed to me.. locations default locationid4131/locationid cityFootown/city

[flexcoders] CursorManager, PopupManager - internal state across module load?

2007-03-16 Thread david_mccraw123
Hi, I've run into an issue where, after loading a module, calling CursorManager.setBusyCursor() inside that module causes an exception (Error #1009: Cannot access a property or method of a null object reference). The same happens with Alert.show (in PopupManager.createPopup). First I moved the

RE: [flexcoders] FDS to CF RemoteObject

2007-03-16 Thread Darren Houle
Probably the easiest thing to do is to setup a crossdomain.xml file on your CF server. This should be setup to allow SWFs hosted on your FDS server to make connections to CF. I didn't think I needed a crossdomain file if the FDS server and CF server were running on localhost:8700 and

[flexcoders] changing backgroundColor of mx:List based on data...

2007-03-16 Thread Greg Morphis
I've got a List being populated by XML data. One of the returned items is c_schedulestatusid which is either -1, 0, or 1 I need to set the backgroundColor based on the different values c_schedulestatusid I know about the mx:HBox width=100% height=20 backgroundColor={data.c_schedulestatusid == 1 ?

[flexcoders] Re: Simulating clicking the X of a TitleWindow

2007-03-16 Thread qnotemedia
I had to change it to CloseEvent rather than Event, but yeah, that worked. Thanks.

Re: [flexcoders] about :New Project: FlexCRUD -- Create Update Delete for Flex/amfphp/cairngorm

2007-03-16 Thread Yiðit Boyar
thanks; i will check and return a feedback... - Original Message From: Douglas McCarroll [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, March 15, 2007 3:01:12 AM Subject: Re: [flexcoders] about :New Project: FlexCRUD -- Create Update Delete for Flex/amfphp/cairngorm

[flexcoders] Re: Runtime Memory Problems

2007-03-16 Thread One Person
I might agree with that, but in Firefox this is not an issue. Firefox releases memory on a regular basis while IE7 does not seem to release until I exceed the physical memory on the machine. BTW: I posted the wrong sizes in my original email. The images we are dealing with are 256Meg to 600Meg

[flexcoders] Re: Fascinating problem hiding columns in a DataGrid

2007-03-16 Thread sanjaypmg
Hi, I have done the same using remote object but didnt face this sort of problem. I am making the columns visible/invisible on the basis of value coming frm the database... Thanks Sanjay --- In flexcoders@yahoogroups.com, Peter Demling [EMAIL PROTECTED] wrote: While a problem for me, I

[flexcoders] Re: memory keeps increasing when RemoteObject is used

2007-03-16 Thread vargaandrea
Thanks, I've tried in IE under wine, and it uses less memory, then in Firefox (not under wine), so you are right, but my problem is not the amount of memory used, at least not when the application starts. The problem is, that it takes more and more memory, so if I leave even this little test

RE: [flexcoders] Re: Fascinating problem hiding columns in a DataGrid

2007-03-16 Thread Michael Imhoff
Hi Peter, I recently posted about a very similar issue that might be of some help. Please take a look at http://michael.omnicypher.com/2007/03/issues-with-datagrid-column-visibility .html and let me know if that does the trick. Hope this helps, Michael _ From:

RE: [flexcoders] Re: Datagrid Button Renderer Performance

2007-03-16 Thread Jason Hawryluk
I haven't changed it as it works and I have plenty of other stuff to be getting on with! Is this the response that we should all expect from someone asking questions? I took time out of *my* day to lend a helping hand. So that you might learn from my experience. I pointed out something that did

RE: [flexcoders] Re: Runtime Memory Problems

2007-03-16 Thread Alex Harui
I saw another email yesterday saying that there are some known bad behaviors with IE7 that are being investigated... From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of One Person Sent: Friday, March 16, 2007 10:26 AM To:

[flexcoders] FlexFactory/FDS Inconsistencies

2007-03-16 Thread Harris Reynolds
Hi there. I am working on a FlexFactory implementation that is capable of creating objects that act as remote services. In the documentation it states that, Each factory instance can add configuration attributes that are used when that factory instance is defined, as the following example

RE: [flexcoders] Re: Datagrid Button Renderer Performance

2007-03-16 Thread Alex Harui
updateDL gets called incase you want to change the font color based on the selection highlight. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of durnelln Sent: Friday, March 16, 2007 5:40 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] using itemRenderer with List, how can I set the icon?

2007-03-16 Thread Greg Morphis
Normally List has a iconFunction, I'm using an itemRenderer to give the list items a custom background color.. When I do this the icon doesn't show.. is there anyway around this? Thanks

[flexcoders] Re: changing backgroundColor of mx:List based on data...[SOLVED]

2007-03-16 Thread Greg Morphis
nevermind.. I used the database to do the calculation and included that in the XML.. easier that way I figure On 3/16/07, Greg Morphis [EMAIL PROTECTED] wrote: I've got a List being populated by XML data. One of the returned items is c_schedulestatusid which is either -1, 0, or 1 I need to set

[flexcoders] Simple design question

2007-03-16 Thread André Rodrigues Pena
Hi all, I know how to create visual components as MXML files. My question is, can I create a non-visual component using MXML files? Let's put an example: I want to create a non-visual component to wrap my web-services and handlers. I know I could do it with AS3. But can I do it with MXML? thanks

RE: [flexcoders] Re: Trace Output Stopped Working

2007-03-16 Thread Tracy Spratt
The flash player would have been my first guess too. Hit this site just to be sure. http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15507 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Whitelock Sent:

RE: [flexcoders] DataGrid in Action Script

2007-03-16 Thread Tracy Spratt
Here is an example: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=552 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kumar Sent: Friday, March 16, 2007 1:49 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Simple design question

2007-03-16 Thread Tracy Spratt
I wish we had a faceless mxml component specifically for this kind of use. I use an Application tag to implement my functionality, then use that component as the root tag of the application. Some folks call this the code behind technique. You could also use a canvas, which is the

[flexcoders] FDS/CF behind IIS Still?

2007-03-16 Thread Travis Young
With Flex 1.5, Macromedia strongly advised to use IIS (or similar) and connect to Flex and CF via an ISAPI gateway. This worked well and leveraged IIS for security models and SSL. It looks like FDS (for data services at least) does not work in this manner and the Flex app talks directly to

[flexcoders] Re: Simple design question

2007-03-16 Thread Paul DeCoursey
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: I wish we had a faceless mxml component specifically for this kind of use. We do, it's IMXMLObject.

[flexcoders] Re: ControlBar on Panel not positioned correctly when added from ActionScript

2007-03-16 Thread scott_flex
I figured out my issue... I needed to add my ControlBar to the panel in the initialize event handler not the creation complete. Not sure exactly why but when i add the control bar in the initialize event handler it correctly positions the control bar to the bottom of my panel. --Soctt ---

Re: [flexcoders] Simple design question

2007-03-16 Thread André Rodrigues Pena
Thanks for the answer Spratt I'd like to create a service layer wrapping more than onde HTTPService components into a single MXML file. Can you explain this phrase another way: I use an Application tag to implement my functionality, then use that component as the root tag of the application.

[flexcoders] Re: Simple design question

2007-03-16 Thread Paul DeCoursey
Implement IMXMLObject --- In flexcoders@yahoogroups.com, André Rodrigues Pena [EMAIL PROTECTED] wrote: Hi all, I know how to create visual components as MXML files. My question is, can I create a non-visual component using MXML files? Let's put an example: I want to create a non-visual

Re: [flexcoders] changing backgroundColor of mx:List based on data...

2007-03-16 Thread Brendan Meutzner
Using an ItemRenderer instance, on data change you can change the background color style for the renderer using a method which would catch one of the 3 instances... Brendan On 16 Mar 2007 09:58:34 -0700, Greg Morphis [EMAIL PROTECTED] wrote: I've got a List being populated by XML data.

[flexcoders] Re: Simple design question

2007-03-16 Thread JWOpitz
If you use the Cairngorm Microtecture then you do use a 'faceless' MXML based component everytimee: your subclasses of the FrontController. The same thing applies to things like validators which are not view-type classes. You instantiate them via mxml oftimes but they are not included in the

[flexcoders] Re: Simple design question

2007-03-16 Thread JWOpitz
I forgot to add that things like validators do implement IMXMLObject. However FrontController in Cairngorm 2.1 does not and still works fine. --- In flexcoders@yahoogroups.com, JWOpitz [EMAIL PROTECTED] wrote: If you use the Cairngorm Microtecture then you do use a 'faceless' MXML based

[flexcoders] select some items only

2007-03-16 Thread metalbeard
Hi There, Is there any way that we can disable the selection for only some specific items inside a tree. Am trying to make the selectable property of the tree =false when the mouse rolls over the unwanted item then make it ture when it is rolled out but that didn't work. Do you have any ideas?

[flexcoders] Re: select some items only

2007-03-16 Thread Paul DeCoursey
I have the same problem except in a datagrid. I eventually gave up because I could not find a solution. I'll admit I didn't spend much time on it, a few hours maybe. My initial idea was that I could preventDefault on the itemClick event and that would stop it from being selected, but that didn't

[flexcoders] using VideoEvent.COMPLETE

2007-03-16 Thread Seizo Mazer
Hi everyone. My application is working almost the way that I want it to but I'm having some difficulty. I have a datagrid, which has some song information, and a videodisplay. The video clip is shorter than the song so when I play both together, I want the song to stop when the video clip

[flexcoders] question about colopicker dropdown

2007-03-16 Thread camlinaeizerous
I'm currently working on a miniature sized flex app and I have a couple color pickers however there is a issue of them being cut off by the applications boundaries. Is there a simple way to spawn the popup at a different location then underneath the button?

Re: [flexcoders] Binding - Fire a function on variable change (noob)

2007-03-16 Thread John Mark Hawley
Why not just do something like this: mx:Script ![CDATA[ [Bindable] public var numberToDisplay:Number; private function formatBalance( balance:Number ) :String { // return formatted string here } ]] /mx:Script mx:Label id=NumberDisplay

[flexcoders] Re: Apollo (Should Adobe Keep the Name)

2007-03-16 Thread shawn.gibson
Absolutely, Apollo was the God of Light, and he was strongly associated with the higher arts, as opposed to the baser arts of Dionysus (I'll leave the analogues up to you...). Apollo is the best name ever for what promises, in my limited knowledge so far, to be as important to the web and

[flexcoders] Please give me a list of EVERY book I should read on CF, Flex and SQL/db design

2007-03-16 Thread shawn.gibson
I want to learn this stuff as much as possible. Please tell me I can do so without Java LOL. If you had $500 to spend for someone on the above topics, what books would you choose? Yes, I sold my mother's pancreas to come up with the money, but that's another story... I'm printing the entire

RE: [flexcoders] using itemRenderer with List, how can I set the icon?

2007-03-16 Thread Alex Harui
Should be there if you extended ListItemRenderer. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent: Friday, March 16, 2007 11:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] using itemRenderer with List, how

RE: [flexcoders] Best way to graphical assets into Flex

2007-03-16 Thread Alex Harui
Code in Player 8 (and earlier) SWFs cannot be easily accessed from Flex. The only way to communicate is via LocalConnection. If you can port to the CS3 release of Flash Authoring. Then create a SWC and you have a class that you can use in Flex. From:

RE: [flexcoders] Re: Runtime Memory Problems

2007-03-16 Thread Matt Chotin
What I've heard about IE is that unfortunately even though the Player has released the memory it needs, IE often does not, so your system manager will show IE taking up lots more memory than the Player itself is using. If you check the flash.system.System.totalMemory property you'll see what the

RE: [flexcoders] Passing different dataFields to the same itemRenderer component

2007-03-16 Thread Alex Harui
You need to implement IDropInListItemRenderer (and the listData property). The listData will give you the column that owns you. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of missgiggygirl Sent: Friday, March 16, 2007 8:37 AM To:

RE: [flexcoders] Can we scroll two or more datagrid at the same time?

2007-03-16 Thread Alex Harui
You can listen for scroll events and set the other DG's horizontalScrollPosition as needed. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tang81285 Sent: Friday, March 16, 2007 1:18 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Cairngorm FrontController

2007-03-16 Thread Shannon
Thanks for throwing me a line, like I said im new... I guess John Mark was one of those guys that never had to ask questions. he's cooler than me for sure. (btw any helpful/ unhelpful/ thoughts/ blasts/ etc are completely appreciated) For the record I would rather not muck with Cairngorm. I

  1   2   >