Re: [flexcoders] about the Flex name...

2005-10-25 Thread Aldo Bucchi
i like it. sounds good. period. and the fact that it is a common name only makes the challenge bigger... and flex will live up to it!!! honestly ( PS. macromedia, I'll go pick up the check tomorrow at noon ) On 10/26/05, Manish Jethani <[EMAIL PROTECTED]> wrote: > On 10/21/05, Tariq Ahmed

RE: [flexcoders] Re: Web-services giving hell to implement

2005-10-25 Thread Matt Chotin
Just to add a little color to this about creating a proxy in two lines J   The proxy that Flex 1.5 provides (and Flex Enterprise Services will provide) is not a simple straightforward re-direction to the site of your choice.  We also make sure that things like cookies are transferred co

Re: [flexcoders] ADMIN: Re: Dividing the mailing list into categories

2005-10-25 Thread Manish Jethani
On 10/23/05, Steven Webster <[EMAIL PROTECTED]> wrote: > In the first instance, I'd rather we not fragment the list, have the > knowledge compartmentalised and suffer from people cross-posting to multiple > lists to try and get questions answered. Let's stick with one list, roll > with the punche

Re: [flexcoders] about the Flex name...

2005-10-25 Thread Manish Jethani
On 10/21/05, Tariq Ahmed <[EMAIL PROTECTED]> wrote: > there's a GNU project called Flex That Flex is extremely cool (there's also JFlex (Java)), and I used to get resumes of people applying for a job at MM because they thought it was about GNU Flex. :) Yahoo! Groups Spo

RE: [flexcoders] Remote Object not found in Flex config

2005-10-25 Thread Mercer, Dustin
Title: Remote Object not found in Flex config And make sure you are not running Flash Player 8.5.  I had issues with Flash player 8.5 and Named remote objects.  It was giving me a different error, but there were problems none the less.  After uninstall of 8.5, my app worked fine.  Very st

RE: [flexcoders] Re: (Flex 1.5 using Cairngorm Framework) MenuBars in PopUps not Working

2005-10-25 Thread Mercer, Dustin
This doesn’t sound like a cairngorm issue, but a flex depth issue. Try this…  Try making the window height about 50 pixels, and add a bunch of menu items to the menubar’s dataProvider, then try.  See if the menu is showing up under the window (you will be able to see that because the menu

[flexcoders] Re: (Flex 1.5 using Cairngorm Framework) MenuBars in PopUps not Working

2005-10-25 Thread kaibabsowats
More details are need? How is PopUp.mxml used? Whats the top component in PopUp.mxml,etc... You probably doing this but just to double check, in PopUp.mxml are you putting the AS function insdie > > (That works fine) > > - >

RE: [flexcoders] Redraw or Refresh DataGrid

2005-10-25 Thread Tracy Spratt
The surest way to make the dataGrid refresh is to re-assign the dataProvider: grdProducts.dataProvider = ModelProducts; or even grdProducts.dataProvider = grdProducts.dataProvider; Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of huhgawz Se

[flexcoders] Redraw or Refresh DataGrid

2005-10-25 Thread huhgawz
Hi all, The idea is to change the height of certain row. The next code does it well but after change the height of that row the grid need to be redraw. So I add the next line inside resizeFirstRow function but nothing is happen: grdProducts.redraw(); Someone help me pleaseThanks in advance.

RE: [flexcoders] Re: File Upload / FileIO

2005-10-25 Thread Carson Hager
It's helpful to include at least a snippet of the previous post so that we can know to which message you are responding. Was this to me or someone else? Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROT

RE: [flexcoders] TextArea - getting the caret x,y location?

2005-10-25 Thread Gordon Smith
I don't think this is possible in Flex 1.5, but it should be in Flex 2.0. Player 8.5 will have TextField APIs such as function get selectionBeginIndex():int; function get selectionEndIndex():int; function getCharBoundaries(charIndex:int):Rectangle; - Gordon -Original Message---

Re: [flexcoders] Using loadPolicyFile ( )

2005-10-25 Thread Muzak
this should answer all your questions regarding F8 security: http://www.macromedia.com/devnet/flashplayer/articles/flash_player_8_security.pdf regards, Muzak - Original Message - From: "knly browne" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 25, 2005 11:07 PM Subject: [flexcoders] U

[flexcoders] Re: File Upload / FileIO

2005-10-25 Thread mackdoyle
Where should the destination (upload) folder go by default? In the flex app root or the CF server root? Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/A77XvD/vlQLAA/Tt

[flexcoders] TextArea - getting the caret x,y location?

2005-10-25 Thread Peter Armstrong
Hi, I have an editable TextArea that will probably have to contain HTML text and may have a vertical scrollbar. Does anyone know how to get the x,y location of the caret inside of it (while typing)? I can handle the change event, but I don't know of any properties to use or methods to call to ge

[flexcoders] (Flex 1.5 using Cairngorm Framework) MenuBars in PopUps not Working

2005-10-25 Thread fowleryj
MenuBars aren't working properly in my pop-ups, whereas they are working just fine in my Main.mxml. In my pop-up, the File menu I've declared won't even drop down when I click on it. - In Main.mxml: (Th

[flexcoders] Using loadPolicyFile ( )

2005-10-25 Thread knly browne
I need to use a policy file to gain access to my web-service server ..can loadPolicyFile Give the same effect as placing the crossdomain.xml on the web-server... and if so how do i load the file from the same location that the application is being delivered specifying it from a URl Thanks..-- Ke

RE: [flexcoders] Remote Object not found in Flex config

2005-10-25 Thread Roger Gonzalez
Title: Remote Object not found in Flex config Did you just make these changes?   Try shutting down and restarting your server.  There was an issue someone else had recently where this wasn't picked up correctly without a restart.   -RogerRoger Gonzalez[EMAIL PROTECTED]   From: fle

RE: [flexcoders] Re: File Upload / FileIO

2005-10-25 Thread Carson Hager
That's correct. In order for it the FileReference object to be used in players pre 8.5, they typed it as Object and make dynamic calls against it. Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED]

[flexcoders] Re: File Upload / FileIO

2005-10-25 Thread mackdoyle
NP, thanks Carson. I am noticing that in the events box, when uploading a file, the fr parameter that is a refernce to the flash.net.FileReference is coming through as [object Object]. Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to help you

RE: [flexcoders] Re: File Upload / FileIO

2005-10-25 Thread Carson Hager
Got it. I'm definitely not a CF person so I wouldn't know what to tell you. :) Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY ext. 89 Mobile: 1.703.489.6466 -Original Messag

[flexcoders] Re: File Upload / FileIO

2005-10-25 Thread mackdoyle
With the included cffile for now Yahoo! Groups Sponsor ~--> Most low income households are not online. Help bridge the digital divide today! http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM --

RE: [flexcoders] Flex 2.0 web-service driving me up the wall

2005-10-25 Thread Sho Kuwamoto
Hi Kenlie.   You are almost there!   You have three choices:     1) Add a crossdomain.xml file to the server.    2) Request the HTML file from a web server on the same domain as your server (in this case, localhost).     3) Create a proxy.   You can find documentation on this here: http:/

RE: [flexcoders] Re: File Upload / FileIO

2005-10-25 Thread Carson Hager
How are you writing the file to the server file system? Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY ext. 89 Mobile: 1.703.489.6466 -Original Message- From: f

[flexcoders] Remote Object not found in Flex config

2005-10-25 Thread Michel Bertrand
Title: Remote Object not found in Flex config Hi ! I'm having the following error : Invalid value for 'named' - does not match any object name from the configuration file. I have already checked my config file and I'm sure to have the name of the remote-object there, however the erro

RE: [flexcoders] Security Sandbox Violation when loading image

2005-10-25 Thread Alon J Salant
Has anyone learned any more about this issue or come up with a solution?   I am experiencing a very similar problem: images loaded from another domain are generating Security Sandbox Violations of the form:   *** Security Sandbox Violation *** SecurityDomain 'http://host1/foo' tried

[flexcoders] Re: File Upload / FileIO

2005-10-25 Thread mackdoyle
I am gettin the error when I try to load my app's index page, which includes the FileIO object supplied by the Macromedia sample, in Flex Builder. Loading it in a browser seems to work fine, however so I am just doing that. Now it acts like it is working fine but the file I upload never shows up

[flexcoders] Is it Possible to Load the Policy file into the Flash player

2005-10-25 Thread knly browne
I was searching through the documentation and i saw a method called Security.loadPolicyFile(url:String)... I was just wondering if Loading that would fill the Gap of having to install the Crossdomain Policy file on the server that delivers the web-service.. Just trying everything i can.. Thank

[flexcoders] Flex 2.0 web-service driving me up the wall

2005-10-25 Thread knly browne
Good day again.. So..i got a copy of the server from the server engineer and started it up on my machine.. Created a web-service object in my project and compiled my app as it loads up i give me a security violation telling my that i can't acces the URL... now the port for the server is http://

[flexcoders] FLEX2: Date Cell Renderer Solved

2005-10-25 Thread Greg Johnson
It looks like :) Ok, here is what I did. First in the MXML I created a Currency Formater. Then in the dataGrid for the column I wanted to format I used the labelFunction parameter and in my Actionscript file I created a function. import mx.controls.gridclasses.DataGridColumn; public func

Re: [flexcoders] FLex & Java ASP & SQL Server

2005-10-25 Thread Clint Modien
nice... thanks for the tidbits steven... On 10/25/05, Steven Webster <[EMAIL PROTECTED]> wrote: Ponnusamy,> I just saw the possibility of flex 2 and I was wondering if> it was possible to retrieve data from an SQl server, like > (microsoft SQL or MySQL).> I understood that we could do this using

RE: [flexcoders] [Flex2] State and size

2005-10-25 Thread Ashish Goyal
Hello Stephane, It seems like setting resizeEffect on the panel is causing this bug. Remove resizeEffect="Resize" from the "searchPanel" then switching to the base state (currentState to '') should work. I have already logged the bug in the bugbase. Thanks for finding this issue. -Ashish >

[flexcoders] Sql & XML

2005-10-25 Thread ponnusamy mani
I am a very beginer for flex . i have been assigned for some assignments in Flex   i need to store datas in sql server from flex.if u can help me i will be really thank full to U   I need Java resources and flex too.Can we Update XML through flex .Can we use asp instead of JSP,Java Coldfusion  

RE: [flexcoders] FLex & Java ASP & SQL Server

2005-10-25 Thread Steven Webster
Ponnusamy, > I just saw the possibility of flex 2 and I was wondering if > it was possible to retrieve data from an SQl server, like > (microsoft SQL or MySQL). > I understood that we could do this using php or java.. but I > didn't found anything usefull on google.. > > Can't we connect direc

Re: [flexcoders] FLex & Java ASP & SQL Server

2005-10-25 Thread Clint Modien
slightly more helpful link...   http://msdn.microsoft.com/library/default.asp?url="">   On 10/25/05, Clint Modien <[EMAIL PROTECTED]> wrote: this would be a very poor architecture for a web application but you could use sqlxml to directly access sql server via http...   http://msdn.microsoft.co

Re: [flexcoders] FLex & Java ASP & SQL Server

2005-10-25 Thread Clint Modien
this would be a very poor architecture for a web application but you could use sqlxml to directly access sql server via http...   http://msdn.microsoft.com/library/default.asp?url="">     On 10/25/05, yourponnusamy <[EMAIL PROTECTED]> wrote: Hi,I just saw the possibility of flex 2 and I was wond

Re: [flexcoders] F2 Alpha: Repeaters and dynamic HTML text?

2005-10-25 Thread Muzak
Yeah, having the same issue (caching) when embedding assets. When embedding specific items from a swf file it either tells me it can't find the specified asset or when updating the swf, I get the old version. Usually, cleaning the project seems to do the trick (Project --> Clean). regards, Muza

[flexcoders] FLex & Java ASP & SQL Server

2005-10-25 Thread yourponnusamy
Hi, I just saw the possibility of flex 2 and I was wondering if it was possible to retrieve data from an SQl server, like (microsoft SQL or MySQL). I understood that we could do this using php or java.. but I didn't found anything usefull on google.. Can't we connect directly to the SQL serve

RE: [flexcoders] Re: BindingManager and Properties interogation.. (Flex 1.5)

2005-10-25 Thread Matt Chotin
I think we’re talking past each other here.  *DO NOT USE CURLY BRACES FOR [ClassReference]*  As soon as you use {} yes, you will put it in _bindings.  [ClassReference] is only so that you can specify a class name and have it linked so that you don’t have to use Binding to have the depende

RE: [flexcoders] F2 Alpha: Repeaters and dynamic HTML text?

2005-10-25 Thread Merrill, Jason
Sending this again because it never seems to have gone through:   Thanks Ashish – that works now.  Seems like a lot of work just to get it to render as HTML does, but oh well.  I guess there is a lot to learn about layout in Flex 2.   By the way, in the F2 Alpha, I could not get older

Re: [flexcoders] Date class question

2005-10-25 Thread Jeff Tapper
Take a look at my blog, I wrote a DateAdd for ActionScript class. http://jeff.mxdj.com/dateadd_for_actionscript.htm At 12:05 PM 10/25/2005, you wrote: >What is the easiest way to add 7 days to current day that is a flex's >action script Date object? > >Thank you > > > > > >-- >Flexcoders Mailing

RE: [flexcoders] Date class question

2005-10-25 Thread Benoit Hediard
One solution could be: var ONE_DAY:Number = 8640; // NOTE: 8640 milliseconds represents one day var someDate:Date = new Date(); someDate.setTime(someDate.getTime() + ONE_DAY*7); Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la par

[flexcoders] Date class question

2005-10-25 Thread Marcin Glowacki
What is the easiest way to add 7 days to current day that is a flex's action script Date object? Thank you Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/A77XvD/vlQLA

RE: [flexcoders] [Flex2] State and size

2005-10-25 Thread Sho Kuwamoto
There are currently some bugs in the state feature when it comes to percentage widths/heights, as well as widths and heights that are not explicitly set. We are planning on fixing these before release. -Sho -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] O

RE: [flexcoders] Re: Web-services giving hell to implement

2005-10-25 Thread Sho Kuwamoto
One more thing. You can write your own proxy. Depending on which server language you are using, and whether you need to deal with authentication or not, it can be as simple as two lines of code. Please see: http://labs.macromedia.com/wiki/index.php/Flex:Accessing_Data -Sho -Original Messag

Re: [flexcoders] How to upload file from local file system

2005-10-25 Thread Darron J. Schall
jagabcdeff wrote: >Hi, > >Now i am working on uploading file from local system to oracle >database. >How to do this with Flex. > > I've recently done this, and the process I used looks something like this: If Flash Player 7 and Non ActiveX player - Disable upload, prompt for upgrade to la

RE: [flexcoders] How to upload file from local file system

2005-10-25 Thread João Fernandes
Take a look here, João Fernandes Secção de Desenvolvimento Departamento de Informática -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jagabcdeff Sent: terça-feira, 25 de Outubro de 2005 15:52 To: flexcoders@yahoogroups.com Subject: [flexc

RE: [flexcoders] How to upload file from local file system

2005-10-25 Thread João Fernandes
Take a look here, http://www.macromedia.com/devnet/flex/articles/fp8_features.html João Fernandes Secção de Desenvolvimento Departamento de Informática -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jagabcdeff Sent: terça-feira, 25 de Outub

RE: [flexcoders] How to do constructor when extending Container

2005-10-25 Thread Tracy Spratt
Perhaps you don't really want to pass the data in the constructor? You can pass data into a custom component through the mxml declaration tag: Just declare a public var in the component "dataIn". Or make it a setter function if you want to take some complex action. Tracy -Original Message

[flexcoders] Re: Web-services giving hell to implement

2005-10-25 Thread Dave Wolf
The model actually hasnt changed. In Flex 1.5 you could also use the crossdomain.xml solution to allow the player to connect to a web service on a different host then it was downloaded from. Now in Flex1.5 you had the flexproxy servlet which would act as a proxy and redirect those calls tot

Re: [flexcoders] Web-services giving hell to implement

2005-10-25 Thread Spike
I would imagine that once the Flex Enterprise services become available you would connect to the webservice using that as a proxy the same way as you did in Flex 1.5. For now, you will have to either use a different webservice or create some sort of webservice proxy that sits on the same server

RE: Re: [flexcoders] Implementing ModelLocator pattern in AS3/Flex2

2005-10-25 Thread Benoit Hediard
Indeed, it works this way. Here is the working code for those interested.   TestLocator package {  public class TestLocator {private static var testLocator:TestLocator;[Bindable]  public var someProperty:String;public static function getInstance():TestLocator

[flexcoders] How to upload file from local file system

2005-10-25 Thread jagabcdeff
Hi, Now i am working on uploading file from local system to oracle database. How to do this with Flex. any help is appreciate.. Thanks, Jagadeesh Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet

Re: [flexcoders] File Upload / FileIO

2005-10-25 Thread JesterXL
...or are you talking about the actual ability to upload files via the File object in Flash 8? - Original Message - From: "JesterXL" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 25, 2005 10:51 AM Subject: Re: [flexcoders] File Upload / FileIO Something is accessing it. Meaning, Fla

Re: [flexcoders] File Upload / FileIO

2005-10-25 Thread JesterXL
Something is accessing it. Meaning, Flash 8 is currently viewing the SWF, or you have it open. FlexBuilder will not upload a file if something has a file handle open to the file. Close all applications referencing the SWF, reboot FlexBuilder, and try again. - Original Message - From

[flexcoders] How to upload file from local file system

2005-10-25 Thread jagabcdeff
Hi, Now i am working on uploading file from local system. How to do this with Flex. any help is appreciate.. Thanks, Jagadeesh Yahoo! Groups Sponsor ~--> Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.c

[flexcoders] Web-services giving hell to implement

2005-10-25 Thread knly browne
Good day awll... I have a little quirk with connecting to web-services in Flex 2.0. In flex 1.x you simply configured the service file that resides on the server and then you add you web-service object to you applications configure the wsdl and you good to go.. For flex 2.0 i see that the mode

RE: [flexcoders] checkbox in repeater

2005-10-25 Thread Husain Kitabi
Hi This works!!   Thanks.Matt Chotin <[EMAIL PROTECTED]> wrote: You should have access to mods as a 2-d array.   mods[i][j]   every mods[i] is the array of checkboxes for the listModules repeater.   For (var i:Number=0; i < mods.length; i++) {   For (var j:Number=0; j < mods[i].length;

Re: [flexcoders] Implementing ModelLocator pattern in AS3/Flex2

2005-10-25 Thread Clint Modien
It would if you created an internal var first   Test.mxml - http://www.macromedia.com/2005/mxml" xmlns="*">       myTestLocator.someProperty}" />       On 10/25/05, Benoit Hediard <[EMAIL PROTECTED]> wrote: I don't think that bindings works on singleton instance syntax.   Tes

[flexcoders] Get involved with Cairngorm 2.0 for Flex 2.0

2005-10-25 Thread Steven Webster
Benoit,   We're going to be looking to the Cairngorm community to work with us as we port to AS3.0, and embrace the new features of Flex 2.0 (those released, and those not yet released).  In the interim, we're pushing to have a Flex 2.0 friendly version of the current Cairngorm source avai

RE: [flexcoders] Implementing ModelLocator pattern in AS3/Flex2

2005-10-25 Thread Benoit Hediard
I don't think that bindings works on singleton instance syntax.   TestLocator.as - package {  public class TestLocator {private static var testLocator:TestLocator;public var someProperty:String;public static function getInstance():TestLocator {   if(testLoc

[flexcoders] Re: File Upload / FileIO

2005-10-25 Thread mackdoyle
I'm going to bump this because I never saw it show up in the list yesterday. Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM

[flexcoders] Re: Flex 2. Chart Installation problems

2005-10-25 Thread yaagcur
Matt Thanks for replying - I have got some livedocs examples working now I guess my problem was that I was just transposing the 1.5 chart examples. Hopefully there will be an update for 2.0 soon (inc drilldown on stacked charts) Andrew --- In flexcoders@yahoogroups.com, "Matt Horn" <[EMAIL PROTEC

Re: [flexcoders] Re: BindingManager and Properties interogation.. (Flex 1.5)

2005-10-25 Thread Scott Barnes
On 10/25/05, Matt Chotin <[EMAIL PROTECTED]> wrote: I was talking 1.5 for ClassReference, it shouldn't go in BindingManager if you don't have curly braces.  Not sure why it didn't behave for you. Nope, Still places them inside the binding Manager.heh found a bug then? i tr

[flexcoders] [Flex2] State and size

2005-10-25 Thread Stephane De Jonckheere
Hi all, I'm currently trying Flex 2 and the new State feature. I'd like to do some kind of fullscreen button. I managed to do that in Flex 2 but I have some problems. First of all I need to set the width and height back in a new State. Switching back to the Base State (setting currentState to nul

Re: [flexcoders] FlexBuilder 2 alpha outline view dosen't show

2005-10-25 Thread Paolo Bernardini
ok, thanks Matt, I hope it will make it to the final release because is a very usefull tool 2005/10/24, Matt Chotin <[EMAIL PROTECTED]>: Outline view isn't supported in the alpha.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paolo BernardiniS