Re: [Junk E-Mail - LOW] [flexcoders] My authentication help

2006-07-12 Thread Tom Chiverton
On Wednesday 12 July 2006 15:31, Shannon Hicks wrote: > Can we see the CFC? Shannon could also turn on the flex gateway debug (bottom of the services xml file) and double-check what is coming back. IIRC, return bools from CF appear as strings in AS. -- Tom Chiverton ***

RE: [flexcoders] Re: Addressing buried children in XML with default namespace- an easier way?

2006-07-12 Thread Brian Deitte
You can reference a namespace object if you put this in a file: package mypackage { public namespace DoSearch = "http://site.com/BackOffice/DoSearch";; } "import mypackage.DoSearch" in each class where you want to use it, and then "use namespace DoSearch". -Brian > -Original Messag

Re: [flexcoders] Re: Mac equivalent of ActiveX

2006-07-12 Thread Nick Collins
Patrick... gee that sounds an awful lot like... Apollo :-)If you're not familar with it, check it outhttp://labs.adobe.com/wiki/index.php/Apollo On 7/11/06, palmer2012 <[EMAIL PROTECTED]> wrote: This is something that I have been thinking about. Most of the so

RE: [Junk E-Mail - LOW] [flexcoders] My authentication help

2006-07-12 Thread Shannon Hicks
Can we see the CFC?   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick CollinsSent: Wednesday, July 12, 2006 9:18 AMTo: flexcodersSubject: [Junk E-Mail - LOW] [flexcoders] My authentication help I saw someone else posting about having custom authenticat

[flexcoders] My authentication help

2006-07-12 Thread Nick Collins
I saw someone else posting about having custom authentication, but my issue is a  bit different. I have an authentication script done in CFMX7 that seems to be working on the coldfusion side. Essentially it checks to see if the user is valid, if yes, it looks up the role they are assigned and re

[flexcoders] Re: Mac equivalent of ActiveX

2006-07-12 Thread palmer2012
The idea of bringing the rich internet application out of the browser and onto the computer would extend the possibilities of flex. It would be great to have a framework that you can develop flex applications within that is cross platform. And, it would have the functionality that Java Web

RE: [flexcoders] Change Text Color in FlexBuilder 2 Editors

2006-07-12 Thread Jack W. Caldwell
Darron:   Thanks,   Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darron J. SchallSent: Wednesday, July 12, 2006 6:37 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Change Text Color in FlexBuilder 2 Editors You have to tweak an XML file to cha

Re: [flexcoders] Re: SWF Loader

2006-07-12 Thread JesterXL
Yeah, basically. It's asynchronus communication. It's not as cool as myLoadedSWF.gotoAndPlay(2), but those are the breaks. - Original Message - From: "flexnewbie06" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 12, 2006 9:37 AM Subject: [flexcoders] Re: SWF Loader Thank you for your

Re: [flexcoders] HTTPS and Remote passwords

2006-07-12 Thread Tom Chiverton
On Wednesday 12 July 2006 14:28, Tom Chiverton wrote: > Secondly All right, fixed that, my bad :-) And word on HTTPS endpoints ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability

[flexcoders] Re: SWF Loader

2006-07-12 Thread flexnewbie06
Thank you for your response...I am not very familiar with LocalConnection, however I have a general understanding...would I need to create a "sender" lc in my Flex app and add a "receiver" lc in my SWF to make the two communicate? --- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED

Re: [flexcoders] Re: FDS question

2006-07-12 Thread JesterXL
Here's a performance comparison: http://blogs.adobe.com/mikepotter/2006/07/php_and_flex_js.html - Original Message - From: "mthielman11" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 12, 2006 6:52 AM Subject: [flexcoders] Re: FDS question OK so what everyone is saying then is that FDS

[flexcoders] Re: Addressing buried children in XML with default namespace- an easier way?

2006-07-12 Thread ben.clinkinbeard
Bumping this up in the hopes that someone (possibly from Adobe?) can offer an alternative, or at least an explanation of why this is the case. As it stands now, I will have to have these lines: namespace foo = "http://site.com/BackOffice/DoSearch";; use namespace foo; sprinkled throughout my app,

Re: [flexcoders] Dynamic ItemRenderer

2006-07-12 Thread Jean-Luc ESSER
I guess the best way of handling this would be to have a generic itemRenderer and load the corresponding components inside it, depending on a data value passed to the List dataProvider. That's how i would do it.   You can also do it in the List container via actionScript if you want, by set

[flexcoders] HTTPS and Remote passwords

2006-07-12 Thread Tom Chiverton
First question, to get you all started. If my CF server is running SSL over HTTPS port 443, what do I have to change in services-config.xml to make it work ? Changing http://archiving.localdomain:80/flex2gateway/"; class="flex.messaging.endpoints.AMFEndpoint"/> to https://archiving.localdomain:44

RE: [flexcoders] Camera.getCamera(name:String) does not work and crashes the player

2006-07-12 Thread Andrew Trice
I remember reading a post on Flexcoders that said the r15 release had a problem when trying to get a camera by name.  Try checking out the latest release candidate 9.0.16.0 available on www.adobe.com.     -Andy   _ Andrew Trice Cynergy Systems

Re: [flexcoders] Re: FileReference and mimetypes

2006-07-12 Thread Phil Marston
Well - it's a thought (that I hadn't had ;-) ) seems a wasteful exercise to have to go through ;-) Tom Chiverton wrote: On Wednesday 12 July 2006 12:27, Phil Marston wrote: you mean like http://host.com/getafile.php?23535 which is what I'm doing at the moment the server still

Re: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-12 Thread JesterXL
Yeah, sounds like what you have for DataService works.  I haven't spent time with DataService.   - Original Message - From: Dimitrios Gianninas To: flexcoders@yahoogroups.com Sent: Wednesday, July 12, 2006 9:11 AM Subject: RE: [flexcoders] Cairngorm ServiceLocator and FDS Not su

Re: [flexcoders] [Flex2] Cairngorm question

2006-07-12 Thread JesterXL
You don't need a Delegate. Before, functions were called in the scope of the calling object, but now they are called in the scope of where they are defined. Thus, this: myButton.addEventListener("click", Delegate.create(this, onClick)); now becomes: myButton.addEventListener("click", onClick

Re: [flexcoders] ASDoc for AS3?

2006-07-12 Thread Geoffrey Williams
There's a bunch of examples in the framework source and in the libraries posted on labs. --- In flexcoders@yahoogroups.com, "Steve Cox" <[EMAIL PROTECTED]> wrote: > > Matt, > > I wonder if it is possible someone could release some simple docs (or > even post here) the format we should be putti

[flexcoders] Dynamic ItemRenderer

2006-07-12 Thread ROUSSELIE David ROSI/SIFAC
Hi, I would like to use the List component with different type of data in its dataProvider and adapt each itemRenderer depending on the type of the data item : var dp: Array = [new A(), new B()] ... How can I use a "AItemRenderer" to handle A data type elements and "BItemRenderer" to handle B

[flexcoders] [Flex2] Cairngorm question

2006-07-12 Thread Thomas Rühl -akitogo-
Hi, I'm just walking through Steven's article about Cairngorm on the Adobe site again and I wonder where the mx.utils.Delegate class can be found. Has it been renamed or replaced in some way? How can I create a Delegate now? Cheers, Thomas Thomas Rühl

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-12 Thread Dimitrios Gianninas
Not sure this quite works for FDS. Because the instance of the DataService that we have on the client side has special properties that let us know what is happening with that data service. So we need to use the DataService instance in various places in the application in order to get things

Re: [flexcoders] SWF Loader

2006-07-12 Thread JesterXL
It's an AVM1Movie, not a MovieClip. Unfortunately, this prevents you from talking to the SWF; you have to use LocalConnection, or some other binary socket way. Have you tried with Flash 9 Alpha yet? I haven't had time but I bet this'd work. - Original Message - From: "flexnewbie06"

[flexcoders] Re: FDS question

2006-07-12 Thread mthielman11
OK so what everyone is saying then is that FDS is not ideal for our situation and is only used if real time data pushing is needed? So the bigger question is how does sending data back and forth with XML perform? I have consistently heard that XML is inefficient and has a lot of overhead, so

[flexcoders] SWFLoader Issues

2006-07-12 Thread flexnewbie06
Does anyone have any experience using SWFLoader to load SWF in Flex APP? Specifically, maniputlating the SWF. Thanks. Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TI

Re: [flexcoders] About Integrating Flex Data service with Flex Builder....

2006-07-12 Thread hank williams
Oh, I see. You havent done anything but run the FDS installer.Well, are you familiar with running webapps in a servlet container? If not then it will be very difficult to help you because FDS is based on the assumption that you know how to use a container or a J2EE server. If you dont, you need

[flexcoders] Re: Package with internal class problem

2006-07-12 Thread Bart Wttewaall
I guess I'm not permitted to delegate an internal class' public static variable through the public class' public static variable. Too bad, I had to create a lot of small classes for each cursor for the application to work. Still, I'm wondering if there's a way to package those classes to keep th

[flexcoders] Displaying data from servlet to the flex..

2006-07-12 Thread Mr.Unlimited
Dear People Im new to Flex.Im using Flex Buider 2 Beta 3.and i dont have Data service. Is there a way to send some data to java Servlet and bring back some data from the Servlet to the Flex Page? Please Help me. Some snippets would be really helpful.   Thanks And Regards Kris Do you Yah

[flexcoders] Array/ArrayCollection problem when migrating from Beta 3 to Flex 2 Final

2006-07-12 Thread sreedhar reddy
Hi, This is Sreedhar. I am working with Flex Builder 2, Java Server Pages, and SQL Server 2005. Currently, I am working on "Search based on Keyword". When I execute the search through the JSP, I am able to see the results. I am having a problem when displaying these results in a Flex DataG

[flexcoders] Re: Mac equivalent of ActiveX

2006-07-12 Thread palmer2012
This is something that I have been thinking about. Most of the solutions out there are flash online or flash offline but not that supportive of both at the same time. There are many cases where software needs to be an application and net savvy. For example, creating an application using flex

[flexcoders] Regarding Chart problem

2006-07-12 Thread Sachin Dharmapurikar
Hi All,   We are facing a strange problem in our application. Reproducing the same problem is very easy with following steps:   Open the dashboard sample provided with Flex Builder. Open results.xml file which has data to render. Except for one month remove all data

[flexcoders] SWF Loader

2006-07-12 Thread flexnewbie06
I am trying to cast swf as MovieClip in Flex 2.0. The SWF was created with Flash 8...I get an coercion error...is this something that can not be done or maybe I am doing it incorrectly. I have posted the error and my code. Any Suggestions? TypeError: Error #1034: Type Coercion failed: canno

Re: [flexcoders] viewstack design pattern issue

2006-07-12 Thread JesterXL
Well, either way, thanks for bringing it to my attention.  I dig the low level things, and this is pretty cool to know that it's that common across all UIComponents, in both 1.5 and 2.   The TextInput thing I mentioned, I didn't build.  I was using TextInputs everywhere, and my team members

Re: [flexcoders] Re: FileReference and mimetypes

2006-07-12 Thread Tom Chiverton
On Wednesday 12 July 2006 12:27, Phil Marston wrote: > you mean like http://host.com/getafile.php?23535 which is what I'm doing > at the moment > > the server still wouldn't know the mimetype to send though - I supply Ahh. Dump it to disk first ? -- Tom Chiverton ***

[flexcoders] Re: Camera.getCamera(name:String) does not work and crashes the player

2006-07-12 Thread Renaun Erickson
If I understand you right, you are having problems with "var camera:Camera = Camera.getCamera();" for any camera? or is your issue you are trying to dynamic selected a camera? Ok, first var camera:Camera = Camera.getCamera(); works in Flex 2 for me. You can check by going to my application that

[flexcoders] Displaying data from servlet to the flex..

2006-07-12 Thread Mr.Unlimited
Dear People Im new to Flex.Im using Flex Buider 2 Beta 3.and i dont have Data service. Is there a way to send some data to java Servlet and bring back some data from the Servlet to the Flex Page? Please Help me. Some snippets would be really helpful.   Thanks And Regards Kris     Yaho

Re: [flexcoders] About Integrating Flex Data service with Flex Builder....

2006-07-12 Thread Mr.Unlimited
Hi Hank Yea mite be big. but m new t this buddy. maybe my installation s wrong or somethin.. i installed Builder and then DS...can u jus telme how to use DS in builder. Thnx for ur response. m sry if my ques s wrong.. pl lemme know if my ques s wrong..   regards Krishank williams <[EMAIL PR

[flexcoders] Camera.getCamera(name:String) does not work and crashes the player

2006-07-12 Thread m88e24
Player version r15 (installed by the Flex builder install) Flex 2 final Win XP Pro SP2 (up to date) I may have multiple cameras connected to my PC and want to select the camera to use. I show a list of available cameras and uses the name to get a Camera instance. This always returned null. So I t

Re: [flexcoders] Change Text Color in FlexBuilder 2 Editors

2006-07-12 Thread Darron J. Schall
You have to tweak an XML file to change the syntax coloring in FlexBuilder 2.  It's undocumented / unsupported, but you can find more information about it here:  http://www.morearty.com/blog/2006/05/22/undocumented-flex-builder-changing-the-syntax-coloring/ -d jwc_wensan wrote: Unde

Re: [flexcoders] TileList's Horizontal Gap

2006-07-12 Thread Jean-Luc ESSER
Hey Ralf,   Creating the gap in the renderer would'nt do what i want. First because style applied to the cell of the TileList would apply to the gap created, which i do not want, second because it would not be a gap, meaning it would appear on the right edge of the last column, or the botto

Re: [flexcoders] Re: TileList's Horizontal Gap

2006-07-12 Thread Jean-Luc ESSER
Tim,   Unfortunatly, i saw this hack on a post regarding Flex1.5, maybe it was working then, but i can't get it to work here. Thanx anyway.   JL   - Original Message - From: Tim Hoff To: flexcoders@yahoogroups.com Sent: Wednesday, July 12, 2006 1:05 PM Subject: [f

Re: [flexcoders] Re: FileReference and mimetypes

2006-07-12 Thread Phil Marston
you mean like http://host.com/getafile.php?23535 which is what I'm doing at the moment the server still wouldn't know the mimetype to send though - I supply the header and I get it from what I stored in a type field in the table when the file was uploaded (the binary file data is stored in a

[flexcoders] Flex2 final - Another 'security error accessing url'

2006-07-12 Thread bhaq1972
Hi (I didn't want to take over Sathish's post but i have a similar problem.) My problem is as follows. I'm taking my flex app and trying to expose it to the internet. in our LAN environment, everything is okay. My flex swf is hosted on IIS...which also hosts my webservice. my flex app looks

Re: [flexcoders] TileList's Horizontal Gap

2006-07-12 Thread Ralf Bokelberg
Hi Jean Luc, can't you create an itemRenderer, which draws the horizontalGap itself? Maybe by placing a colored box at top and bottom? Another possibility would be to subclass TileList and add horizontalGap to it. Cheers,Ralf On 7/12/06, Jean-Luc ESSER <[EMAIL PROTECTED]> wrote: So

[flexcoders] Security error accessing url

2006-07-12 Thread Sathish K
Hi, I have a webservice (EAR file) that is deployed in the IBM Websphere 6.0 server.When we access the  webservice from a SWF application(sandbox)built using Flex 2.0 it gives a security error.How to resolve this security issue.  The Error Message:  [FaultEvent fault=[Rpc fault faultstring="Se

[flexcoders] Re: TileList's Horizontal Gap

2006-07-12 Thread Tim Hoff
Hey Jean-Luc, Set the horizantalGap property on the container that the TileList is in. -TH --- In flexcoders@yahoogroups.com, "Jean-Luc ESSER" <[EMAIL PROTECTED]> wrote: > > Sorry for asking this again, but i have been trying for a week or so to add an horizontal gap between renderers in a Til

[flexcoders] Security error accessing url

2006-07-12 Thread sathish_kumar_18
Hi, I have a webservice (EAR file) that is deployed in the IBM Websphere 6.0 server.When we access the webservice from a SWF application(sandbox)built using Flex 2.0 it gives a security error.How to resolve this security issue. The Error Message:

Re: [flexcoders] Re: FileReference and mimetypes

2006-07-12 Thread Tom Chiverton
On Wednesday 12 July 2006 11:15, Phil Marston wrote: > > If you issue a redirect to the content, your web server should provide > > the correct MIME type. > but the file doesn't exist (it's reconstructed from a database entry) so > the server knows nothing about it. You could rig things up so that

Re: [flexcoders] Re: FileReference and mimetypes

2006-07-12 Thread Phil Marston
but the file doesn't exist (it's reconstructed from a database entry) so the server knows nothing about it. Tom Chiverton wrote: On Tuesday 11 July 2006 17:04, Phil Marston wrote: Would you suggest a different way? This was developed in the old days ;-) so Flex and RIA approac

[flexcoders] TileList's Horizontal Gap

2006-07-12 Thread Jean-Luc ESSER
Sorry for asking this again, but i have been trying for a week or so to add an horizontal gap between renderers in a Tile List. I don't want to use specific columnWidth and/or padding in the renderer. I want real gap. So that backgroundColor for the cell for exemple won't fill the gap. Gap

RE: [flexcoders] Explorer-like drag & drop tree

2006-07-12 Thread Jason Hawryluk
Also one last thing about the Delayedtimer.as The original was flex 1.5. The idea, and credit for it goes to someone else (not sure who) I think it was richinternet blog or something. I just made it work for flex 2.0 in a different context from the original. It is quite different though.

[flexcoders] Re: Explorer-like drag & drop tree

2006-07-12 Thread sourcecoderia
Also one last thing about the Delayedtimer.as The original was flex 1.5. The idea, and credit for it goes to someone else (not sure who) I think it was richinternet blog or something. I just made it work for flex 2.0 in a different context from the original. It is quite different though. Cr

[flexcoders] Flexcoders Message delays ?

2006-07-12 Thread sourcecoderia
Anyone else seeing delays in some of their messages ? Or not getting through at all? It's making it hard to follow, some get through faster then others, must be yahoo! or my provider. Perhaps I should just use the editor on the yahoo site instead of outlook. Jason -

RE: [flexcoders] Explorer-like drag & drop tree

2006-07-12 Thread Jason Hawryluk
Found the original source (flex 1.5) for it.   http://www.richinternet.de/blog/index.cfm?mode=entry&entry=71F7DA77-DE13-D55B-91A5E87F8040B02F   Thanks dirk, I make great use of it :)       -Message d'origine-De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part

Re: [flexcoders] Re: FileReference and mimetypes

2006-07-12 Thread Phil Marston
Thanks Derek, That's the conclusion I was arriving at too. I hate having work around something that should be there, it's like working with MS's non-standards compliance :-( Derek Adams wrote: I had the same problem with mime types.  My solution was to use the file suffix to figure

RE: [flexcoders] Explorer-like drag & drop tree (Delayed Open Example)

2006-07-12 Thread Jason Hawryluk
Here you guy's, gal's go don't forget to change the package location. I use this technique in allot of way's. Just let me know what you think ;) Code is below. The delayed class, and the sample use.   Cheers   Jason   Begin: DelayedTimer.as   /** * This class provides a timer abstraction,

RE: [flexcoders] Explorer-like drag & drop tree

2006-07-12 Thread Jason Hawryluk
Forgot to mention how to see the effect.   Drag an item over any closed folder and it will open after a set period of time (1sec)   Jason     -Message d'origine-De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Jason HawrylukEnvoyé : mercredi 12 juillet

Re: [flexcoders] Re: FileReference and mimetypes

2006-07-12 Thread Tom Chiverton
On Tuesday 11 July 2006 17:04, Phil Marston wrote: > Would you suggest a different way? This was developed in the old days > ;-) so Flex and RIA approach probably brings a whole new perspective to > this. If you issue a redirect to the content, your web server should provide the correct MIME ty

Re: [flexcoders] Re: Authentication - please help

2006-07-12 Thread Tom Chiverton
On Tuesday 11 July 2006 16:57, Dmitry Miller wrote: > First of all, thanks a bunch for your response. Are you planning to > implement session management yourself or are you planning to reuse > FlexSession? If you are choosing 1st route, would you be able to make > your home brewed session repositor

RE: [flexcoders] Re: ACcess SOAP fault code

2006-07-12 Thread Daniel Tuppeny
Excellent! And thanks for providing code! I didn't realise there was a PreSendRequestHeaders method, and probably would've come up with a crazy OTT solution! :-) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kelly BirrSent: 12 July 2006 06:16To: flexcoders@yaho

[flexcoders] Flex 2.0 DataService Question

2006-07-12 Thread sinacapho
Dear all, I am a Flex 1.5 developer now switch to Flex 2.0 . I want to ask some question which maybe very easy for all of you. I am now try to Use HttpService or WebService to access some data. But all of them return "Security error Access Url" in faultstring. i have use the

Re: AW: [flexcoders] ASDoc for AS3?

2006-07-12 Thread Tom Chiverton
On Tuesday 11 July 2006 18:01, Matt Chotin wrote: > It will be a few more weeks, developers have been on vacation after the > launch and we're still getting it all together. That's cool, they deserve a nice break ! -- Tom Chiverton This emai

Re: [flexcoders] Re: Authentication - please help

2006-07-12 Thread Tom Chiverton
On Wednesday 12 July 2006 03:46, Dmitry Miller wrote: > The only question that I have about your approach is how do I show the > u/p form without leaving the page when my session expires? Also, it You could have the app call a 'ping' method on the server to stop the session timing out. > would b

Re: [flexcoders] Is anyone having trouble contacting Adobe and/or purchasing Flex?

2006-07-12 Thread Tom Chiverton
On Monday 10 July 2006 14:34, Douglas Knudsen wrote: > Our purchasing dept is having problems currently getting new keys and > upgrade info for us as a Flex subscription holder. Do post when you find the answer ! -- Tom Chiverton This email

Re: [flexcoders] Mac equivalent of ActiveX

2006-07-12 Thread Tom Chiverton
On Tuesday 11 July 2006 20:26, ryanm wrote: > > Open source != open specs. > You can get source on the web if you look for it. I can find source for individual controls, but not the framework. > Not even close. When was the last update to it ? -- Tom Chiverton ***

RE: [flexcoders] Explorer-like drag & drop tree

2006-07-12 Thread Jason Hawryluk
I have a little support task to do first then i'll put it up.   :°   jason   -Message d'origine-De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Jonas WindeyEnvoyé : mercredi 12 juillet 2006 09:45À : flexcoders@yahoogroups.comObjet : RE: [flexcoder

RE: [flexcoders] Explorer-like drag & drop tree

2006-07-12 Thread Jonas Windey
Cool, can’t wait. I’ve now gotten so far that I can drag items on every node, but the only thing I need to force now is that if you drag an item on a node on the last level, it needs to be open for flex to allow dropping on it. For now I’ll just open every node in my tree in the initia

RE: [flexcoders] [FLEX 2 Final] URLRequestMethod.POST produces compile time error

2006-07-12 Thread Carson Hager
I've never seen anything on it but it seems reasonable to me. I'm not sure how this would have worked in beta 3 ( not saying it didn't ) unless ActionScript classes picked up the implicit imports of the application object somehow. That being said, I can't imagine how that would have worked

RE: [flexcoders] viewstack design pattern issue

2006-07-12 Thread Jason Hawryluk
I didn't hear about it, I just kind of came across it while working on a runtime xml double binding solution for a future product. I tried various events but not worked as well as that one. I only used  1.5 for about 2 months while I was learning flex so can't comment on that one. Agreed

<    1   2