Re: [flexcoders] FFMPEG GUI

2006-03-08 Thread apeonaut
with a fine felt-tip pen, make two dots on top of the o, take a screen snapshot of it, crop the new o then convert to true font! :) John C. Bland II wrote: Good stuff Sonke. (sorry...not sure how to make my o look like yours) :-) On 3/7/06, *Sönke Rohde* [EMAIL PROTECTED] mailto:[EMAIL

[flexcoders]To disable the nodes of a Tree..

2006-03-08 Thread riddhima taluja
Hi All, I am receiving an xml to display the tree...each node contains an attribute isGrayed=true/false. If this attribute is true, i have to disable that node for any other operation. I am using a rowRenderer class for the same.The function setValue() is written as follows:- var initValue

[flexcoders] Error can not resolve a multiname reference unambiguously...

2006-03-08 Thread Richard Schutten
Hi there,I still get the following error: Can not resolve a multiname reference unambiguously. flash.display:Loader(fromframework.swc(mx/controls/loader)) are available. Please take a look at my code:?xml version="1.0" encoding="utf-8"?mx:Application

RE: [flexcoders] embedding a Flex GUI in a Java app

2006-03-08 Thread Richard Leggett
Hi Brooks, Eric D was looking into this just recently, maybe his blog posting will help you out, I posted a link to another project in there that states = Flash 8 support that runs cross platform. http://ericd.net/2006/03/flash-running-in-java-application.inc Richard From:

[flexcoders] Simpler than Flex??????

2006-03-08 Thread flash6designeronline
Hi , I was just looking for something simpler than flex, I came across this on net, named OpenMacro Its a framework for developing RIAs based on Flash. looks good though. heres the link http://www.fruition.in/openmacro -- Flexcoders Mailing List FAQ:

[flexcoders] Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Tim Sawyer
I'm having a problem trying to get a set of tabs generated from a web service. Full code for my component is pasted at the end of the message. The problem is down to getting the results from the web service and getting the tabs to rebuild from that list. If I do: tabsDataProvider = new

[flexcoders] Label make it selectable.

2006-03-08 Thread Eugene Louw
Hi, This is a extreme basic q. Just thought someone could help me with it. I can't get my labels to be selectable? Eugene Louw11 Khartoum RoadEcclesallSheffieldS11 8RDHome : +441142686221Mobile :

RE: [flexcoders] Label make it selectable.

2006-03-08 Thread Andrew Trice
Try using mx:Text instead of mx:Label. -Andy _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY From: flexcoders@yahoogroups.com

[flexcoders] datagrid column assistance needed

2006-03-08 Thread gault17
I'd like to set the protection and color of a datagrid column based on the content of another column in the datagrid. I've tried using a cellrenderer with the following code in setValue: if (item.nodeId != xyz) { listOwner.getCellIndex().columnIndex.editable = false; } else {

RE: [flexcoders] Is it possible to show 2 datatips at the same time

2006-03-08 Thread Matt Horn
Specifically, in 2.0, you set the chart's dataTipMode property to multiple. More info is here: http://livedocs.macromedia.com/flex/20beta1/docs/1592.html Hth, Matthew J. Horn Flex docs -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: dynamically destroy child from parent

2006-03-08 Thread rgwilson26
Thanks, that makes sense. I have one problem though that I can't seem to figure out. I am using createChild() in Comp#1 which creates comp#2. Comp#2 includes all text inputs including a delete button. Is it possible to have that child delete itself, or is it better to have the parent delete

RE: [flexcoders] Re: dynamically destroy child from parent

2006-03-08 Thread Andrew Trice
You could try something like this (from the child) parent.destroyChild(this); I havent tried it, but I think it should work. _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office:

[flexcoders] Re: Simpler than Flex??????

2006-03-08 Thread pauland2513
--- In flexcoders@yahoogroups.com, flash6designeronline [EMAIL PROTECTED] wrote: Hi , I was just looking for something simpler than flex, I came across this on net, named OpenMacro Its a framework for developing RIAs based on Flash. looks good though. What little I saw was

RE: [flexcoders] Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Geoffrey Williams
Try: tabsDataProvider = new ArrayCollection(event.result); tabsDataProvider.dispatchEvent (new CollectionEvent ()); -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tim Sawyer Sent: Wednesday, March 08, 2006 7:25 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Simpler than Flex??????

2006-03-08 Thread Michael Schmalle
Maybe this is just a plug ;-) BTW, Is there an etitquet for these . What the heck is the point of putting a question mark in the subject line of a discussion list anyway! Arn't most of these posts questions regaurdless. Maybe one question mark but common, this is going to start to

Re: [flexcoders] Re: Simpler than Flex??????

2006-03-08 Thread Joe Berkovitz
I think the best thing about the site has to be the company slogan: Life within the lifelessness... is what we Inculcate. After that, what is there to add? ... . .. .j pauland2513 wrote: --- In flexcoders@yahoogroups.com, flash6designeronline [EMAIL PROTECTED] wrote:

[flexcoders] Flash Remoting Gateway and .Net

2006-03-08 Thread Jonathan Miranda
Since Im working in a .Net environment, I need to buy the Flash Remoting software from Macromedia/Adobe for .Net so I can use my nifty RemoteObjects but looking at the requirements, it says it runs on .Net SDK 1.0. Anyone know if they have a 2.0 version?

[flexcoders] Re: Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Tim Sawyer
Good plan, but I think I need to be more specific with the event. I get Error: Repeater.collectionChangedHandler: unhandled collectionEvent kind, 500 at mx.core::Repeater/mx.core:Repeater::collectionChangedHandler()[C:\dev\beta1\sdk\frameworks\mx\core\Repeater.as:1000] at

Re: [flexcoders] polymorphic interfaces

2006-03-08 Thread Peter Hall
I didn't realise Java behaved like that. And I think that is a flaw in Java. I hope ActionScript doesn't go the same route and, when this feature gets implemented, it behaves as an override and not an overload. Peter On 3/7/06, Matt Chotin [EMAIL PROTECTED] wrote: I realize

RE: [flexcoders] polymorphic interfaces

2006-03-08 Thread Matt Chotin
Yes Sho pointed out you can do this in C++ and I havent looked at C# but you may be able to there as well. So well see what happens in future versions. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Hall Sent: Wednesday, March 08, 2006 8:02 AM

[flexcoders] Re: Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Tim Sawyer
Interesting. This code: tabsDataProvider = new ArrayCollection(event.result); var lCollectionEvent : CollectionEvent = new CollectionEvent(); lCollectionEvent.kind = CollectionEventKind.REFRESH; tabsDataProvider.dispatchEvent(lCollectionEvent); causes the same

[flexcoders] flex builder2 internal build error

2006-03-08 Thread bhaq1972
Hi In one flexbuilder2 project containing approximately 15 simple mxml apps ( most of which are copies of ones from the livedocs). I am getting 'an internal build error has occured. please check the error log' error. As follows. Any ideas. cant go any further. any help will be appreciated

Re: [flexcoders] Re: Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Carolyn Cole
Hi! I know this may not be the right way, but you can call myCategories.executeBindings() or I found if I made a new Object added the data to that and then set the bound object to that: var tmpArray = new ArrayCollection(); var lResults : ArrayCollection = new

[flexcoders] Flex 2 Beta - App Vars - Runtime Crash

2006-03-08 Thread Scott Langeberg
Anyone know why these would be crashing the browser?import mx.core.Application; var url:String = String(Application.application.url); if (Application.application.parameters.userid != undefined) { var userid:String = String(Application.application.parameters.userid); if(userid) {

RE: [flexcoders] Error can not resolve a multiname reference unambiguously...

2006-03-08 Thread Roger Gonzalez
Change the line in loadImage to: var myloader:mx.controls.Loader = new mx.controls.Loader(); or var myloader:flash.display.Loader = new flash.display.Loader(); depending on which you want. If you were to have used mx:Loader as a MXML tag, we spell out the entire mx.controls.Loader

Re: [flexcoders] flex builder2 internal build error

2006-03-08 Thread Michael Schmalle
Sorry, ;( Search this list, about a month - 3 weeks ago I had the same issue and well, happy fishing! My problem was an id had the same name as a var myProp declared in an mx:Script tag. So essentially, I had; mx:Script var myButton:Button; /mx:Script app mx:Button id=myButton /

[flexcoders] Attempting to connect flex 2 to php :error #2070

2006-03-08 Thread Manuel Saint-Victor
I'm getting an error#2070 and I checked livedocs but find no further explanation. It's in the context of trying to use an HTTPService post to contact a php form. Is there somewhere online that details how to troubleshoot these problems? Mani -- Flexcoders Mailing List FAQ:

Re: [flexcoders] flex builder2 internal build error

2006-03-08 Thread Michael Schmalle
Oh yeah, one other thing. This has taught me to :: Treat the little yellow warning symbols as friends saying the more of me you get to go away, the more time on development I give you, spoken from the mouth of the yellow warning sprites. Yes, they are you closest friends... Peace, Mike On

Re: [flexcoders] Flash Remoting Gateway and .Net

2006-03-08 Thread John C. Bland II
Check out http://fluorine.thesilentgroup.com/fluorine/index.htmlOn 3/8/06, Jonathan Miranda [EMAIL PROTECTED] wrote: Since I'm working in a .Net environment, I need to buy the Flash Remoting software from Macromedia/Adobe for .Net so I can use my nifty RemoteObjects – but

RE: [flexcoders] Flash Remoting Gateway and .Net

2006-03-08 Thread Jonathan Miranda
As cool as it sounds, pawning an open-source option to a major client probably wont go well.(aka support, reliability down the line, etc) _ Jonathan Miranda Flexible Master of the Web Try not to become a man of success, but a man of value. -

[flexcoders] In actionscript, converting from string to number loses precision

2006-03-08 Thread Boon Chew
Anyone has any idea why it's not possible to convert a string to a number without losing precision?var s:String = "952.86";var i:Number = parseFloat(s);trace(i);trace(i - 952.86); // Not zero! - boon Yahoo! Mail Use Photomail to share photos without annoying attachments. --

[flexcoders] Re: Flex2 beta -- localToGlobal(), globalToLocal() bug

2006-03-08 Thread sufibaba
Hi Alex, I wasn't aware of the change. BTW, is there a published list of changes of this sort that you know of. Cheers, Tim --- In flexcoders@yahoogroups.com, Alex Uhlmann [EMAIL PROTECTED] wrote: How are you using it? Make sure you are using the return value. i.e.

[flexcoders] Re: Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Tim Sawyer
Thanks for that. executeBindings() didn't work though, it just didn't seem to fire the event. :-( My original mail below has me doing: private function populateCategoryList(event : ResultEvent) : void { tabsDataProvider = new ArrayCollection(); var lResults :

[flexcoders] Re: embedding a Flex GUI in a Java app

2006-03-08 Thread Brooks
Hey Richard, I saw Eric's post and your comment the other day and that sort of what got me on this trail. I've been using Don Park's SWTFlash library to embed the activeX control in a Java gui every since Darron Schall mentioned it on his blog, but I'm looking for a cleaner way to communicate

Re: [flexcoders] Re: Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Carolyn Cole
Hi! The difference between your code and mine was that I set a temp variable, made all the changes on the temp, and then assigned the temp to the bound variable. I don't know why, but assigning the changed temp variable seemed to react differently than changing the actual bound variable. I'm

[flexcoders] Flash Player 8.5 Release Date?

2006-03-08 Thread azhofeling
Currently have several projects in the queue that we would like to use Flex 2. Continued development in Flex 1.5 does not make sense given the non-portability issues. Has there been any dates suggested for a production version of Flash Player 8.5? Knowing this would help us decide the

Re: [flexcoders] Flash Player 8.5 Release Date?

2006-03-08 Thread Dave Carabetta
On 3/8/06, azhofeling [EMAIL PROTECTED] wrote: Currently have several projects in the queue that we would like to use Flex 2. Continued development in Flex 1.5 does not make sense given the non-portability issues. Has there been any dates suggested for a production version of Flash Player

Re: [flexcoders] flex builder2 internal build error

2006-03-08 Thread Jignesh Dodiya
it same happened to me some tilmes ago...little mistakes makes it so difficult...luckily we have YELLOW WARNING SYMBOLS ,,,they are really frendly On 3/8/06, Michael Schmalle [EMAIL PROTECTED] wrote: Oh yeah, one other thing.This has taught me to ::Treat the little yellow warning

RE: [flexcoders] Re: dynamically destroy child from parent

2006-03-08 Thread Gordon Smith
It's better to have a parent destroy a child than for a child to destroy itself. It a child destroys itself, it could be in a weird state during any code that executes after you call parent.destroyChild(this). comp2 can call a method in comp1 like this: click=parentDocument.deleteRow() -

[flexcoders] Question from a 1st time Flex user

2006-03-08 Thread christopherjdunn
Is there a way to set an event to happen at certain interval while the app is one? (IE: Every 5 minutes the app polls for new data and updates a graph or grid.) Chris -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Question from a 1st time Flex user

2006-03-08 Thread Gordon Smith
Yes. In Flex 1.X, use setInterval(). In Flex 2, use a Timer; setInterval() is still supported but isn't considered best practice. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of christopherjdunn Sent: Wednesday, March 08, 2006 2:58

RE: [flexcoders] Error can not resolve a multiname reference unambiguously...

2006-03-08 Thread Gordon Smith
In var myloader:Loader = new Loader(); you probably need to change both Loaders to be either flash.display.Loader or mx.controls.Loader, to dismbiguate these two classes which unfortunately have the same short name, like you did farther down with ldr2:flash.display.Loader =

RE: [flexcoders] polymorphic interfaces

2006-03-08 Thread Gordon Smith
Hi, Mike. The 'bubbles' property makes the event bubble up from child DisplayObject to parent DisplayObject. It has no meaning for events that aren't dispatched by a DisplayObject. In that case you'd have to redispatch it yourself to another object. - Gordon From:

[flexcoders] XMLList as dataProvder for TileList

2006-03-08 Thread Jonathan Bezuidenhout
Hi,I create a XMLList result from a query by using the e4x method - and I would like to use this as the data provider for a TileList.In the TileList I create a custom component as a listItemRenderer, and in that component I use e.g. [EMAIL PROTECTED] to try and display the value of my

RE: [flexcoders] In actionscript, converting from string to number loses precision

2006-03-08 Thread Gordon Smith
This is a bug. Can you please file it? Apparently when the AS3 compiler compiles trace(i - 952.86), it doesn't convert the 952.86 to the exact same Number that the player does when it executes parseFloat() on 952.86. They should produce identical Numbers, and the different should be

[flexcoders] 2.0b1 Performance invoking RemoteObject over network

2006-03-08 Thread thunderstumpgesatwork
Hi guys, I'm experiencing very bad performance invoking a Java RemoteObject (stateless) when the flex client is not running on the same system as the Flex server (over the network). When I say very bad performance, I mean 1.6 - 1.8 seconds from the time I call RO.send(...) in flex until the time

RE: [flexcoders]To disable the nodes of a Tree..

2006-03-08 Thread Tracy Spratt
Instead of setting item.enabled, which is the dataProvider item, shouldnt you set this.enabled (this being the current row of the control)? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of riddhima taluja Sent: Wednesday, March 08, 2006 2:50 AM

[flexcoders] Adobe Bridges Flash, Flex with AJAX

2006-03-08 Thread Renaun Erickson
Here is an article talking about Adobe's development of Flex-AJAX bridge frameworks. Adobe Bridges Flash, Flex with AJAX This is a great move by Adobe. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] .NET Webservices with Structure Parameters

2006-03-08 Thread mvbaffa
Hi All, When I call a method in a VB.NET webservice passing as parameter the class listed below public class UserAccountVO { public function UserAccountVO() {} public var id : Number; public var name : String; public var password : String; public var

[flexcoders] Effects - Newbie help

2006-03-08 Thread Brent Johnson
I'm having a litle trouble understanding how effects work. Apparently when you play() an effect, it is asynchronous, but I can't seem to wrap my head around a solution. I have a Timer set up. Each time it fires, I want to do the following: 1) Fade the Label to alpha=0.0 2) Change the Label

[flexcoders] Re: flex builder2 internal build error

2006-03-08 Thread seethinglong
Hi I had never develop any flex project. Recently trying with laszlo samples but laszlo decided to switch to open AJAX and become less dependant on Flash-based AJAX. Later I found FLEX. I downloaded and tried it yesterday and got the thing run smoothly with tomcat apache 5.5.12, Eclipse IDE

[flexcoders] Re: .NET Webservices with Structure Parameters

2006-03-08 Thread Dave Wolf
If this is Flex 1.5 we have seen it have issues with CompelxTypes (e.g. a struct) when using document/literal encoding (the default for .NET I believe). Can you modify the service to use rpc/encoded? If you have a good repro of this using doc/lit you should open a case so Adobe can work it.

Re: [flexcoders] Effects - Newbie help

2006-03-08 Thread JesterXL
Use Dissolve: http://www.jessewarden.com/archives/2005/10/mxeffectsfade_v.html - Original Message - From: Brent Johnson [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, March 08, 2006 9:47 PM Subject: [flexcoders] Effects - Newbie help I'm having a litle trouble

[flexcoders] Re: Effects - Newbie help

2006-03-08 Thread pk_wasp
the text on the label won't fade coz Flex uses device fonts by default if you use embedded fonts u should see the effect does anyone know if Flex 2.0 is going to support Flash Type e.g. that new font engine in Flash Player 8 which should sort this problem out? --- In

RE: [flexcoders] Adobe Bridges Flash, Flex with AJAX

2006-03-08 Thread Deepa Subramaniam
Hi Im glad you posted this J Here is more information about the Flex-AJAX bridge including steps to download and install it: http://labs.macromedia.com/wiki/index.php/Flex_Framework:FABridge Also Ely Greenfield, an engineer on the Flex Framework team and a frequent poster to this