RE: [flexcoders] Polymorphism help

2008-01-09 Thread Brian Holmes
Change your implementation method to something like. public override function execute(event:Event):void { if( event is LoginEvent ) { var loginEvent : LoginEvent = event as LoginEvent;

[flexcoders] Inspectable metadata tag

2007-12-18 Thread Brian Holmes
Is there a way to specify arrays as part of the Inspectable metadata tag. I'd like to specify that the developer can either use and a 1,0 array or a Y,N array. What I'm trying to do is something akin to: [Inspectable(enumeration="[1,0],[Y,N]")] public var values : Array = [1,0]; Ok

RE: [flexcoders] Re: How do I turn off the funky occurrence highlighting in FB3 Beta 3?

2007-12-13 Thread Brian Holmes
funky occurrence highlighting in FB3 Beta 3? You think you're s smart, don't you? :) --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Brian Holmes" <[EMAIL PROTECTED]> wrote: > > > > Uncheck the Mark Occurances button

RE: [flexcoders] How do I turn off the funky occurrence highlighting in FB3 Beta 3?

2007-12-13 Thread Brian Holmes
Uncheck the Mark Occurances button on the toolbar. Brian.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Thursday, December 13, 2007 11:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders

RE: [flexcoders] How to change the data access option in an existing Flex project

2007-12-13 Thread Brian Holmes
You can edit the .flexProperties file directly. Set up a flex project with the new Data Access Option and then compare the .flexProperties file and you should be able to make a few changes. Brian. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

[flexcoders] defaults.css in a flex library isn't picking up the style changes

2007-11-07 Thread Brian Holmes
Dear FlexCoders, I have a flex library project with custom components and have defined a defaults.css in it to create default styles for my components. However, the styles are NOT getting picked up when I use the swc in a flex project both as a project reference to my library and also as a sw

[flexcoders] classes in packages

2007-11-05 Thread Brian Holmes
Dear FlexCoders, Is there a way to get all the classes that may exist in a package? Thanks for any help, Brian.. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have received this e-mail in error please

RE: [flexcoders] Flex always returns true, how is this possible?

2007-10-04 Thread Brian Holmes
Boolean(event.result) Did you try (event.result as Boolean) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of George Georgiou Sent: Thursday, October 04, 2007 3:24 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex always returns

RE: [flexcoders] jamjar windows

2007-09-27 Thread Brian Holmes
In JamJar http://labs.adobe.com/technologies/jamjar/ When you click on the icons contextual windows pointing back to the icon appear. I'd like to do something similar. Brian.. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sen

[flexcoders] jamjar windows

2007-09-27 Thread Brian Holmes
Anyone know of any code available to create context/tooltip windows like being used in jamjar? Brian.. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have received this e-mail in error please notify the send

RE: [flexcoders] New Project using ColdFusion Flash Remoting Service

2007-09-26 Thread Brian Holmes
George, Pretty sure server side compile only works with Cold Fusion 8. You might want to check the Cold Fusion docs. Brian.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of George Georgiou Sent: Tuesday, September 25, 2007 2:42 PM To: f

[flexcoders] Class Inspector Gadget

2007-09-25 Thread Brian Holmes
I was wondering if there was a way to see if a class has been compiled in at runtime. Or better yet, is there a way to get a list of classes that have been compiled into an application. I'm trying to do a getDefinitionByName() and occasionaly getting not defined errors. Thanks for any response

RE: [flexcoders] localization options in flex 2

2007-09-24 Thread Brian Holmes
for an upcoming project. I can help work out the kinks as I develop this site. Aaron On 9/24/07, Brian Holmes <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: Hi Aaron, As Ben pointed out I'm working on a different way to do localiz

RE: [flexcoders] localization options in flex 2

2007-09-24 Thread Brian Holmes
is left on the project? Are there any existing bugs? I'd really love to get a look at this and see if it's something usable for an upcoming project. I can help work out the kinks as I develop this site. Aaron On 9/24/07, Brian Holmes <[EMAIL PROTECTED] <ma

RE: [flexcoders] localization options in flex 2

2007-09-24 Thread Brian Holmes
Hi Aaron, As Ben pointed out I'm working on a different way to do localization, well, actually I just want to do language translation. A blog entry I wrote about this can be found here http://brianjoseph31.typepad.com/smashedapples/2007/09/sweet-flex-tr-1.h tml And i'm getting a bit further on

RE: [flexcoders] Anyone have any good Flex Projects with sourceCode?

2007-09-20 Thread Brian Holmes
Get involved with community projects. http://code.google.com/p/flexlib/ http://code.google.com/p/flexmdi/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sheriff Sent: Thursday, September 20, 2007 3:23 PM To: flexcoders@yahoogroups.com S

RE: [flexcoders] Re: Anyone seen this effect as Flex module - Accordion Menu

2007-09-20 Thread Brian Holmes
Hey, that's pretty cool. Any chance on releasing the code? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Thursday, September 20, 2007 11:42 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Anyone seen

RE: [flexcoders] Add methods to RemoteObjects with ActionScript

2007-09-18 Thread Brian Holmes
var ro : RemoteObject = new RemoteObject(); var op:Operation = ro.getOperation("myOperationName"); var token : AsyncToken = op.send(); I don't think you create them, once you create a remote object in action script you can just an operation

RE: [flexcoders] Listening for all creationComplete() events

2007-09-18 Thread Brian Holmes
yahoogroups.com Subject: RE: [flexcoders] Listening for all creationComplete() events Capture phase From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Monday, September 17, 2007 8:40 AM To: flexcoders@yahoogroups.com Subje

[flexcoders] Listening for all creationComplete() events

2007-09-17 Thread Brian Holmes
Is there a way to listen for all creationComplete events across an application? Brian.. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have received this e-mail in error please notify the sender by return

RE: [flexcoders] How can I get the Accordion headerRender instances

2007-09-14 Thread Brian Holmes
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Friday, September 14, 2007 3:47 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] How can I get the Accordion headerRender instances @Kyle, thanks, that's what I was looking for. One quest

RE: [flexcoders] How can I get the Accordion headerRender instances

2007-09-14 Thread Brian Holmes
er (ie if you wanted header renderers that always converted the labels to uppercase or something). Or if you just want to get access to the labels, that's simply the label property of each child, so looping over the children will get you what you need. Doug On 9/14/07, Brian Holmes <[

[flexcoders] How can I get the Accordion headerRender instances

2007-09-14 Thread Brian Holmes
I'm trying to extend the Accordion class, I'm listening for creationComplete, and when it fires I'd like to loop over the headers and pull off the labels, but I can't seem to get a handle on them. I've tried looping over the children() but I need to get the actual headerRenderer instance. I'm willi

RE: [flexcoders] How to play a sound in flex wihtout embeding it in class first?

2007-09-07 Thread Brian Holmes
Ozren, Not sure on this, but I happened to be looking at the SoundEffect and flash.media.Sound classes yesterday. On the Sound class is a url property and it looks like you could use it to point to an mp3 and download it. Also appears you can buffer it and start playing before it's completely dow

RE: [flexcoders] Re: Populating XMLListCollection and sending it to a Datagrid

2007-09-06 Thread Brian Holmes
dg2data.children(); you might wanna look at http://www.adobe.com/devnet/flex/quickstart/accessing_xml_data/ brian.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of its_llpj Sent: Thursday, September 06, 200

RE: [flexcoders] Populating XMLListCollection and sending it to a Datagrid

2007-09-06 Thread Brian Holmes
if you know the name of the child you want to loop over you can access it like dataprovider="{myXmlListCollection.myChildElement}" otherwise, you can usually use something like dataprovider="{dg2data.getChildern()}" which returns an XMLList brian..

RE: [flexcoders] Re: loading images at runtime

2007-09-06 Thread Brian Holmes
look into using a runtime shared libraries ( RSL ) or use the url to your image somebody smarter than me may have another option. somebody? brian.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sk_acura Sent: Thursday,

RE: [flexcoders] Load MXML at run time?

2007-09-06 Thread Brian Holmes
We attempted this but found it much easier to manage by using but if you must, look at the isapi plugins on adobe labs, or livecycle, store the mxml strings in the db, then compile and serve the resulting swf with your web server. brian.. From: fle

RE: [flexcoders] Can't select next datagrid item following one that is removed.

2007-09-05 Thread Brian Holmes
have you tried just incrementing the selectedIndex? dg.selectedIndex = dg.selectedIndex + 1; brian. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mossdude Sent: Wednesday, September 05, 2007 3:31 PM To: flexcoders@yahoogr

RE: [flexcoders] Re: Grabbing ID from one datagrid to populate a second.

2007-09-05 Thread Brian Holmes
again! --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Brian Holmes" <[EMAIL PROTECTED]> wrote: > > > > > > look into the data grid selected item property. You should be able to > reference the currently

RE: [flexcoders] Grabbing ID from one datagrid to populate a second.

2007-09-05 Thread Brian Holmes
look into the data grid selected item property. You should be able to reference the currently seleted row and depending how you have your data reference the ID something like myDataGrid.selectedItem.ID or myDataGrid.selectedItem["ID"] brian..

RE: [flexcoders] ResourceBundle - Problem with ActionScript code

2007-09-05 Thread Brian Holmes
essed via the ResourceManager, not through vars of type ResourceBundle. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Wednesday, September 05, 2007 9:57 AM To: flexcoders@yahoogroups.com Subjec

RE: [flexcoders] ResourceBundle - Problem with ActionScript code

2007-09-05 Thread Brian Holmes
reference the resource bundle by key instead of the getString() such as rb.content["txName"]; you can read more here: http://livedocs.adobe.com/labs/flex/3/html/wwhelp/wwhimpl/common/html/ww help.htm?context=LiveDocs_Book_Parts&file=l10n_033_1.html Hope that helps,

RE: [flexcoders] Skin sources?

2007-08-31 Thread Brian Holmes
you couldn't have looked to hard http://www.scalenine.com/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Friday, August 31, 2007 12:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Skin sources? Can a

RE: [flexcoders] Re: Effect.EFFECT_START listener unable to pause() effect

2007-08-28 Thread Brian Holmes
In total agreement Ben, if you listen for an EFFECT_START event you should be able to pause() the effect. I can't think of many scenarios where you listen to effect events and don't want to manipulate the effect. An explanation why this is not possible from someone who knows would be awesome.

RE: [flexcoders] Flex Builder issues with large projects

2007-08-28 Thread Brian Holmes
Hi Lach, I've experienced this exact same thing. I've never really been able to pin down the cause. FB seems to build faster at times than other times. It could be my setup just as well as FB. Breaking the projects up and closing them does help a bit. Using ant helps sometimes. Using RSL's helps

RE: [flexcoders] Get week number from given date?

2007-06-06 Thread Brian Holmes
http://proto.layer51.com/d.aspx?f=81 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Wednesday, June 06, 2007 8:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Get week number from given date? Is there a w

RE: [flexcoders] Get week number from given date?

2007-06-06 Thread Brian Holmes
I'm also looking for this exact same answer From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Wednesday, June 06, 2007 8:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Get week number from given date?

[flexcoders] DateChooser has blown my Code Coloring

2007-06-06 Thread Brian Holmes
I have an mxml with a DateChooser control with the disabledRanges set and it blows my code coloring for the entire file. Take the disabledRanges out and it's ok. It's kind of annoying but otherwise work-around-able, But I was wondering if other people have noticed this and or if it's a known bug?

RE: [flexcoders] Convert Non-server Flex Project to Server Project

2007-05-07 Thread Brian Holmes
Don't know if it works for a basic flex project, but I know that with other types of projects I've done a right click on the project and select Apply Flex Nature From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jurgen Beck Sent: Monday, M

[flexcoders] REMOTE_USER

2007-05-03 Thread Brian Holmes
Is there any way to get info about the remote user from flex? Specifically I'm looking for the cgi.REMOTE_USER as it comes through in Cold Fusion. Thanks, Brian. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If

RE: [flexcoders] One Singleton many application

2007-04-26 Thread Brian Holmes
If you have two applications that need to share the same variable, look into creating a RSL where the singleton can exist safely and everyone knows where to go get it. If you're using an application shell and loading modules you can create a static class or variable to house the singleton.

RE: [flexcoders] Defining the DSN in a Gateway When using Flex

2007-04-25 Thread Brian Holmes
Just set an application level variable in your Application.cfc onApplicationStart From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kyle Hayes Sent: Wednesday, April 25, 2007 8:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] De

RE: [flexcoders] Call by value instead of Call by reference when copying ArrayCollection

2007-04-19 Thread Brian Holmes
No loop required. Just create a new array collection with the source of the old array collection. arrayColletion2 = new ArrayCollection(arrayCollection1.source); b.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of manfred.maierho

[flexcoders] Consulting Recommendations

2007-04-12 Thread Brian Holmes
I was wondering if anybody has had any good or bad experiences with flex consultants. We need to bring one in to my company for training and I was hoping to get some recommendations from ya'll. Thanks b. *** The information in this e-mail is confidential and intended solely for the indivi

RE: [flexcoders] Would you like to debug? "No" causes browser to crash.

2007-04-05 Thread Brian Holmes
Had that problem using firefox, switched to using IE as my debugging browser and to my surprise it stopped. Good luck, b.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Wednesday, April 04, 2007 10:23 AM

RE: [flexcoders] "implements", "include", MX and AS...

2007-04-04 Thread Brian Holmes
Add import pmco.interfaces.IActionOwner in your code block b.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Wednesday, April 04, 2007 1:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] "implemen

RE: [flexcoders] mx.utils.ArrayUtil missing in AS3 project

2007-04-04 Thread Brian Holmes
Correct, You have to manually add the flex libraries in an AS3 library project if you want to use them. Properties > Build Path > Library Path > Not sure what library it is, but probably the flex.swc, framework.swc or utilities.swc that would be included in the flex framework located at

[flexcoders] FlexBuilder, Eclipse and Microsoft Team Foundation Server

2007-04-04 Thread Brian Holmes
Does anyone have any experience using flexbuilder or eclipse with a plugin that connects to Team Foundation Server. Such as: http://www.teamprise.com/index.html I have to integrate our flex development with our .NET developers and my boss would like to use our Existing Team Foundation Serve

RE: [flexcoders] Flex and responsiveness

2007-04-04 Thread Brian Holmes
Edit your flexbuilder.ini file to up the ram available to it (mine's at . Did the trick for me. Also, having project dependencies seems to slow it down, you can switch up your build order and uncheck automatic builds. FlexBuilder.ini -vmargs -Xms256M -Xmx768M -XX:MinHeapFreeRatio=20

RE: [flexcoders] Eclipse Plugin - Debug - An Error has occurred . Please see error log for more

2007-04-03 Thread Brian Holmes
It's referring to the eclipse error log. It should be in the directory where you have eclipse installed. I had a very similar problem and it turned out it was due to the way I had projects installed. My problem was I had a flex project that was referencing two flex library project swf's. I foun

RE: [flexcoders] A question about rsl files and path

2007-04-02 Thread Brian Holmes
When working with applications and flex libraries side by side just include the library as a project. Right click project > properties > Flex Build Path > Library Path > Add Project You then may need to change the build order of your projects to make sure the Library gets built before the

[flexcoders] Cyclical Flex Libary Projects Madness

2007-03-29 Thread Brian Holmes
Are there any issues when referencing multiple Flex Library Projects? Say I have two libraries, Library A and Library B and one flex project. -- Library B references Library A. -- Flex project references both Library A and Library B in the Build Path > Library Path. Does this kind of

RE: [flexcoders] What's your average amount of memory usage in Eclipse?

2007-03-29 Thread Brian Holmes
exact same (768MB), and it's been running much better! So, no crashes, here. You may want to look at all your installed plug-ins. They don't always play nice. I had most problems with a PHP plug-in, but it may have just been a combination of them! -Scott On 29 Mar 2007 08:08:26 -0700, B

[flexcoders] What's your average amount of memory usage in Eclipse?

2007-03-29 Thread Brian Holmes
I'm using the FB plugin and have had crashes occurring in Eclipse regularly over the last few days, With weird erros about not being able to open workspaces and what nots. I upped my memory to 768m in eclipse.ini and was wondering what other people's javaw.exe is running at in memory usage?

[flexcoders] Flex Library Project??

2007-03-27 Thread Brian Holmes
Is it possible to put mxml files in a flex library project? *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have received this e-mail in error please notify the sender by return e-mail delete this e-mail and

RE: [flexcoders] Flex Builder

2007-03-27 Thread Brian Holmes
I use the plugin as well for the same reason as Clint. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Barrett Sent: Tuesday, March 27, 2007 6:27 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex Builder Hi, I have a

[flexcoders] The last Date I'll ever go on

2007-03-23 Thread Brian Holmes
I'm having trouble encoding a date for use in a WebService. If I take the date out, the webservice call works. When I put it in, it breaks. Has anybody had a similar experience? I'm assuming this is a formatting problem, and have tried formatting it a hundred different ways. The actual s

[flexcoders] How do i pass an array to a .NET webservice via soap???

2007-03-21 Thread Brian Holmes
I have to connect to a .NET webservice. Within the paramaters of what I have to pass it is an array of elements. For example Bob Jimmy George Well, you get the idea. If I take the array of elements out it connects. I'm using service capt

RE: [flexcoders] Can't get Subclipse to work in Flex Builder

2007-03-14 Thread Brian Holmes
I just had this same problem. I just gave up with FlexBuilder and went to the latest version of Eclipse, the Flex Builder plugin and subclipse and it worked. Brian.. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wwwpl Sent: Monday, March

RE: [flexcoders] FlexBuilder and Subclipse

2007-03-14 Thread Brian Holmes
of Eclipse (compared to the latest and greatest available from eclipse.org). Troy. On 3/14/07, Carlos Rovira mailto:[EMAIL PROTECTED]> > wrote: I recommend you to switch to subversive.. .it's a plugin that works quite well :) 13 Mar 2007 13:46:57 -0700, Brian Holmes < [

RE: [flexcoders] FlexBuilder and Subclipse HELP!

2007-03-14 Thread Brian Holmes
ersions of Eclipse and Flex are you using? If you're trying to install Subversive 1.2, I do believe you need Eclispe 3.2 version. I'm using Flex2.0.1, Eclipse 3.2 and Subversive 1.2 in my development and they're working ok. Xia On 14/03/07, Brian Holmes <[EMAIL PROTECTED]&

RE: [flexcoders] FlexBuilder and Subclipse HELP!

2007-03-14 Thread Brian Holmes
07 3:30 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] FlexBuilder and Subclipse I recommend you to switch to subversive...it's a plugin that works quite well :) 13 Mar 2007 13:46:57 -0700, Brian Holmes <[EMAIL PROTECTED] >: Hard drive crashed this morning. Just reinstalled FlexB

[flexcoders] FlexBuilder and Subclipse

2007-03-13 Thread Brian Holmes
Hard drive crashed this morning. Just reinstalled FlexBuilder and now I can't get Subclipse to install. Says I need Subclipse (1.2.0) requires plug-in "org.eclipse.core.resources (3.2.0)", or later version. The org.eclipse updater says it's all up to date. And doesn't need anything else

RE: [flexcoders] Re: .NET Webservices

2007-03-12 Thread Brian Holmes
[mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Friday, March 09, 2007 4:12 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: .NET Webservices Thanks Scott, I guess the stuff I have to call is just a lot more complicated and I haven't quite gotten the format down. You

[flexcoders] Converting string to base64Binary

2007-03-09 Thread Brian Holmes
Does anybody have an example of how I can do this? Everything I've tried blows up. Thanks, b.. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have received this e-mail in error please notify the sender by

RE: [flexcoders] Re: .NET Webservices

2007-03-09 Thread Brian Holmes
on faultHandler(event:FaultEvent):void { Alert.show(event.toString(), "WebService Error"); { --- In flexcoders@yahoogroups.com, "Brian Holmes" <[EMAIL PROTECTED]> wrote: > > Does anyone have any examples they'd be willing to share or point me to > of con

[flexcoders] .NET Webservices

2007-03-09 Thread Brian Holmes
Does anyone have any examples they'd be willing to share or point me to of connectin to .NET webservices with or without soap headers, preferably both. It'll be greatly appreciated. Thanks, b.. *** The information in this e-mail is confidential and intended solely for the individual or enti

RE: [flexcoders] SWFLoader: WHEN can I access SystemManager.application["myContent"]?

2007-03-09 Thread Brian Holmes
I've listened for the SystemManager.applicationComplete event before to get a valid reference to it. b.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Thursday, March 08, 2007 7:02 PM To: flexcoders@yahoogroups.com

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

2007-03-01 Thread Brian Holmes
;t help for some reason either... so we're stumped :( On 2/27/07, Brian Holmes <[EMAIL PROTECTED]> wrote: set the dragMoveEnabled="false" on your datagrid a+ brian.. _

RE: [flexcoders] Transitions Explanation

2007-02-28 Thread Brian Holmes
The problem is a timing issue. view states define what and how to change states transitions define which order visual changes occur during a state change You must still take into account the timing of when things are rendered to the screen On Your problem the button was getting rendered on the

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

2007-02-28 Thread Brian Holmes
editable="false" From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robin Burrer Sent: Monday, February 26, 2007 6:08 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How do I prevent the user from selecting text in a text area componen

RE: [flexcoders] DataGrid to Xml

2007-02-28 Thread Brian Holmes
Just as simple: lose the array As opposed to Brian... -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jaap Cammeraat Sent:

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

2007-02-28 Thread Brian Holmes
I'd imagine there is something wrong with the logic. The way I think about filterFunction is that it inspects each Item in a collection and says yes or no. If it's returning null, the evaluation is flawed. Brian.. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROT

RE: [flexcoders] Storing / retrieving rich text

2007-02-28 Thread Brian Holmes
You need to escape the xml formatting before sending it to the client. In cold fusion you could use the XMLFormat() function so if you're using cf, just wrap that around your return, or find a similar function for the back end lang you're using. Brian.. -Original Message- From: flexcode

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

2007-02-28 Thread Brian Holmes
"Exactly what you need to do" sounds a lot like what the filter and sort functions can do for you, with out all that extra work. I'd check those out first. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of e_baggg Sent: Tuesday, February 27, 2007

[flexcoders] disabling COPY in drag/drop operations

2007-02-27 Thread Brian Holmes
set the dragMoveEnabled="false" on your datagrid a+ brian.. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have received this e-mail in error please notify the sender by return e-mail delete this e-mai

RE: [flexcoders] Are other developers hesitant to extend existing classes in Flex?

2007-02-22 Thread Brian Holmes
I've had a somewhat different experience extending the framework than the people pushing on to this thread, I haven't gotten any headaches, and actually use extending the framework to learn the framework, perhaphs What I've been doing is much simpler than what you guys have been doing, but I do hav

RE: [flexcoders] Expand All tree nodes

2007-02-22 Thread Brian Holmes
Check out the Flex QuickStarts "Working with Trees" http://www.adobe.com/devnet/flex/quickstart/working_with_tree/ B. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ramanamurthy Medarametla Sent: Wednesday, February 21, 2007 5:45 PM To: flex

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

2007-02-22 Thread Brian Holmes
1. Cast the current item as DisplayObject Var myCurrentItem : DisplayObject = ( currentItem as DisplayObject ); 2. Create a point out of the current item x's and y's var point : Point() = new Point(); point.x = myCurrentItem .x; point.y = myCurrentItem.y;

RE: [flexcoders] Re: Tooltips are driving me crazy!

2007-02-21 Thread Brian Holmes
r running 2.0.1 you will run into some bugs, you just updated montass.no to flex 2.0.1 but I dont have the code here at home, so if you interesting I can post it for you twomorrow?! Cato Paus --- In flexcoders@yahoogroups.com, "Brian Holmes" <[EMAIL PROTECTED]> wrote: > >

[flexcoders] Tooltips are driving me crazy!

2007-02-21 Thread Brian Holmes
Does anybody know how to show a tooltip without having to focus on the control? I just want to say "You, Yes You, Component, Show your ToolTip!" b. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have receiv

[flexcoders] Pausing a for loop

2007-02-20 Thread Brian Holmes
Is there any way to pause a for loop? ( or for each loop) I'm looping over an array of UIComponents and would like to apply an effect to each, pause for about 2 seconds and then continue. thanks, b. *** The information in this e-mail is confidential and intended solely for the individual

[flexcoders] errorString ToolTipManager

2007-02-15 Thread Brian Holmes
Is there a way to immediately show the errorString when you write it to a component? Without having to move your mouse over it? thanks, b. *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have received this e-m

[flexcoders] User Nudging

2007-02-14 Thread Brian Holmes
I would like to be able to lead users through the application and make the application more responsive in much the same way the validators on the form do. For example I have a tree that has items in it, and one of the options is to be able to delete a node from the tree. If no node is selected and

RE: [flexcoders] New Version of Flex Style Explorer with Tons on New Features

2007-02-13 Thread Brian Holmes
well, just replace references to Myriad with Arial, or something. -p On 2/13/07 2:45 PM, "Brian Holmes" <[EMAIL PROTECTED]> wrote: Peter, Yeah I saw that. Just so you guys know, MyriadWebPro.ttf and MyriadWebPro-Bold.ttf isn't included in the download, so i

RE: [flexcoders] New Version of Flex Style Explorer with Tons on New Features

2007-02-13 Thread Brian Holmes
cker components (components/colorPicker, components/doubleColorPicker, and components/quadColorPicker) and change the visibilty of the images to be always visible and recompile for your very own version where color wheels are always visible. -Peter On 2/13/07 1:59 PM, "Brian Holmes"

RE: [flexcoders] New Version of Flex Style Explorer with Tons on New Features

2007-02-13 Thread Brian Holmes
Peter, The new style explorer's great, but man you guys are killing me with the roll over to show the advanced color picker. Makes the whole thing look buggy IMHO, can you just show them all the time? Brian.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROT

RE: [flexcoders] WARNING: css type selectors are not supported in components?

2007-02-08 Thread Brian Holmes
_ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Wednesday, February 07, 2007 12:21 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] WARNING: css type selectors are not supported in components? Yeah, I know, I don

RE: [flexcoders] WARNING: css type selectors are not supported in components?

2007-02-07 Thread Brian Holmes
ry 07, 2007 1:15 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] WARNING: css type selectors are not supported in components? Hi, In a custom component you cannot have; Button { ... } You have to specify them in the Application. Peace, Mike On 2/7/07, Brian Holmes <[EMAIL P

[flexcoders] WARNING: css type selectors are not supported in components?

2007-02-07 Thread Brian Holmes
I'm getting this warning message since I upgrade to FB 2.01 and i can't seem to get rid of it. I don't have any inline css, but I do have a reference to a style sheet in my application shell. Anybody else out there experiencing this? B.. *** The information in this e-mail is confidential and

RE: [flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread Brian Holmes
Just create a new XMLListColletion with the source of the one you want to copy from. var a:XMLListCollection = new XMLListCollection(xmlList); var b:XMLListCollection = new XMLListCollection(a.source); -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Beha

RE: [flexcoders] Using Effects with TitleWindow show/hide?

2007-02-01 Thread Brian Holmes
On your title window set visible=false and then on the creationComplete event set visible=true; There's a much better way of handling this if you route all title window's through a window manager, But that should get you started. The problem as you probably realize is that when the window

RE: [flexcoders] Flex UG in Denver?

2007-02-01 Thread Brian Holmes
I'm up in the Fort and would be interested. Brian. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Kirby Sent: Thursday, February 01, 2007 2:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex UG in Denver? Anyone know

RE: [flexcoders] date formating

2007-01-31 Thread Brian Holmes
Roger, Use the following function. public function gridDateFormatter(item:Object,column:DataGridColumn):String { var f:DateFormatter = new DateFormatter(); f.formatString = "DD-MMM-"; re

RE: [flexcoders] Binding HTTPService xml to ArrayCollection for Datagrid

2007-01-31 Thread Brian Holmes
on return use myExperiments = new ArrayCollection(event.result.experiments.experiment); if expirement is the repeating element, then you need to use (event.result.expirements) b. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] library path in Flex builder 2

2007-01-30 Thread Brian Holmes
you can add your swc to the WEB-INF\flex\user_classes\ directory that you are compiling against From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of seng ung Sent: Tuesday, January 30, 2007 2:22 PM To: flexcoders@yahoogroups.com Subject: [flexc

[flexcoders] What's the difference in the way you add arguments to a webservice?

2007-01-30 Thread Brian Holmes
I create my webservices and operations on the fly and I've come across these two ways of adding arguments to a server call. when I create the operation, i can add arguments var op:mx.rpc.AbstractOperation = this.service[method]; op.arguments = arguments; or when I act

RE: [flexcoders] Flex Builder 2.0.1 - problem creating a library project

2007-01-25 Thread Brian Holmes
This also happens when you fail to add files in the build path of your library. Right click on the project, go to properties and check the files you want to include in the build. That was the mistake I made the first time I put a library together. B. From: flexc

RE: [flexcoders] Help with Tree component : getting XML out of Oracle

2007-01-23 Thread Brian Holmes
Hi Greg, I've been able to do this with Cold Fusion. Turning a query into a tree, and also a cfdirectory into a tree and then passing them back to flex. Is that what you are trying to do? Brian. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf O

  1   2   >