[flexcoders] Re: Turn off Validators

2006-04-19 Thread Tim Hoff
If you just want to turn off the visual indication, you can clear the errorString property of the control.  Tip:  For custom validation, you can write your own error message to errorString.  This will trigger the red border and error message to appear. As I understand the Flex framework, you hav

[flexcoders] Repost: Drag from Tree to List

2006-04-19 Thread judah
This was originally posted as "Drag from Tree, drop to List?". --- Hi Paul, Could you check into some possible bugs for me? When I test this code the drag separator appears to jump around when dragging inside the tree. For example, drag the "Sent" folder up and down the Tree and watch the l

Re: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread judah
What I want to know is how do you say it? Is there history behind the name? Judah Steven Webster wrote: Oh man, I write a 6 page article series and still people go on and on and on about ViewLocators :) We innovated the ModelLocator pattern in Cairngorm, and have done our best to commu

[flexcoders] Re: Can't use RemoteObject on HTTPS ONLY Server?

2006-04-19 Thread Steven Toth
Here are the console messages from the non-secure amf: [Flex] Channel endpoint my-amf received request. [Flex] Deserializing AMF/HTTP request Version: 3   (Message #0 targetURI=null, responseURI=/1)     (Array #0)   [0] = (Typed Object #0 'flex.messaging.messages.CommandMessage')     m

[flexcoders] Turn off Validators

2006-04-19 Thread mvbaffa
Hi everybody, I need to turn off or disable a validator. After an error is detected in the associated field I cannot turnoff the visual indication or the error message, even if I write "" to the textinput or set the enabled property of the valdator to false. When I first show the screen I

[flexcoders] Re: parseDateString and parseNumberString

2006-04-19 Thread mvbaffa
Thanks !!! --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > parseDateString is a protected static method on the DateFormatter it > appears.  Which means you would need to write a subclass of > DateFormatter and then you could call the static method from within i

[flexcoders] Re: importing button designed in flash

2006-04-19 Thread loftling
--- In flexcoders@yahoogroups.com, "Chaitanya" <[EMAIL PROTECTED]> wrote: > > Hi, > >    I am trying to import a button designed in flash into my flex > project and use it. I imported it and I can see it in my navigator > view. But when I try to drag it into my Panel I cant do it. Looks like >

[flexcoders] Workspace Overlapping

2006-04-19 Thread Bjorn Schultheiss
Hi List, When my workspace is set to its default location C:\Documents and Settings\\My Documents\Flex And I create a new flex project, with the location C:\Documents and Settings\\My Documents\Flex Things work fine :) Well if I switch workspaces to C:\DEV\FLEXB2\ And try to create a n

[flexcoders] Re: Flex2b2: Problem casting super to an Interface

2006-04-19 Thread loftling
> IInterface( super ).InterfaceMethod(); It seems to me that the bug is that super is allowed to be used by itself (without calling a method). It seems that the compiler is just treating "super" as an alias for "this", which is about the most sensible thing it can do other than generate an er

[flexcoders] Re: How do I access URL vars in onCreationComplete?

2006-04-19 Thread Nathan
Thanks Peter - will give it a go. Cheers Nathan --- In flexcoders@yahoogroups.com, "Peter Farland" <[EMAIL PROTECTED]> wrote: > > In MXML, try getting the values from Application.application.parameters > > -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/fi

[flexcoders] Re: Loading an SWC into Flex 2 Beta 2

2006-04-19 Thread ben.clinkinbeard
Just as another resource, this is a pretty thorough article on this same subject. http://www.asserttrue.com/articles/2006/04/18/library-type-assets-in-actionscript-3-0-using-the-embed-metatdata-tag --- In flexcoders@yahoogroups.com, "Harris Reynolds" <[EMAIL PROTECTED]> wrote: > > Has anyone

[flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread sof4real03
Simeon, Thanks as well. Putting the dynamic in the VO class definition worked. I'd like to try the UIDD solution as well for completness. Is this a bug or by design? Thanks, Sof --- In flexcoders@yahoogroups.com, "sufibaba" <[EMAIL PROTECTED]> wrote: > > Simeon, > > Excellent tip, you've come

[flexcoders] Problem with AMFGateway and Sessions - please help

2006-04-19 Thread Dmitry Miller
trying to retrieve session in my request handler class via flashgateway.Gateway.getHttpRequest().getSession(true); The problem is that flashgateway.Gateway.getHttpRequest() returns null I am using Flex 1.5 Any suggestions? Thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.

[flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread sufibaba
Good question, Where do you make them bindable... In the thumbnail.mxml or in the mxml where the TileList is? Tim --- In flexcoders@yahoogroups.com, "Simeon Bateman" <[EMAIL PROTECTED]> wrote: > > Glad that worked for you :) > > Well I will go with the full on silly question.  Are you ma

[flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread sufibaba
Good question, Where do you make them bindable... In the thumbnail.mxml or in the mxml where the TileList is? Tim --- In flexcoders@yahoogroups.com, "Simeon Bateman" <[EMAIL PROTECTED]> wrote: > > Glad that worked for you :) > > Well I will go with the full on silly question.  Are you ma

Re: [flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread Simeon Bateman
Glad that worked for you :)Well I will go with the full on silly question.  Are you marking those properties as bindable?simeon Error message from the Debugger - warning: unable to bind to property 'data' on class 'com.mycompany.templateEditor.vo::CategoryVO'

[flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread sufibaba
Simeon, Excellent tip, you've come through full power again.   My setup is with  coldfusion the " Dynamic"  seemed to have solved the comboBox display problem.   Even though that is fixed, I am getting binding problems in other parts of the App.  BTW, everything was working fine in Beta1. Pro

[flexcoders] Re: Flex app URL

2006-04-19 Thread Dmitry Miller
Thanks a lot, Tom --- In flexcoders@yahoogroups.com, "Tom Ortega" <[EMAIL PROTECTED]> wrote: > > Funny you ask that, I just found an old flexcoders message from Matt Chotin > yesterday that said: > >  Application.application.url will give you the url to the main SWF. > > Matt > > > > On 4

RE: [flexcoders] How to override type cast operator @ runtime?

2006-04-19 Thread Peter Farland
ObjectProxy is a Flex specific subclass of Proxy for wrapping anonymous Objects that are dynamic and can't be predictably made bindable to report property change events. It shouldn't be used to wrap typed objects like instances of B (see later). You can never cast ObjectProxy to B... the as oper

Re: [flexcoders] Re: How to override type cast operator @ runtime?

2006-04-19 Thread Johannes Nel
i have seen this eact behaviour when deserilazing something from a bytearray as well :(On 4/19/06, Vadim Melnik < [EMAIL PROTECTED]> wrote:>> have you tried an explicit coercion? << Yep, it produced runtime error:TypeError: Error #1034: Type Coercion failed: cannot convertmx.utils::[EMAIL PROTEC

[flexcoders] Re: Updating and Retriving Data From XML File FLEX 2

2006-04-19 Thread livnginabluewrld
Would there be any way I could get this sample sent to me? I don't see if there's a way to download it, it says the .zip "is not stored". Thank you!! --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > From: flexcoders@yahoogroups

[flexcoders] Re: How to override type cast operator @ runtime?

2006-04-19 Thread Vadim Melnik
>> have you tried an explicit coercion? << Yep, it produced runtime error: TypeError: Error #1034: Type Coercion failed: cannot convert mx.utils::[EMAIL PROTECTED] to B -- Thanks, Vadim Melnik. --- In flexcoders@yahoogroups.com, "Johannes Nel" <[EMAIL PROTECTED]> wrote: > > have you tried

Re: [flexcoders] How to override type cast operator @ runtime?

2006-04-19 Thread Johannes Nel
have you tried an explicit coercion?var o:* = new ObjectProxy(new B());var b:B = B(o);On 4/19/06, Vadim Melnik < [EMAIL PROTECTED]> wrote:Hi All,flash.util.Proxy/mx.utils.ObjectProxy classes allow us to override properties access, methods call etc. Is it possible to override typecast operations

[flexcoders] How to override type cast operator @ runtime?

2006-04-19 Thread Vadim Melnik
Hi All, flash.util.Proxy/mx.utils.ObjectProxy classes allow us to override properties access, methods call etc. Is it possible to override type cast operations at runtime, like IUnknown:QueryInterface in COM? For example: public class B {} ... var o:* = new ObjectProxy(new B()); var b:B

RE: [flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Steven Webster
hey Robert,   Latest build is here http://www.richinternetapps.com/archives/000145.html   Bear with us until Cairngorm has it's new home.   It's not primarily for data services either, it was conceived and has evolved long before data services was a twinkle in someone at Macromedia's eye...

[flexcoders] Re: Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Tim Hoff
Robert, To learn more about Cairngorm, I highly recommend that you read the 6-part article series that starts here: http://www.macromedia.com/devnet/flex/articles/cairngorm_pt1.html. - TH --- In flexcoders@yahoogroups.com, Robert Thompson <[EMAIL PROTECTED]> wrote:>> Thanks Steve. Thus far, howe

Re: [flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Oriol Gual
You can download 0.99 from here: http://www.iterationtwo.com/open_source_cairngorm.htmlOriol.2006/4/19, Robert Thompson < [EMAIL PROTECTED]>: Thanks Steve.  Thus far, however, I've not found the 0.99 release of Carnigorm for download so I can begin to follow it's architectural framework.  Is i

Re: [flexcoders] Flex app URL

2006-04-19 Thread Tom Ortega
Funny you ask that, I just found an old flexcoders message from Matt Chotin yesterday that said: Application.application.url will give you the url to the main SWF. Matt On 4/19/06, Dmitry Miller <[EMAIL PROTECTED]> wrote: Does anyone know how to retrieve url of the Flex app from within the

RE: [flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Robert Thompson
Thanks Steve.  Thus far, however, I've not found the 0.99 release of Carnigorm for download so I can begin to follow it's architectural framework.  Is it primarily for Flex Data Services?Steven Webster <[EMAIL PROTECTED]> wrote: Works for me :)  

[flexcoders] Flex app URL

2006-04-19 Thread Dmitry Miller
Does anyone know how to retrieve url of the Flex app from within the application? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS

Re: [flexcoders] Accordian from XML

2006-04-19 Thread Michael Schmalle
BTW, I can see in my head quite a few different tecniques to do this. It really depneds on what you are ACTUALLY doing. Rereading your post, this might be some of what you want but, not exactly. Peace, MikeOn 4/19/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: Hi, Yeah, use the ...      

Re: [flexcoders] Accordian from XML

2006-04-19 Thread Michael Schmalle
Hi, Yeah, use the ...       var myXML:XMLList = myXML..item; then iterate through the list using [EMAIL PROTECTED] in loop ... var child = new Canvas() child.label =  [EMAIL PROTECTED] accorion.addChild(child) use addChild() with the component you want while setting it's label property

[flexcoders] Re: Accordian from XML

2006-04-19 Thread Doug Lowder
Building the accordion tabs is very easy.  You'll need some extra work to create the children of the accordion; probably a custom component instead of the Canvas tag used in the below example.  BTW, I think I got the basis for this sample code from someone's site, probably Jester's, but I co

Re: [flexcoders] Getting Drap Drop Panels

2006-04-19 Thread Michael Schmalle
Hi, There was a link a while ago, Waldo Smeets started something in Flex 1.5. That should give you an idea of the complexity of it and where to start ;-) Peace, Mike PS There are many things that need to be taken into account for when doing it.On 4/19/06, Faisal Abid <[EMAIL PROTECTED] > wrot

Re: [flexcoders] What IS The URL For The Breeze Meetng Today for BACFUG

2006-04-19 Thread Jennifer Larkin
Sorry. I posted the link to the BACFUG mailing list but I haven't posted the link to my sitre yet. I'm trying to get our website working. The URL is http://adobechats.breezecentral.com/bacfug0406/ On 4/19/06, Faisal Abid <[EMAIL PROTECTED]> wrote: > Okay thanks,  but its still much better to se

[flexcoders] Re: Components do not respond to Click event

2006-04-19 Thread azhofeling
My apologies for not doing better homework before posting -- In trying to create code to duplicate the problem which I could post here, I found that when I remove one of my custom components from the application, the problem went away with it. Thanks for your quick replies. Troy --- In fl

[flexcoders] Accordian from XML

2006-04-19 Thread alehrens
I'm a newbie to both Flex and FlexCoders...  How would you go about populating an accordian tab/data from an XML file?  Specifically, I have an XML file that contains a label, data and description.  I'd like to use the label as the tab of the accordian, then show the data and description ins

[flexcoders] Getting Drap Drop Panels

2006-04-19 Thread Faisal Abid
Does Anyone Know How To Impliemet Drag And Drop Panels -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS  Visit your group "

[flexcoders] Re: MultipleSelection onTileList in HTML Flex 1.5

2006-04-19 Thread moyosaned
So the ctrl come true only the multiselection is not working it is suddenly single selection --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > I believe there are known issues with wmode where sometimes the ctrl key > won't be passed through to us.  Does holding sh

[flexcoders] Re: MultipleSelection onTileList in HTML Flex 1.5

2006-04-19 Thread moyosaned
I'm using a keylistener that enables the selection of a TileList. Do you mean I have to try listenming to the Shift instead of the ctrl.. I not great solution, becaue .. we sold it with ctrl-click..you see --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > I beli

Re: [flexcoders] What IS The URL For The Breeze Meetng Today for BACFUG

2006-04-19 Thread Faisal Abid
Okay thanks,  but its still much better to see this happeing live , I wonder where Jen is, she hasnt even put the link on her site Simeon Bateman wrote: > Hey I will have NO hecklers!  Mr Reactor Assembler maker! > > Thats a good question though, and one I will have to defer to Jen to > ans

Re: [flexcoders] What IS The URL For The Breeze Meetng Today for BACFUG

2006-04-19 Thread Simeon Bateman
Hey I will have NO hecklers!  Mr Reactor Assembler maker!Thats a good question though, and one I will have to defer to Jen to answer :)simeonPS. I am the presenter tonight, and the sample code will be on http://flexcf.com after the meeting.On 4/19/06, Faisal Abid <[EMAIL PROTECTED] > wrote: W

[flexcoders] What IS The URL For The Breeze Meetng Today for BACFUG

2006-04-19 Thread Faisal Abid
What IS The URL For The Breeze Meetng Today for BACFUG? The one about passing data between flex and coldfusion -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Re: Flex webservices framework

2006-04-19 Thread Tim Hoff
You can find an mxml example in the live docs: Flex Live Docs.  Go to "Getting Started with Flex" and select "Data: Use Web Services.  If you are interested in an AS3 class for web services, the following link should give you some good ideas:  http://jeff.mxdj.com/as3_datamanager.htm. Cheers, Ti

[flexcoders] Re: RemoteObject Issue

2006-04-19 Thread Geoffrey
How crazy is this!  I took your advise and moved a few things around.  In my Unit test file I changed it to: http://www.macromedia.com/2003/mxml"   xmlns:sdm="sdm.*"   xmlns:services="services.*">     <---changed     <---changed Basically just swapping the ord

Re: [flexcoders] Flex 2b2: TitleWindow & Cairngorm

2006-04-19 Thread Valy Sivec
Thanks Jester.ValyJesterXL <[EMAIL PROTECTED]> wrote: http://www.darronschall.com/weblog/archives/000224.cfm   - Original Message - From: Valy Sivec To: flexcoders@yahoogroups.com Sent: Wednesday, April 19, 2006 2:27 PM Subject: Re: [flexcoders] Flex 2b2: TitleWindow & Cairn

[flexcoders] importing button designed in flash

2006-04-19 Thread Chaitanya
Hi,    I am trying to import a button designed in flash into my flex project and use it. I imported it and I can see it in my navigator view. But when I try to drag it into my Panel I cant do it. Looks like something is wrong with the way I am doing it or flash designed buttons or components ca

Re: [flexcoders] Flex 2b2: TitleWindow & Cairngorm

2006-04-19 Thread JesterXL
http://www.darronschall.com/weblog/archives/000224.cfm   - Original Message - From: Valy Sivec To: flexcoders@yahoogroups.com Sent: Wednesday, April 19, 2006 2:27 PM Subject: Re: [flexcoders] Flex 2b2: TitleWindow & Cairngorm I tried to dispatch an event registered with the Cairn

[flexcoders] importing button designed in flash

2006-04-19 Thread Chaitu Vadlapatla
  Hi,    I am trying to import a button designed in flash into my flex project and use it. I imported it and I can see it in my navigator view. But when I try to drag it into my Panel I cant do it. Looks like something is wrong with the way I am doing it or flash designed buttons or com

Re: [flexcoders] Flex 2b2: TitleWindow & Cairngorm

2006-04-19 Thread Valy Sivec
I tried to dispatch an event registered with the Cairngorm controller from a titlewindow but without much luck.The following code doesn't work used from the TitleWindow but works when called from the main panel that creates the TitleWindow.  // dispatch event  var evnt : SaveIndividualEvent = ne

RE: [flexcoders] Components do not respond to Click event

2006-04-19 Thread Gordon Smith
Flex 1.X or Flex 2? If Flex 2, which Beta? If this is a problem in Flex Beta 2, can you please post some code that demonstrates the problem? Does it happen only when the button you click does some navigation that causes that button to go away and be replaced with another, possibly identical-lo

Re: [flexcoders] Components do not respond to Click event

2006-04-19 Thread JesterXL
Assuming Flex 1.5 as this was fixed in 2 I hear.  Hack is to call this method twice after a click event: mx.events.LowLevelEvents.onMouseMove(); mx.events.LowLevelEvents.onMouseMove(); That'll update the mouse position and hopefully update those who care.  If this doesn't fix your problem, l

RE: [flexcoders] Flex2b2: Question about controls and mouse events

2006-04-19 Thread Gordon Smith
This is a bug and should be fixed in Beta 3.   - Gordon   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tobias Patton Sent: Wednesday, April 19, 2006 10:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2b2: Question about contr

[flexcoders] Components do not respond to Click event

2006-04-19 Thread azhofeling
I have noticed that when using buttons to control navigation (i.e. BACK, NEXT, FINISH, etc) the buttons will not respond to repeated click events without first moving the mouse. This was resolved with the trackAsMenu attribute set to true. However, I also observe this same behavior with the

[flexcoders] Flex 2b2: [repost] Cairngorm SequenceCommand question

2006-04-19 Thread Tobias Patton
Hello list;   SequenceCommand contains the executeNextCommand() method:           public function executeNextCommand() : void         {        var isSequenceCommand : Boolean = ( nextEvent != null );        if( isSequenceCommand )

RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread Carson Hager
The duplicate request problem is a known issue.  With Java implementations, we catch and ignore IOException. It's not optimal because we can't differentiate between the faulty player upload and an actual IO problem. I remember there being some case sensitivity issue with file_io.swf. I want to

RE: [flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Steven Webster
Works for me :)   Steven WebsterPractice Director (Rich Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338

[flexcoders] Flex2b2: Question about controls and mouse events

2006-04-19 Thread Tobias Patton
Hello List;   One of the panels in my appliction has a check box immediately to the left of a text input field. I noticed that when I would click and drag (right to left) to select all the text in the text input, sometimes the value of the check box would change. It turns out that to ch

[flexcoders] FB2 :: Tile MXML Component :: Not allowing to drag components in design

2006-04-19 Thread Michael Schmalle
Hey, Is this a bug or just something that is not implemented yet? I have created a mxml component that subclasses Tile. I am in design view and flex builder will not allow me to drag in controls IE the CheckBox. If I add them in mxml code view and then switch to design view, they show up. Pe

RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread João Fernandes
Ok some info: Just tried now with firefox since the only problem with it is the fact that cfm pages used for uploading files can't access authentication set by setCredentials: Call from a cfc: Request: POST /flashservices/gateway?macromedia=rocks HTTP/1.1 Host: srv_desenvol User-Agent: Mozill

[flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Robert Thompson
Cairngorm is very interesting.  I've read the docs and understand the purpose.Would it be fair to say that Cairngorm is essentially the following:An architectural framework (not app framework) that serves as sort of a "rudder" (as you would find on a boat) for standard development patterns that

RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread Carson Hager
Right...those other tools will work just fine. The headers are the key to everything here.  There are known issues in 8,0,22 that are the cause of some of the file upload strangeness. Those issues have been noted here in the past. Carson Carson

RE: [flexcoders] [F2B2] Newbie question about styling a nested panel

2006-04-19 Thread Mark Lapasa
Thx Gordon, >From what you've said, I think I will break the nesting relationship and do something along the lines of... - inner will no longer be relative to outer - outer and inner will have to be absolute in coordinates. - inner will overlay on top of outer. -Original Message-

RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread João Fernandes
No problem Carson, I'm only using http and relative paths for upload. I'll hardcode the full URL and see if the same behavior is confirmed. For the headers part, something like serviceCapture or Paros right? Hope you'll recover soon :) João Fernandes Dep. Informática - Área de Desenvolvime

[flexcoders] BETA 2: Setting up a Data Services Project

2006-04-19 Thread Alexander Tsoukias
Can anyone help me setup a data services project? I can't seem to get the whole configuration right so I can use RO etc... Please, anyone! Thanks, Alexander -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.ma

RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread Carson Hager
João, Apologies for the late response. I've been out sick.  If you're not using SSL, I would start by using something like tcptunnel or another http monitor to watch the traffic, in particular the headers.  We have seen this happen with file upload when using relative URLs or also when switchin

RE: [flexcoders] [F2B2] Newbie question about styling a nested panel

2006-04-19 Thread Gordon Smith
If you get back the inner Panel's alpha, it will be 1, it isn't getting overridden. But the alpha of a parent determines a transparency not only for it but for all of its children; this is the Player handles many properties in a hierarchy of DisplayObjects. If you had alpha="0.5" on both, the i

Re: [flexcoders] FDS - Problem configurating message destinations

2006-04-19 Thread Nirav Mehta
Hi, This may not be relevant, but it's something we struggled with FDS so I will share. We had CF running on the machine, setup FDS and the built in JRun server. Made all the changes to the .xml files. The java-dao examples worked well, but when we moved to CF, it started giving weird prob

RE: [flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread Benoit Hediard
Sorry, I don't think that getMetaData() is going to be useful in Application.cfc. It will only gives you info on your current Application.cfc... Since, the remote object call is a request to the /flex2gateway servlet, this is logical that cgi.SCRIPT_NAME=/flex2gateway. So you can't use the cgi

RE: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread Steven Webster
Oh man, I write a 6 page article series and still people go on and on and on about ViewLocators :)  We innovated the ModelLocator pattern in Cairngorm, and have done our best to communicate the practices around using the ModelLocator, over ViewLocator (a relic from our Flash RIA days). Cairngor

[flexcoders] Flex hangs when server times out session

2006-04-19 Thread jfournet
My flex interface hangs when the jboss server automatically times out the session after 30min of being idle.   How do I detect this and create a new session so that I can automatically send the user to the login screen again. Thanks, Brent -- Flexcoders Mailing List FAQ: http://gro

[flexcoders] The 'correct' cairngorm class syntax?

2006-04-19 Thread Rick Schmitty
Hello, quick and easy (hopefully) question I've seen some variations on defining a class for a file in com/mycompany/myapp/vo import org.nevis.cairngorm.vo.ValueObject; public class myVO implements ValueObject or public class myVO implements org.nevis.cairngorm.vo.ValueObject also I think i

[flexcoders] Re: Can't use RemoteObject on HTTPS ONLY Server?

2006-04-19 Thread Steven Toth
Thanks for the notes.  I wasn't aware of the fact that you need to specify the context root on the compiler.  I assumed (I know it's not good to assume) that whatever was in the config files in WEB-INF/flex directory of the web app would be loaded and used at runtime.  I guess it's based on

Re: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread Stanislav Zayarsky
Actually I think that this two frameworks almost the same. The same patterns, with very little difference. By the way ViewLocator is bad practice. So you can try Cairngorm, I think you will get more support here with this framework. Best regards Stanislav On 4/19/06, JesterXL <[EMAIL PROTECTE

[flexcoders] [F2B2] Newbie question about styling a nested panel

2006-04-19 Thread Mark Lapasa
I have an outer panel and an inner panel. The problem is that the inner Panel's styling properties are being overrided by the outer most parent eventhough I explicitly define them. Am I wrong in thinking inner components in-line should take precendence over itself? Thx -- Flexcoder

[flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread arieltools
Arp? Cairngorm? ...? A little of you light on this matter would be appreciated. I've been using ARP for a while with Flash projects. I've read that migrating would be as easy as change the ArpForms to MXML forms. So it sound very promising. By the other hand, I've heard Cairngorm is more wide

[flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread sn197412
Hello. Thank you for information. "getMetaData" needs a agrument = object. What should I set for the argument at Application.cfc?? -- Shigeru ( http://Shigeru-Nakagaki.com ) --- In flexcoders@yahoogroups.com, "Benoit Hediard" <[EMAIL PROTECTED]> wrote: > > In your RemoteObject/CFC, you shoul

Re: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread JesterXL
If you are coming with Flash, stick with ARP.  If you want to learn something new, try Cairngorm as it has a VeiwLocator.  Most Flex developers utilize Cairngorn, but both know what a Command, Delegate, ServiceLocator, and ModelLocator is so the lingo is very similiar since they have a lot in

[flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread sn197412
Hello. Actually we can't use onRequest method when CFC was accessed via FlashRemoting. And I tryed onRequestStart method, but I just got "flex2gateway" information. So, how should I?? -- Shigeru ( http://Shigeru-Nakagaki.com ) --- In flexcoders@yahoogroups.com, João Fernandes <[EMAIL PROTECT

Re: [flexcoders] Re: Loading an SWC into Flex 2 Beta 2

2006-04-19 Thread JesterXL
Nope.  Understand that Flash Player 8 has a lot of bitmap API's that could work great for mapping applications; none of which were utilized in Yahoo Maps v1.  Combined with Flash Player 8.5's ability to close an active, open connection, and suddenly you have the opportunity to make Yahoo M

[flexcoders] FDS - Problem configurating message destinations

2006-04-19 Thread Thomas Rühl -akitogo-
hi folks, i just started playing around with the flex data services a little and tried out the sample chat application that aou can find on the labs site - it is called 'Simple Chat Application'. However, I quickly ran into a problem regading the configuration of dewstinations and channels in

[flexcoders] Image size problem

2006-04-19 Thread rama satoskar
Hi everyone, This is the first time i am posting a message here. So dont mind my ignorance about the levels at which i can send messages out here. I am trying to build small applications in flex2.0. I am facing a problem with placing different sized images in containers. I want all the images to be

[flexcoders] FDS - Problem configurating message destinations

2006-04-19 Thread Thomas
hi folks, i just started playing around with the flex data services a little and tried out the sample chat application that aou can find on the labs site - it is called 'Simple Chat Application'. However, I quickly ran into a problem regading the configuration of dewstinations and channels in the

RE: [flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread Benoit Hediard
In your RemoteObject/CFC, you should use getMetaData() to get all the required informations: http://livedocs.macromedia.com/coldfusion/7/htmldocs/0488.htm Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de João Fernandes Envoyé :

RE: [flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread João Fernandes
Well, that variable is available with the correct CFC name. I just tested in onRequest and I get the path to the CFC. Don't you? João Fernandes Dep. Informática - Área de Desenvolvimento Cofina media Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax (+351) 2

RE: [flexcoders] Minimize button on panel title bar

2006-04-19 Thread B.Brey
Works like a charm, thank you! -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of Dirk Eismann Sent: woensdag 19 april 2006 13:08 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Minimize button on panel title bar Sorry, hit that send button

[flexcoders] Flex webservices framework

2006-04-19 Thread Jonas Windey
Hi,   I’m looking for the link I came across some weeks ago, with a nice framework on using webservice classes in Flex 2.0 (I think it was still the alpha version) It provided some example classes that you could use to simplify the events etc.   Anyone remembers this? Thanks for your

[flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread sn197412
Hello and thank you for replay. I want to know which CFC called via RemoteObject at Application.cfc. Like CGI.SCRIPT_NAME. --Shigeru (http://Shigeru-Nakagaki.com) --- In flexcoders@yahoogroups.com, João Fernandes <[EMAIL PROTECTED]> wrote: > > What kind of information are you looking for? > >

[flexcoders] Re: Could not resolve to a component implementation ??

2006-04-19 Thread bhaq1972
sorry its itemrenderer. flex2docs are out-of-date --- In flexcoders@yahoogroups.com, "bhaq1972" <[EMAIL PROTECTED]> wrote: > > flex2? cellrenderer is now listItemRenderer > --- In flexcoders@yahoogroups.com, Arnaud GARCIA > wrote: > > > > hi all, > > > > Any Idea for this error: > > Could not r

RE: [flexcoders] Minimize button on panel title bar

2006-04-19 Thread Dirk Eismann
Sorry, hit that send button too early: override protected function createChildren():void { super.createChildren(); button = new Button(); b.width = 16; b.height = 16; titleBar.addChild(b); } to correctly position the button override the updateDisplayList() method which will get called e

RE: [flexcoders] Minimize button on panel title bar

2006-04-19 Thread Dirk Eismann
Try to add the Button to the Panel's titleBar UIComponent instead. This way you can still use includeInLayout = true and the Button will work as expected. Just make sure to explicitely set the width and height of the Button, otherwise it won't be drawn inside the titleBar. i.e. inside your Panel s

RE: [flexcoders] Re: All the bunch of idiots at Adobe, please note!

2006-04-19 Thread Steven Webster
Guys, I think everyone is pretty clear on this situation here, and the community is almost unanimous in recognising that this thread was inappropriate discussion. It's not on the topic of flexcoders, so can I please ask people that we move on from this thread and return to "flexcoding". Best wis

Re[3]: [flexcoders] LoadMovie in mx:Loader swf

2006-04-19 Thread Andriy Panas
Hello Jonas, Wednesday, April 19, 2006, 1:02:18 PM, you wrote: > I'm loading an swf > that's using loadMovie() to load an external jpg (if I can get this working, > I can integrate our old tile-based zoomify component in flex) OK, now your situation is more clear to me. Waldo Smeets is an exper

[flexcoders] Re: Could not resolve to a component implementation ??

2006-04-19 Thread bhaq1972
flex2? cellrenderer is now listItemRenderer --- In flexcoders@yahoogroups.com, Arnaud GARCIA <[EMAIL PROTECTED]> wrote: > > hi all, > > Any Idea for this error: > Could not resolve to a component implementation ?? > > I use a simple datagrid > > > >

[flexcoders] Minimize button on panel title bar

2006-04-19 Thread B.Brey
I've managed to get a button positioned correctly on a panel using includeInLayout = false. But it seems that there is something blocking events to the button now (Button does not work). Does anyone have any ideas on how to fix this? with regards, Bas -- Flexcoders Mailing List FAQ: http:/

[flexcoders] Could not resolve to a component implementation ??

2006-04-19 Thread Arnaud GARCIA
hi all, Any Idea for this error: Could not resolve to a component implementation ?? I use a simple datagrid ERROR >

Re: [flexcoders] Re: All the bunch of idiots at Adobe, please note!

2006-04-19 Thread Marc Archuleta
I have met John Bennett and have found him to be very friendly and helpful. I personally know that he has gained the respect of at least a few successful J2EE authors in my community. I also know he is a very busy person who is constantly traveling to meet with customers around the country in addit

Re: [flexcoders] Senior Full-time position open at Yah oo! Maps (Santa Clara, CA)

2006-04-19 Thread Ryan Stewart
 Sorry all, I replied to the wrong address.  It wasn't meant to go to the whole list.   -Ryan From: Ryan Stewart[mailto:[EMAIL PROTECTED]Sent: Tuesday, April 18, 2006 12:28 AM To: flexcoders@yahoogroups.com;Subject: [flexcoders] Senior Full-time position open at Yahoo! Maps (Santa Clar

Re: [flexcoders] Flex 2 Beta 2 Mouse Over Property

2006-04-19 Thread Faisal Abid
Thank You So Much Matt :) Matt Chotin wrote: > In your mx:states section I think it would be something like this. > > > ... > /> > > > Matt > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Faisal Abid > Sent: Monday, April 17, 2006 5:

RE: RE: [flexcoders] LoadMovie in mx:Loader swf

2006-04-19 Thread Jonas Windey
I'm not loading the .jpg in the Loader or Image control, I'm loading an swf that's using loadMovie() to load an external jpg (if I can get this working, I can integrate our old tile-based zoomify component in flex) Anyone else who has an idea? -Original Message- From: Andriy Panas [mailto

  1   2   >