[flexcoders] Re: Video is playing double

2007-02-23 Thread jack_freud
I've tried it both ways and that doesn't seem to be the problem. The sound is actually playing twice simultaneously. Thanks, Jack --- In flexcoders@yahoogroups.com, Karl Johnson [EMAIL PROTECTED] wrote: Do you have videoDisplay.autoPlay set to false? By default it is set to true so there

RE: [flexcoders] XML not loading.. can't see what i have wrong.

2007-02-23 Thread Tracy Spratt
Is your handler getting called? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jayson Sent: Thursday, February 22, 2007 9:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] XML not loading.. can't see what i have wrong.

[flexcoders] Plugging Rails into FDS? Or using WebObjects/EnterpriseObjects for FDS?

2007-02-23 Thread karstendwolf
Hi there, has anybody tried to hack Rails' ActiveRecord as a backend for FDS? I know about WebOrb, but I would like to stick with FDS. Alternatively, has anybody already used WebObjects/EnterpriseObjects? I've been using this technology for nearly 10 years now and I still prefer it to Hibernate.

RE: [flexcoders] Firefox (2.0.0.1) content caching and HTTPService calls

2007-02-23 Thread Private Romeo
Currently it’s a static XML file being served by an Apache Server. Any idea? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager Sent: Freitag, 23. Februar 2007 19:31 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Firefox (2.0.0.1) content caching

Re: [flexcoders] Access Flex components from browser

2007-02-23 Thread Impudent1
Tracy Spratt wrote: ExternalInterface lets you communicate with javascript in the html wrapper. It is delightfully easy to use. And synchronous! I just learned this yesterday :)... ExternalInterface does not work out of the browser. So any script created with adobe extendscript(ecma) launched

[flexcoders] Re: ServiceCapture Proxy from Eclipse

2007-02-23 Thread Brendan Meutzner
Er... nevermind. If you set the Help contents to open in an external browser it works... Brendan On 2/23/07, Brendan Meutzner [EMAIL PROTECTED] wrote: Hi, Just wondering if anybody has found a solution to not being able to view the Help files from Eclipse while using ServiceCapture. The

[flexcoders] ServiceCapture Proxy from Eclipse

2007-02-23 Thread Brendan Meutzner
Hi, Just wondering if anybody has found a solution to not being able to view the Help files from Eclipse while using ServiceCapture. The browser instance which displays the help files doesn't use the Proxy instance properly or something... Thanks, Brendan -- Brendan Meutzner Stretch Media -

[flexcoders] Re: Drag Drop Question

2007-02-23 Thread jmfillman
Thank you Jae. That is far better than what I had worked out. This had led me to another question. When I move one of the buttons, the mouseUp function is firing and going to the correct IF statement. What it isn't doing is moving the item to the (x,y) position specified in the IF statement,

RE: [flexcoders] Re: flex sdk

2007-02-23 Thread Gordon Smith
What MXML editor are you talking about? An MXML editor is part of the FlexBuilder plugin for Eclipse, not part of the free SDK. If you are using just the free SDK you can write MXML files with any text editor. - Gordon From: flexcoders@yahoogroups.com

RE: [flexcoders] FDS and Cairngorm / Individual Item Updates

2007-02-23 Thread Dimitrios Gianninas
init the DS only once in the model, so u always have a reference to it so in GetAllProductsCommand: ds.fill(model.products) in LoadProductCommad: product = Product(myDataGrid.selectedItem); ... now the Ui edits the product object so in SaveProductCommand: ds.commit(); Dimitrios

[flexcoders] Re: Just curious, A big development team or individual developers

2007-02-23 Thread Derrick Grigg
TEAM ... thankfully

[flexcoders] Re: FDS and Cairngorm / Individual Item Updates

2007-02-23 Thread billy_d_white
I think the updates should take care of themselves. In my app (which uses Cairngorm, FDS, Java, Hibernate, Spring) I have all my actionscript domain objects on the flex side declared with the [Managed] and [RemoteClass] tags. So if you call the fill method to populate a collection, you can then

Re: [flexcoders] Just curious, A big development team or individual developers

2007-02-23 Thread Jim Cheng
boy_trike wrote: I wonder how many people are working on TEAM to develop their flex applications (and how many are 1 or 2 men (whoops I mean PEOPLE) developers. Please discount the Graphic artists, HTML coders. et. al. If you have 3 or more people working on the same flex

RE: [flexcoders] Runtime CSS and embeded fonts not working

2007-02-23 Thread Joan Lafferty
Hilary, This should work. I have created a very simple test and it works fine. Here it is: SimpleApp.mxml ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* creationComplete=initFont() mx:Script ![CDATA[ import

Re: [flexcoders] checkbox with tree component

2007-02-23 Thread dorkie dork from dorktown
Saurav, In case you want to buy a solution http://www.teotigraphix.com/flex2/components/controls/checkboxtreefx. On 2/22/07, sauravsinha79 [EMAIL PROTECTED] wrote: Hi, I want to add a check box with each tree node(branch/leaf). Any help will be really appreciated.I went through some sample

RE: [flexcoders] Re: Quadrant chart

2007-02-23 Thread Ely Greenfield
For both. It's really not very complex...just a moveTo, lineTo, and you're done. This is the easiest way to draw a line at a specific location. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

Re: [flexcoders] Charting - create a secondSeries with Actionscript 3.0 ???

2007-02-23 Thread Brendan Meutzner
Hey Mike, mx:CartesianChart id=chart dataProvider={_localChartData} secondDataProvider={_localChartData} series={_firstSeriesArray} secondSeries={_secondSeriesArray} mx:Script ![CDATA[ [Bindable] private var

[flexcoders] Best way for editing massive amounts of data?

2007-02-23 Thread gotgoose09
I'm web-enabling by using Flex 2 a project that has many fields for each record in the database. A typical UI screen has upwards of 35 fields in it. This application has to be easy to use. e.g. explained over the telephone to customers who use it. I was thinking that one way to make editing

RE: [flexcoders] Re: FDS and Cairngorm / Individual Item Updates

2007-02-23 Thread jason.proulx
Yup, that's pretty much the way mine works now, though (before I change it) it works a bit more optimistically. For every field I have on my form I have an mx:Binding / back to the object so that the form works bidirectionally. But it's a little too aggressive :-) It seems like this approach

Re: [flexcoders] Re: Drag Drop Question

2007-02-23 Thread Jae Pak
Hi jmfillman, You made it all the way, except for the variable referencing part. As opposed to creating a new Button object, you just need to get a reference to the Button you've been dragging around, i.e. var selectedButton:Button = event.target as Button; Enjoy. - Jae public function

Re: [flexcoders] Re: FDS and Cairngorm / Individual Item Updates

2007-02-23 Thread Carlos Rovira
Hi, If you use autoCommit=false in your dataservice (in a normal application this should be normal since you must to do validations) , I recommend you to have the following code in your update method; public function update(someVO:SomeVO):void { if(service.commitRequired) {

Re: [flexcoders] Re: FDS and licensing issues

2007-02-23 Thread Chris Allen
Chaitanya, Depending on what you are doing with FDS you could more than likely use Red5 in its place. Red5 is now supporting AMF3 with remoting and RTMP sockets. It also does video and audio streaming, which FDS doesn't do. We have been building a few applications using Flex2 and Red5, and so

[flexcoders] Re: ServiceCapture Proxy from Eclipse

2007-02-23 Thread ben.clinkinbeard
I think I remember reading that adding a period to the end of the help url stored in preferences fixes it as well. Now if I could just get our intranet urls to work while SC is open... Ben --- In flexcoders@yahoogroups.com, Brendan Meutzner [EMAIL PROTECTED] wrote: Er... nevermind. If you

[flexcoders] Quick Flex 2.0 questions

2007-02-23 Thread Jamie
I am architecting an RIA that needs to be able to connect via TCP/IP to a back-end server. I've looked at a lot of technologies, and Flex 2.0 Flash seems to be the best front end solution. 4 questions: 1) I'm assuming that Flex retains the Flash socket ability to communication over TCP/IP?

[flexcoders] Creating a Video Player in Flex

2007-02-23 Thread Alan Rother
Hey everyone, I'm still a total newbie at Flex... so bear with me. I just want to build my own video player in Flex, for no specific reason except so I can learn more about it. I've gotten as far as all of the examples I can find will take me. I can get the video to load, to start, stop and

RE: [flexcoders] Runtime CSS and embeded fonts not working

2007-02-23 Thread Kyle Quevillon
I have just posted the last 2 parts of a 3 part series (unless I come up with more parts) on: Changing embedded True Type fonts at Runtime in Flex Applications 1. Using loader: http://blog.739saintlouis.com/2007/02/12/changing-embedded-true-type-fon ts-at-runtime-in-flex-applications/

[flexcoders] Re: Quadrant chart

2007-02-23 Thread Mehul Doshi
ok...i'll look at it a little more patiently and get back to you if i get stuck. i realize what u've built is quite extensible and powerful...so thanks. I just hope I don't end up spending more time trying to figure it out than I should. Mehul. --- In flexcoders@yahoogroups.com, Ely

[flexcoders] Re: Just curious, A big development team or individual developers

2007-02-23 Thread simonjpalmer
huh, what an interesting question. INDIVIDUAL However, have budget for large team... --- In flexcoders@yahoogroups.com, boy_trike [EMAIL PROTECTED] wrote: I wonder how many people are working on TEAM to develop their flex applications (and how many are 1 or 2 men (whoops I mean PEOPLE)

[flexcoders] Re: [FDS2+Spring/Hibernate] VOs reaching the backend with id=0 (unsaved-value

2007-02-23 Thread simonjpalmer
I think there are a lot of people trying it for obvious reasons. However all evidence would suggest it doesn't work. I really hope Adobe step up to this combination as it is extremely powerful. I'd be interested to hear from anyone who has a genuine real-world application running with a full

Re: [flexcoders] Creating a Video Player in Flex

2007-02-23 Thread Muzak
http://www.mail-archive.com/flexcomponents@yahoogroups.com/msg01102.html regards, Muzak - Original Message - From: Alan Rother [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, February 23, 2007 11:23 PM Subject: [flexcoders] Creating a Video Player in Flex Hey everyone,

[flexcoders] Right Aligned Text in a UIComponent

2007-02-23 Thread Nate Pearson
I'm adding a label to a UIComponent at a dynamic x location. The text for that label is also dynamic. How can I make it so the x location is the right side of the label? Here is my code: var endDate:Label = new Label(); endDate.graphics.lineStyle(1,0x00); endDate.text = data.EDText;

Re: [flexcoders] Multiple Instances of CF / FDS and messaging broken?

2007-02-23 Thread Niklas Richardson
No, we only had to change the destination name in the messaging-config.xmlfile in FDS. That fixed it. On 2/23/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: We're working with Adobe on, I think, this same issue. Are you just changing the service name in Flex Integration in CF Admin?

Re: [flexcoders] Multiple Instances of CF / FDS and messaging broken?

2007-02-23 Thread Niklas Richardson
And yes, the CF name does need to be different under Flex Integration in the CF Admin too. On 2/24/07, Niklas Richardson [EMAIL PROTECTED] wrote: No, we only had to change the destination name in the messaging-config.xmlfile in FDS. That fixed it. On 2/23/07, [EMAIL PROTECTED] [EMAIL

RE: [flexcoders] Re: FDS/Hibernate Sample of updating hierarchical list of values

2007-02-23 Thread Jeff Vroom
My apologies for the Hibernate problems y'all have been having. We do have a bunch of users happily using this for relatively simple use cases but as your domain models grow in complexity, you may run into some problems. Here are the set of problems I currently know about. 1)

RE: [flexcoders] Quick Flex 2.0 questions

2007-02-23 Thread Gordon Smith
I'm assuming that Flex retains the Flash socket ability to communication over TCP/IP? Yes. All Flash Player 9 APIs (the flash.* packages) are available in Flex. If all I want to do is deliver a Flex Flash app on the client that talks to a back end server over TCP/IP, I don't need to be

[flexcoders] Space Between List Items?

2007-02-23 Thread Ethan Miller
Is there any way aspect of the List component that allows for controlling the amount of space between items? Yes, it can be done with itemRenderers, but it feels a tad crude... cheers, ethan

RE: [flexcoders] Space Between List Items?

2007-02-23 Thread Joan Lafferty
Would the rowHeight property help you? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ethan Miller Sent: Friday, February 23, 2007 5:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Space Between List Items? Is there any

RE: [flexcoders] ResourceBundle

2007-02-23 Thread Dimitrios Gianninas
u hve to specify an extra source folder as the path to the bundle: -source-path=WEB-INF/flex/locale/en_US or whatever you path may be Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] Test for Network Connection

2007-02-23 Thread Jim Cheng
Matt Maher wrote: I'm writing an on-line/off-line application that will sync your data once you return to an on-line status. Instead of calling an http service every 15 seconds to test for connection status, is there some way I can see deeper into the client's machine to see the status of

Re: [flexcoders] Quick Flex 2.0 questions

2007-02-23 Thread Jim Cheng
Jamie wrote: 1) I'm assuming that Flex retains the Flash socket ability to communication over TCP/IP? Yes. And Flash Player 9 also allows you to make client binary socket connections in addition to the XMLSocket functionality that was seen in earlier versions of the Flash Player that were

[flexcoders] Adobe Flex Ant Tasks CruiseControl.NET

2007-02-23 Thread dreki_herra
Hi all, I'm working with these two services to use automated integration for our projects here at Esria. I was alerted to the fact that CruiseControl and Ant no longer catch compile errors when using the Flex Ant Tasks's mxmlc task

RE: [flexcoders] Re: FDS and Cairngorm / Individual Item Updates

2007-02-23 Thread Dimitrios Gianninas
Like Carlos demonstrated in his example it is there. The form items will update the data model but if the autoCommit is false nothing will be sent to the server. Once there user does decide that he/she wants the data to be updated, then they hit the Save button or whatever and it will invoke

[flexcoders] Re: Just curious, A big development team or individual developers

2007-02-23 Thread softwarecat
For our project it is a TEAM of 2. I am entirely new to flex and AS3 with more of a design/html background. I'm now knee (sometimes it feels neck deep) in the front end design while my partner is more code PHP background is providing the code and architectures. It seems to work. We are

[flexcoders] URL Link in Flex Application

2007-02-23 Thread Lisa Lee
Can you tell me how to be able to have a user click on a link (button, whatever) from within a Flex application and have it take the user to a non-Flex, regular web page within their browser? It's probably a simple answer but I'm still getting up to speed with Flex. Thanks!

RE: [flexcoders] Quick Flex 2.0 questions

2007-02-23 Thread Dimitrios Gianninas
Amen, Flex Builder saves time and the debugger helps. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Gordon Smith Sent: Fri 2/23/2007 8:19 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Quick Flex 2.0 questions

[flexcoders] New Project: FlexCRUD -- Create Update Delete for Flex/amfphp/cairngorm

2007-02-23 Thread Mike Crowe
Hi folks, I'm in the process of releasing my system generation utility via riaforge. Essentially, I'm using about 15 templates to generate 100 files. From a 1' perspective, I have created a generic template based system that generates: * Cairngorm commands: Get, GetAll, Save,

[flexcoders] setCredentials not working with amfphp 1.9 beta 2

2007-02-23 Thread Kun Janos
Hi all. I'm trying to use setCredentials in Flex and beforeFilter without any luck. Can anyone post a small example on how can we do that? When I use setCredentials on the Flex service, Charles shows me that an error message was returned, because it enters to if(!$handled) { $uriclasspath =

<    1   2