[flexcoders] Re: cairngorm event listener example

2007-08-29 Thread philza1985
I'm having real difficulties with this one. have been stuck on it for a while now and I can't ignore it any longer. Any help would be greatly appreciated =*) Basically a clear canvas event is being fired from a toolpanel view, and I'm trying to catch it in the drawing application view. I'm

[flexcoders] Re: Memory leaks

2007-08-29 Thread filipemlopes
Oh. It's to bad !!! Does anybody know to solve this problem ?? --- In flexcoders@yahoogroups.com, André Rodrigues Pena [EMAIL PROTECTED] wrote: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:VBox id=vBoxLeak width=200

[flexcoders] accessing local file

2007-08-29 Thread tam.vicky
hi, i'm going to develop an app which i would like to access user's local file. like user pick a photo in his local drive and use my flex webapp to edit it. is that possible? Thanks a million and wish you all have a good day. Vicky

[flexcoders] ComboBox funkyness!

2007-08-29 Thread nathanpdaniel
I'm working on an application with many combo boxes. It worked great until I installed a new skin (from scalenine). Once I did that, my combo boxes (on open), put the selection menu behind everything except the background, making the mouse useless. Keyboard selection still works the way it

Re: FW: [flexcoders] Re: [flex-open-source] Re: Bugs in Flex 3 Moxie M2 SDK

2007-08-29 Thread Tom Chiverton
On Monday 20 Aug 2007, [EMAIL PROTECTED] wrote: Your mails to flex­open­source all appear to be going to flexcoders (at least according to my Outlook filter). Just FYI... It's because our exchange server removes all the useful headers. I might be able to attack KMail's filters though to sort

Re: [flexcoders] Re: Flex 2 Training From the Source

2007-08-29 Thread Jatin Nanda
Amy - stupid questions are fine, I've asked a few myself. Try searching the forum first, there is a good chance your question may already have been answered in part. On 29/08/2007, Tony [EMAIL PROTECTED] wrote: Amy, This may be your place. Go for it! --- In flexcoders@yahoogroups.com

Re: [flexcoders] Flex SDK download is mislabeled - Adobe please read

2007-08-29 Thread Tom Chiverton
On Tuesday 28 Aug 2007, [EMAIL PROTECTED] wrote: No, not officially I guess, though we feel like it was a good hotfix. I agree. It fixed a lot of things people didn't know they were hitting or working around. -- Tom Chiverton This email

Re: [flexcoders] Re: Getting the SDK should be much easier...

2007-08-29 Thread Tom Chiverton
On Tuesday 28 Aug 2007, [EMAIL PROTECTED] wrote: Doesn't exactly make me think I will be using Flex 3 anytime soon. I don't think we'll ever take existing Flex 2 projects and 'for real' compile and deploy them with Flex 3. The compatability is very good, it seems, and there is good stuff in 3,

Re: [flexcoders] Re: Debug version of new Flash Player

2007-08-29 Thread Tom Chiverton
On Wednesday 29 Aug 2007, [EMAIL PROTECTED] wrote: I'm looking into making one available, That would be good. As I said on the Penguin.SWF blog - it's hard to give the new player the day to day testing we'd like to if it has no debug support. -- Tom Chiverton

[flexcoders] Re: What is the most productive serverside development architecture?

2007-08-29 Thread tom.chiverton
--- In flexcoders@yahoogroups.com, mmthm [EMAIL PROTECTED] wrote: My main criteria is speed of development. Simplicity and the ability to pump out solid implementation quickly is my primary concern. If you have ColdFusion, PHP or anything else that can use RemoteObject, do that, else stick

Re: [flexcoders] How do u position a label directly underneath a picture you don't know the size?

2007-08-29 Thread Roman Protsiuk
Why don't you use layout=vertical? R. On 8/29/07, steve [EMAIL PROTECTED] wrote: I have a panel and I load an image in at runtime, I would like to position the label directly underneath the image which may have different heights, Can I use the contentHeight of the image to position the

[flexcoders] Creating Custom Component

2007-08-29 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am trying to understand and learn how to create my own custom components for my flex based applications and have ran into a problem I can not resolve. My custom component works if nothing has been placed on the stage but it will not display if I

Re: [flexcoders] How do u position a label directly underneath a picture you don't know the size?

2007-08-29 Thread Giles Roadnight
SOmething like this: label text=foo x:{image.x} y={image.height + image.y + 5} / On 8/29/07, steve [EMAIL PROTECTED] wrote: I have a panel and I load an image in at runtime, I would like to position the label directly underneath the image which may have different heights, Can I use the

Re: [flexcoders] Creating Custom Component

2007-08-29 Thread Tom Chiverton
On Wednesday 29 Aug 2007, [EMAIL PROTECTED] wrote: Suggestions and/or Ideas? Call your constructor from creationComplete, or override the addChild() method as per the docs. -- Tom Chiverton This email is sent for and on behalf of

[flexcoders] Re: What is the most productive serverside development architecture?

2007-08-29 Thread gers32
I've chosen to develop my server-side code with Ruby on Rails. It's the most productive technology I've encountered. I access its XML output via HTTPService. If you're designing your application and database from scratch, I don't think anything can beat it, from a productivity standpoint (most of

[flexcoders] Re: Getting the SDK should be much easier...

2007-08-29 Thread ben.clinkinbeard
I would imagine the primary application I work on will receive 2 to 3 upgrades per year for the foreseeable future. In that scenario, I'd like to get it onto 3 at some point. Ben --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 28 Aug 2007, [EMAIL

Re: [flexcoders] Error: Interface IManaged was not found.

2007-08-29 Thread Hara Jn
I am reposting my issue??.. Is there any one help me.. Thanks in Advance. Hi , Until yesterday I was trying Flex 2.0 and today I just wanted to try out the updated version 2.0.1. I downloaded the files and incorporated in to the application. But when I compiled the application it shows the

Re: [flexcoders] Creating Custom Component

2007-08-29 Thread Michael Schmalle
Hi, Why are you creating a Label inside a Label? That will not work. package myComponents { import mx.controls.Label; public class SelectSchoolBuildingsLabel extends Label { private function SelectSchoolBuildingsLabel ():void { super(); text = Select School Building; }

[flexcoders] Re: Ignoring a public member during serialization

2007-08-29 Thread vikram
Hi Pete, Thanks for your reply. I am not sure how to change the XML schema to omit an element. It would be great if you take your time and give me a direction on that. On the other note, I need something like this because in my Class on flex, I have some properties that have no role to play

[flexcoders] Re: Ignoring a public member during serialization

2007-08-29 Thread vikram
This points to the [Transient] metadata tag. This is useful only for remoting (AMF) and not for web service. I tried it out. I found another option for achieving this i.e. implementing IExternalizable and providing our implementation for readExternal() and writeExternal(). Any suggestions on

Re: [flexcoders] Error: Interface IManaged was not found.

2007-08-29 Thread Tom Chiverton
On Wednesday 29 Aug 2007, [EMAIL PROTECTED] wrote: I tried the same thing by copying the fds.swc file which was in flexsdk 2.0 (not updated version) and pasting it to the same location in the updated version of the flexsdk2.0. You almost certainly need to undo that and get a correctly

[flexcoders] for FDS beginners

2007-08-29 Thread Charu
Hello , I am a newbie to FDSand was trying out my hands on FDS,jrun and coldfusion...i tried some code so as to create channel and channel sets but wasn't successful... [:(] Can ne1 help me with this and some small application and how to configure so as i can also see how FDS applications

[flexcoders] as3 to FMS2 system can not record flv

2007-08-29 Thread jonsongenius
Hi all i want to publish microphone audio to the server but failed. stream always show live on fms2_console, and no flv is published on server. this is my client-script: [code] import flash.net.*; import flash.events.*; stop(); NetConnection.defaultObjectEncoding = ObjectEncoding.AMF0; var

[flexcoders] Re: cairngorm event listener example

2007-08-29 Thread philza1985
Problem solved guys.

Re: [flexcoders] Re: Debug version of new Flash Player

2007-08-29 Thread Oleg Filipchuk
Thanks Matt. On 29/08/2007, Matt Chotin [EMAIL PROTECTED] wrote: I'm looking into making one available, but we may not have a tested version that we can make officially available off of Labs. Sorry for the uncertainty… Matt *From:* flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: Help - users having problem I can't reproduce

2007-08-29 Thread generalxxaxx
I am getting an actionscript error: ArgumentError: Error #2015: Invalid BitmapData. at flash.display::BitmapData$iinit() at sandy.util::DistortImage/::renderVector() at sandy.util::DistortImage/initialize() at

Re: [flexcoders] Re: Getting the SDK should be much easier...

2007-08-29 Thread Tom Chiverton
On Wednesday 29 Aug 2007, [EMAIL PROTECTED] wrote: I would imagine the primary application I work on will receive 2 to 3 upgrades per year for the foreseeable future. In that scenario, I'd like to get it onto 3 at some point. Yeah, for longer evolving products than ours typically are that

Re: [flexcoders] Error: Interface IManaged was not found.

2007-08-29 Thread João Fernandes
yes Hara, you should include de updated fds.swc from LCDS 2.5.1. João Fernandes Hara Jn wrote: I am reposting my issue??.. Is there any one help me.. Thanks in Advance. Hi , Until yesterday I was trying Flex 2.0 and today I just wanted to try out the updated version 2.0.1. I downloaded the

[flexcoders] Re: How do u position a label directly underneath a picture you don't know the s

2007-08-29 Thread Abyss Knight
You could always wrap the photo and caption into a VBox and that'd at least get the two paired up vertically. - William --- In flexcoders@yahoogroups.com, steve [EMAIL PROTECTED] wrote: I have a panel and I load an image in at runtime, I would like to position the label directly underneath

[flexcoders] nested json: how to access in dataField

2007-08-29 Thread ronnlixx
Hi, I have some json being returned from a service that looks similar to: [{attributes: {name: Job 1}}, {attributes: {name: Job 2}}] how do I access name in the DataGridColumn, I tried several ways like attributes.name, attributes[name] but neither works. Any clue what i'm doing incorrectly?

[flexcoders] rtmps keystore location

2007-08-29 Thread simonjpalmer
can anyone advise on how I set the keystore-file tag on a secure rtmp destination to be a relative path on the server. It seems crazy that I have to put in a file path, especially as my entire application is deployed as a war file and I already have a valid keystore for https. I have tried...

[flexcoders] Re: nested json: how to access in dataField

2007-08-29 Thread simonjpalmer
@name perhaps? can't say I'm certain that will work... --- In flexcoders@yahoogroups.com, ronnlixx [EMAIL PROTECTED] wrote: Hi, I have some json being returned from a service that looks similar to: [{attributes: {name: Job 1}}, {attributes: {name: Job 2}}] how do I access name in the

[flexcoders] Re: Flex 2 Training From the Source

2007-08-29 Thread droponrcll
--- In flexcoders@yahoogroups.com, Tony [EMAIL PROTECTED] wrote: Amy, This may be your place. Go for it! OK, first question: In Lesson 7 (p 162), we instantiate the PopupManager class from inside a component. Wouldn't that cause problems accessing it from other parts of the program,

[flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread candysmate
I use a titleWindow popup with a datagrid from which the user makes a selection from a large database. When closed, does the selection datagrid ArrayCollection sit around in memory? If so, what is the best practice way of dealing with this please? Ok, take aim and

Re: [flexcoders] Re: Flex 2 Training From the Source

2007-08-29 Thread John Robinson
One possible answer (below)... great book by the way! John On Aug 29, 2007, at 10:29 AM, droponrcll wrote: --- In flexcoders@yahoogroups.com, Tony [EMAIL PROTECTED] wrote: Amy, This may be your place. Go for it! OK, first question: In Lesson 7 (p 162), we instantiate the PopupManager

[flexcoders] FDS and Paging

2007-08-29 Thread Alban Soupper
Hi All, I need some help with FDS and the paging feature. Here is the situation: I have a DataGrid that display a list of managed objects - using DFS and the Assembler strategy. The number of objects is very large and is time consuming to load. I would want to use the paging feature to

Re: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Roman Protsiuk
Your popup can dispatch some event which will bring you the selection or you can store this info in the array collection values you are working with or... else. R. On 8/29/07, candysmate [EMAIL PROTECTED] wrote: I use a titleWindow popup with a datagrid from which the user makes a selection

RE: [flexcoders] rtmps keystore location

2007-08-29 Thread Peter Farland
Custom tokens like the ones you mentioned are an enhancement we'd like to add in the next version (bug 173161). We're aware of the situation you describe as a reason for such an enhancement (bug 93750). For now, I believe the only options you have are to either use a full path as you are

Re: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Peter Connolly
Have you tried defining the DataGrid dataProvider in the parent document and then refer to it as: myDataGrid.dataProvider=parentDocument.groovyArrayInParentDoc; That way the visual component is in the titleWindow and its dataProvider is in the parent (and therefore survives after the titleWindow

[flexcoders] How to use IExternalizable for Web services?

2007-08-29 Thread vikram
Hi, Can I use IExternalizable to change the behaviour of XML serialization while communicating with a web service? I want to hide some of the public properties from getting serialized. I have a .Net based web service and flex client. I tried to use IExternalizable by implementing the methods

[flexcoders] examples of form submits?

2007-08-29 Thread grimmwerks
Seems ridiculous, but does anyone have any examples of form submits to a ruby backend in flex? I originally created an application using rubyamf, but the ruby developer flipped to just simple form submitting.

RE: [flexcoders] How to use IExternalizable for Web services?

2007-08-29 Thread Peter Farland
Nope, IExternaliable is only for ActionScript serialization via AMF. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vikram Sent: Wednesday, August 29, 2007 11:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to use IExternalizable

Re: [flexcoders] I need help with a BarChart with annotation - I think

2007-08-29 Thread Brendan Meutzner
Can you send a screenshot of what you're looking for? Brendan On 8/28/07, Mark [EMAIL PROTECTED] wrote: I have a bar chart that represents start and end dates from my XML. It looks real nice and does a great job but my boss has asked for one last thing… a line that indicates a third

[flexcoders] Preventing CTRL, ALT, and SHIFT for DragEvent?

2007-08-29 Thread restlessdesign
Hi everyone! Sorry to make my first post be a cry for help but short of rewriting the DragEvent class, is there another way to essentially ignore the keyboard while dragging items between list components so that the action is always 'move'? I tried setting the action property in the drop event

[flexcoders] Integrating MapServer with Flex

2007-08-29 Thread sonnygett
Hi guys, I'm a college student and now start to working on with my final assignment to get my graduate. and i was thinking about integrate MapServer (http://mapserver.gis.umn.edu/) inside the Flex application. Did someone know how to do it? regards,

RE: [flexcoders] examples of form submits?

2007-08-29 Thread Tracy Spratt
I don't know ruby, but ordinarily form submit means http post. If that is the case here, then use HTTPService. There are lots of examples of that. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Wednesday,

[flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread vikram
Hi Peter, Thanks again for the reply. I had made a related post in #85277. Now, after finding out that IExternali... doesnt work with web service, my question comes back again - how will I hide few public members? you mentioned about changing the XML schema or something like that. If you can

RE: [flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread Peter Farland
Can you show us the XML Schema definition of the relevant complexType from your WSDL? Also, can you show us a snippet of ActionScript code that shows the properties that you have for this complexType and which ones you don't want to send? Pete -Original Message- From:

[flexcoders] Re: Stupid question - get ready to throw fruit.

2007-08-29 Thread candysmate
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Where is the ArrayCollection declared? selectedItem is a property of the dataGrid that has a reference to an item in the dataProvider. If the DG is gone, then so is the selectedItem Property. What exactly

[flexcoders] doing session handling through FDS

2007-08-29 Thread siva.flex
Hi All, Anybody suggests me how to do session handling using FDS. I have downloaded testdrive and have gone throuth that one. And one more doubt I got is what is AMF, how it links to FDS. Thanks Regards, Siva Kumar

Re: [flexcoders] Re: Stupid question - get ready to throw fruit.

2007-08-29 Thread Jurgen Beck
What about just setting it to null? myArrayCollection = null; That should free it up in memory. Isn't that what you need? Jurgen candysmate wrote: --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Where is the ArrayCollection

[flexcoders] AMF ---- some clarifications

2007-08-29 Thread siva.flex
Hi All, I have one more doubt forgot to post in my previous mail. What is AMF? Whats the benifits of AMF? , How it related to FDS? Is there any sites / pdf's regarding AMF? Anybody clarify my doubts. I will be greatful to them. Thanks Regards, Siva Kumar

[flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread vikram
Sure. Here is the action script code for the class which I am sending to .Net web service: public class ObjectDetailsVONew implements IValueObject { private var objectName: String; private var objectInternalSeqId: int; private var

[flexcoders] Re: Integrating MapServer with Flex

2007-08-29 Thread kramus0
Hi, I suggest you should take a look on http://modestmaps.com/ - they have integrated several map providers in a map component using actionscript 3. Regards Markus --- In flexcoders@yahoogroups.com, sonnygett [EMAIL PROTECTED] wrote: Hi guys, I'm a college student and now start to working

[flexcoders] AMF ---- some clarifications

2007-08-29 Thread siva.flex
Hi All, What is AMF? Whats the benifits of AMF? , How it related to FDS? Is there any sites / pdf's regarding AMF? Whats the advantags of AMF? Anybody please clarify my doubts. I will be greatful to them. Thanks Regards, Siva Kumar

RE: [flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread Peter Farland
The Schema explicitly defines the property: s:element minOccurs=1 maxOccurs=1 name=ObjectExternalSeqId nillable=true type=s:int / and it says that it must be present (minOccurs=1) so it will be included. If you don't want it to be sent, then try making it optional in your .NET WebService.

RE: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Tracy Spratt
Where is the ArrayCollection declared? selectedItem is a property of the dataGrid that has a reference to an item in the dataProvider. If the DG is gone, then so is the selectedItem Property. What exactly do you want to happen? Tracy From:

Re: [flexcoders] Preventing CTRL, ALT, and SHIFT for DragEvent?

2007-08-29 Thread Jeffry Houser
Would dragMoveEnabled=true do it? restlessdesign wrote: Hi everyone! Sorry to make my first post be a cry for help but short of rewriting the DragEvent class, is there another way to essentially ignore the keyboard while dragging items between list components so that the action is

[flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread vikram
OK, let me try that out. Thanks a lot for your help Vikram --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: The Schema explicitly defines the property: s:element minOccurs=1 maxOccurs=1 name=ObjectExternalSeqId nillable=true type=s:int / and it says that it

Re: [flexcoders] examples of form submits?

2007-08-29 Thread grimmwerks
I'm trying to play with this, but I'm confused by the error I'm getting: [RPC Fault faultString=HTTP request error faultCode=Server.Error.Request faultDetail=Error: [IOErrorEvent type=ioError bubbles=false cancelable=false eventPhase=2 text=Error #2032: Stream Error. URL:

RE: [flexcoders] Preventing CTRL, ALT, and SHIFT for DragEvent?

2007-08-29 Thread Alex Harui
Did you call preventDefault? Your drophandler gets called before the List's and it will set the action again. You may need to add a lower-priority handler so the List gets called first, since preventDefault() will also prevent the List from doing other things.

Re: [flexcoders] examples of form submits?

2007-08-29 Thread grimmwerks
SIGH - just don't get it. [RPC Fault faultString=HTTP request error faultCode=Server.Error.Request faultDetail=Error: [IOErrorEvent type=ioError bubbles=false cancelable=false eventPhase=2 text=Error #2032: Stream Error. URL: http://localhost:3000/signup/ register]. URL:

[flexcoders] Re: Very simple module crash: Instantiation attempted on a non-constructor

2007-08-29 Thread chuyler1
I found a work-around. I have to define my module using mxml instead of straight ActionScript. For some reason it wasn't loading the halo skin classes into the module and since they weren't available in the main app either it would crash when it tried to get the class name from the default css

RE: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Alex Harui
The AC will only remain in memory if there is a reference to it from somewhere in the app. If the TW is gone, so should the DG, and therefore its reference to the AC. If the AC was loaded into a var in the main app it will stay around. So, it depends on how you wrote your code. Note that GC

RE: [flexcoders] ComboBox funkyness!

2007-08-29 Thread Alex Harui
What is everything? Popup windows? Other components? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nathanpdaniel Sent: Wednesday, August 29, 2007 12:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox funkyness!

RE: [flexcoders] examples of form submits?

2007-08-29 Thread Tracy Spratt
You will need to tell us what you are doing that produces these errors. I'm trying to play with this is not sufficiently descriptive. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Wednesday, August 29,

[flexcoders] useHandCursor Problem in Flex 3.0 Beta version

2007-08-29 Thread bornaeon
dear friends I have a simple code here: mx:Image source=@Embed('img/LittleLogo2.png') click=navigateToURL (new URLRequest('http://www.30Sharp.com')) horizontalCenter=-109 verticalCenter=-139 useHandCursor=true/ but when I do mouseover in my picture, nothing happends. I can click my picture and

Re: [flexcoders] Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread Jurgen Beck
I asked this yesterday, but I'm not sure if I missed any possible responses to it. So here is another quick summary: How can we change the browser that FB uses for debugging? Thanks, Jurgen Jurgen Beck wrote: Even though there is a FB Preferences setting for using a browser when Web pages

[flexcoders] Re: DragEvent.DRAG_EXIT doesn't work?

2007-08-29 Thread Matt
Alex, any news on this? I'm curious if I'm doing something wrong or if this is in fact a bug? --- In flexcoders@yahoogroups.com, Matt [EMAIL PROTECTED] wrote: Sure, I did about as simple of an example that would show the problem: ?xml version=1.0 encoding=UTF-8 standalone=no?

[flexcoders] Re: Flex Builder issues with large projects

2007-08-29 Thread Philip Kromer
I've found that compiling large embeds is *super* time consuming. The RSL solution seems best: this post from Darron Schall is relevant http://www.darronschall.com/weblog/archives/000168.cfm as are of course http://tinyurl.com/ynvqfe (livedocs for RSL)

Re: [flexcoders] Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread carlos m
In FB click on the Window Preferences General Web Browser. HTH, Carlos - Original Message From: Jurgen Beck [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, August 29, 2007 10:06:39 AM Subject: Re: [flexcoders] Flex Builder 2.0.1: Change Browser for Debugging

RE: [flexcoders] Re: Debug version of new Flash Player

2007-08-29 Thread Matt Chotin
Hi, Unfortunately the Debugger version of that Player was not tested so the Player team does not feel comfortable releasing it. We'll have one in the next public Flex beta, but that's still a little ways away. Sorry! Matt -Original Message- From: flexcoders@yahoogroups.com

[flexcoders] Combobox + PopupManager + mouseDownOutside bug

2007-08-29 Thread Troy Gilbert
Here's the details of the bug: https://bugs.adobe.com/jira/browse/SDK-9656 I was running into this issue, googled combobox mousedownoutside and it was the first hit, so yeah, Google!. Exactly what I was looking for. But... its fixed, but I couldn't figure out how to get details on what the fix

[flexcoders] Re: Stupid question - get ready to throw fruit.

2007-08-29 Thread candysmate
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: The AC will only remain in memory if there is a reference to it from somewhere in the app. If the TW is gone, so should the DG, and therefore its reference to the AC. If the AC was loaded into a var in the main app it

Re: [flexcoders] AMF ---- some clarifications

2007-08-29 Thread Muzak
AMF stands for Actionscript Message Format. It's a binary message format used by Flash and Flex Remoting (and FDS, which is now LCDS - LiveCycle DataServices). http://livedocs.adobe.com/flashremoting/mx/Using_Flash_Remoting_MX/intro2.htm LiveCycle info:

Re: [flexcoders] Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread Jurgen Beck
Thanks, but that doesn't seem to have an effect on the browser that the debugger uses. This seems to only affect the browser use for the help documentation. I'm sure I'm missing something. Jurgen carlos m wrote: In FB click on the Window Preferences General Web Browser. HTH, Carlos

[flexcoders] Re: Help - users having problem I can't reproduce

2007-08-29 Thread jer_ela
Thanks, I wish I knew what causes the error so I could reproduce it. I don't even know if thats the same error the other user got. I would guess it is a timing issue in the distortion effects code, with something happening out of order, but if I can't reproduce it I'm not likely to be able to

Re: [flexcoders] Re: Integrating MapServer with Flex

2007-08-29 Thread paulh
kramus0 wrote: integrated several map providers in a map component using actionscript 3. modestMap supports flex? i thought it was just AS2? back to the original question, we've experimented w/mapserver via coldfusion/mapscript using flex (but this was a very old version of java mapscript

RE: [flexcoders] Combobox + PopupManager + mouseDownOutside bug

2007-08-29 Thread Alex Harui
The test we added is if the popup owns the target. if (IUIComponent(myPopUp).owns(DisplayObject(evt.target))) -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy Gilbert

RE: [flexcoders] Re: DragEvent.DRAG_EXIT doesn't work?

2007-08-29 Thread Alex Harui
Still in my queue. Hopefully this week sometime. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Sent: Wednesday, August 29, 2007 10:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DragEvent.DRAG_EXIT doesn't work?

RE: [flexcoders] useHandCursor Problem in Flex 3.0 Beta version

2007-08-29 Thread Alex Harui
Try adding buttonMode=true From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bornaeon Sent: Wednesday, August 29, 2007 9:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] useHandCursor Problem in Flex 3.0 Beta version dear

RE: [flexcoders] Re: Very simple module crash: Instantiation attempted on a non-constructor

2007-08-29 Thread Alex Harui
If you define the module in MXML, but do not load it with ModuleLoader, you should have control over parenting. MXML includes styles from defaults.css, but AS does not. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] ComboBox - edit cursor appearing

2007-08-29 Thread Stephen Allison
Hi, I have found that if you ever set the 'enabled' property of a ComboBox dynamically, then the ComboBox starts showing the I-Beam 'edit' cursor when you mouse over it. Otherwise identical ComboBoxes that aren't having their enabled property set behave correctly. here's an example: ?xml

[flexcoders] Cairngorm with Flex Modules...how did you do it?

2007-08-29 Thread chuyler1
Right now I am trying to layout a project that uses Cairngorm and multiple swf modules. I am currently using one project in Flex Builder but I am wondering if I should break each module out into its own project. Has anyone done this? If so, how did you accomplish it? Did you just share your

[flexcoders] Re: ComboBox - edit cursor appearing

2007-08-29 Thread ben.clinkinbeard
This is a known bug but it looks like its been fixed for Flex 3: http://bugs.adobe.com/jira/browse/SDK-7921 Ben --- In flexcoders@yahoogroups.com, Stephen Allison [EMAIL PROTECTED] wrote: Hi, I have found that if you ever set the 'enabled' property of a ComboBox dynamically, then the

RE: [flexcoders] accessing local file

2007-08-29 Thread Gordon Smith
You can access local files using AIR. But in a web app, I think you can only let the user select them for uploading, for security reasons. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tam.vicky Sent: Tuesday, August 28, 2007

[flexcoders] Re: Event collision- is this a bug or expected behavior?

2007-08-29 Thread ben.clinkinbeard
Hi Alex, It looks like somebody didn't follow your recommendations when writing FocusManager :) All of the focus related handlers have signatures that look like this private function focusInHandler(event:FocusEvent):void, causing a coercion error if a developer defines an event with a value that

RE: [flexcoders] ComboBox - edit cursor appearing

2007-08-29 Thread Alex Harui
Bug. Fixed in Moxie From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Allison Sent: Wednesday, August 29, 2007 11:14 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox - edit cursor appearing Hi, I have found

[flexcoders] Re-locatable SWC inclusion?

2007-08-29 Thread Steve Kellogg
Hello, When adding SWC files to my project, I'm having trouble finding the documentation on how to make sure the PATHS to my SWC is relocatable. These are SWCs coming from another member of our team, and are NOT in the same root folder as my main project. I assume it has something to do with

[flexcoders] [OT]: What's best way to import AS3 code to FB2?

2007-08-29 Thread Steve Hueners
Getting up and running with sample code seems umm...less straight forward than i'd expect given how well other parts of FB are wizarded. There seems to be a tug between 'creating a new project' vs. being able to 'import existing files'. Using File | New ActionScript Project results in 'Internal

RE: [flexcoders] Re: Memory leaks

2007-08-29 Thread Gordon Smith
Here are the results I get when I start by doing Force GC and Capture Memory and then repeatedly do Add Childs, Rem Childs, Force GC, Capture Memory: 4943872 6393856 6664192 6627328 6770688 6803456 6815744 6815744 6815744 6823936 6815744 There is no memory leak because continuing to add and

[flexcoders] Re: Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread Mike Morearty
Hi Jurgen, Carlos was correct -- changing the value in Window Preferences General Web Browser is how you change what browser Flex Builder uses to debug. If that doesn't work for you, then something is going wrong, but I am not aware of any bugs in that area. There is no per-project setting

[flexcoders] Getting label text from a external XML file - eg for menu

2007-08-29 Thread oneproofdk
I trying to use text from a external xml file as labels in buttons. I am doing this, so the user may switch language. My xml looks like this : xml version=1.0/ lbl dk node id=btnProjects label=Projekter/ node id=btnSettings label=Indstillinger/ node id=btnLog label=Log/

[flexcoders] Re: Stupid question - get ready to throw fruit.

2007-08-29 Thread generalxxaxx
--- In flexcoders@yahoogroups.com, candysmate [EMAIL PROTECTED] wrote: Sorry guys, I didn't explain myself too well. What I want to happen is to null the ArrayCollection after I've done with it. So it doesn't sit around in memory hogging resources. best, Graham I'm glad you didn't explain

[flexcoders] Re: Cairngorm with Flex Modules...how did you do it?

2007-08-29 Thread chuyler1
Thanks Tony for the detailed explanation. I have spent the afternoon experimenting with modules in Flex Builder and it looks like separate projects is the way to go. At first I was thinking I could get by with a single project for development and then make sure the nightly Ant script used

[flexcoders] How to get the previously selected item in ComboBox on change?

2007-08-29 Thread williamkusumo
Hi! I can't seem to get a reference to the previously selected item in ComboBox on change. When the function executes on change, the selectedItem has already become the newly selected item, I would like to check on the previously selected. I checked on the docs and can't seem to find any property

[flexcoders] swap two variables without temporary variable

2007-08-29 Thread Reid Priedhorsky
Hi folks, I'm looking for a way to swap two variables without coding the swap manually with a temporary variable. In other words, what I have now is: temp = a; a = b; b = temp; In C, I could write (assuming a properly written swap() function): swap(a, b); In Python, I could

Re: [flexcoders] Combobox + PopupManager + mouseDownOutside bug

2007-08-29 Thread Troy Gilbert
Ah, nice, I've never seen/used the owns method... exactly what I was looking for! Thanks! Troy. On 8/29/07, Alex Harui [EMAIL PROTECTED] wrote: The test we added is if the popup owns the target. if

RE: [flexcoders] FDS and Paging

2007-08-29 Thread Jeff Vroom
By default, DS will just page from the client to the server, not from the server to the database. I'd expect it to call fill once, but then the client fetches the data in pages. Starting in LC DS 2.5, we added a mechanism to page directly to the database. Currently it is limited in that you

RE: [flexcoders] Re: Memory leaks

2007-08-29 Thread Alex Harui
Such is the nature of player memory management. It doesn't free up pages as aggressively as you might want it to, nor does it compact memory, so the first allocation grabbed a bunch of pages that aren't fully cleaned, but reused after that. From: Gordon

  1   2   >