[flexcoders] FDS Hosting Need

2006-10-02 Thread Alexander Tsoukias
Hi all, Is there any interest in FDS hosting services? If so, how would you categorize pricing? Thanks, Alexander -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] Re: issue with progress bar loader becoming stuck

2006-10-02 Thread Tom Chiverton
On Thursday 28 September 2006 17:04, wayneposner wrote: Is there a method or some call to use that forces the UI to refresh. At the point you want that to happen, take all the later code out into a separate method, and use callLater to execute it. -- Tom Chiverton Helping to apprehensively

Re: [flexcoders] [Flex2] Coldfusion startup error regarding RMI and FlexAssembler

2006-10-02 Thread Thomas Rühl
@Darron: since I'm currently not running JBoss, I think this isn't the issue. @João: thanks a lot , I think deleting the file finally did it. At last, CF starts up without errors and everything seems to work for now. Thanks for all your interest! Cheers, Thomas

Re: [flexcoders] Setting properties to children technique

2006-10-02 Thread Sergey Kovalyov
Gordon, thank you for this answer. Are there any alternatives? I have one component inside another with the same properties. Actually, the second one is the pop up and the first one is a kind of decorator. Together they work the waysimilar to ComboBox (ComboBox itself and List respectively also

Re: [flexcoders] Re: Setting properties to children technique

2006-10-02 Thread Sergey Kovalyov
But if I have pure ActionScript component, where should I set binding? In initialize() override after super.initialize() call? On 9/29/06, Doug Lowder [EMAIL PROTECTED] wrote: Hi Sergey, Another idea is to get/set a variable instead of a property on a component, and then bind that component's

[flexcoders] Pure ActionScript binding for protected and private properties

2006-10-02 Thread Sergey Kovalyov
Hi All! Is there any way to set binding for either protected or private properties using ActionScript? BindingUtils works with public properties only, because all the protected and private members are invisible to it. Are there any plans to move binding methods to the Object class in future

Re: [flexcoders] Re: binary in xml

2006-10-02 Thread EECOLOR
The flash player is capable of runtime loading of the PNG file format, so that should not pose a problem. Greetz EE __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] How to create a date timeline

2006-10-02 Thread Jeroen De Vos
Title: How to create a date timeline Guys, I want to create a timeline to visualize dates, for example to show the reignlengths of the kings of a country. How can I do this? Jeroen. Deze e-mail en alle gekoppelde bestanden zijn officiele documenten van het Gemeentelijk

Re: [flexcoders] Socket buffers

2006-10-02 Thread EECOLOR
Hello, as far as i know the progress event fires as soon as the sockets detect data being in the socket. You could read the data into a byte array if 1 progress cycle did not contain a complete message for example. Typically however the sending side should use a buffer and send it as soon as

Re: [flexcoders] Re: Mapping Fails, CFCs

2006-10-02 Thread EECOLOR
Custom tag roots work like classpaths for CFC's, create a custom tag root via the administrator and place common cfc's inthere. Another possible solution for you might be a local proxy cfc. All calls to the backend go through this CFC. We use a proxy CFC for various reasons: - authentication

Re: [flexcoders] Re: Setting properties to children technique

2006-10-02 Thread Sergey Kovalyov
Also I have found that in case I use code-behind and children are declared in MXML, their properties are accessible directly from setter even in initialization time without null pointer exception. Is it stable behaviour and could be used as a feature? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Accessing resources in one project from another

2006-10-02 Thread hank williams
Ok so I posted this yesterday, but it was a sunday, and I'm sure lots more people are here today so I thought I would try again. I have two projects and I am dead in the water until I can figure out how to bring them together. Hence the urgency. Any help appreciated. Hank On 10/1/06, hank

Re: [flexcoders] Re: loading animated gifs at runtime

2006-10-02 Thread Andrew Bourne
Thanks, though not the answer I was hoping for I can work around it in this instance. Cheers, Andrew passive_thoughts wrote: I took the official Adobe Flex class back in August and the instructor told us that animated gifs were not supported. V --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Event Issue? Error #1046: Type was not found or was not a compile-time constant

2006-10-02 Thread wayne_badu_johnson
Hi It may be an issue with your imported classes, remove flash.event.* * XML class; Try the following: import flash.net.URLLoader; import flash.net.URLRequest; import flash.events.*; import mx.utils.ObjectUtil; public function ConfigInit() :void{ var loader:URLLoader = new URLLoader();

[flexcoders] Re: Parent View States Control Child Component View States

2006-10-02 Thread Bruce Denham
Rather than setting up some kind of binding mechanism to the view state, which still may be better (don't know), I'm doing something like this, in which a Presenter (controller) puts the View in one of its view states (using a public method defined on the View's interface), and the parent loops

[flexcoders] Installing FDS As Win2003 WebService

2006-10-02 Thread Francois Dejardin
Hi all,I'm trying to install fds as service on Win2003.. i've read that it was possible with jrunsvc but it doesn't work with the following command line : jrunsvc.exe -install jrun-server "Flex data service" "Flex Data Service"(I find the jrunsvc from Coldfusion installation directory)Is

[flexcoders] Re: can you unload an swf file from an mx:image control?

2006-10-02 Thread wayne_badu_johnson
Hi Jamie Try just setting the source to null. private function stopImage():void{ myImage.source = null; } // mx:Image id=myImage source=test.swf/ mx:Button label=Stop click=stopImage()/ Also you may want to check if your sounds in the flash file are streamed or event sounds,

[flexcoders] Setting View States of Children from Parent

2006-10-02 Thread Bruce Denham
I have a parent component with various view states defined. Each child component of the parent defines the same set of view states. So from the child components, I want to bind to the currentState of the parent, so that when something changes the parent state, the view states of the children will

RE: [flexcoders] Installing FDS As Win2003 WebService

2006-10-02 Thread João Fernandes
What is your server called? If your java server instance is called fds and located inside drive:\{jrun.home}\servers\ run the command from the bin folder drive:\{jrun.home}\bin : jrunsvc -install fds Flex Data Service Flex Data Service João Fernandes From:

Re: [flexcoders] Installing FDS as Web Service

2006-10-02 Thread Tom Chiverton
On Sunday 01 October 2006 17:27, Francois Dejardin wrote: Is it something wrong ? I dunno. You say it doesn't work but don't say what you tried, what happened, and what you expected to happen. -- Tom Chiverton Helping to advantageously transition out-of-the-box patterns

[flexcoders] Technical Problems - Flex IDE Keeps Crashing, any ideas?

2006-10-02 Thread tomnoonmds
I have been using Flex for a total of 4 months in this time I have used, v1.5, v2.0 Beta 3 and on the 09/08/06 Martin Dawes Systems' Research and Development department purchased two copies of flex builder with charting, one a download version and a copy sent via post. Since the downloaded date I

[flexcoders] Re: Setting View States of Children from Parent

2006-10-02 Thread Bruce Denham
Here's here's one way I might do this: public function setViewState(state:String):void { //Sets parent's view state this.currentState = state; // The parent is responsible for controlling its child // component view states. All components must implement

Re: [flexcoders] Technical Problems - Flex IDE Keeps Crashing, any ideas?

2006-10-02 Thread Tom Chiverton
In your workspace directory, there should be a .log file (possibly inside .metadata) - is that any help ? -- Tom Chiverton Helping to centrally negotiate robust data This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is

[flexcoders] How can we achieve this effect in flex??? Any Ideas???

2006-10-02 Thread omkarjoe
Hi All, Plz go thru the following link http://www.apple.com/macosx/theater/dashboard.html When user drops a widget in to the dashboard, It gives a watery effect to the screen. Would anyone one has any ideas of implementing it in Flex... I really loved that effect... Thanks in Advance

[flexcoders] UID(unique identifier)

2006-10-02 Thread KP
Hi All, Someone tried using uid which is present in flex. Please suggest its usage and implementation. Thanks Kumar __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] [Flex 2] The speed of adding/moving nodes in a tree decreases with more complica

2006-10-02 Thread box110a
I have a tree that is populated with an object graph from FDS. Drag and Move is enabled on the tree. I have a TreeDataDescriptor with an addChildAt method implemented. Whenever I modify the parent or the newChild object inside of this method, the tree fires off some event, which takes longer and

[flexcoders] Re: [Flex 2] The speed of adding/moving nodes in a tree decreases with more comp

2006-10-02 Thread box110a
After a fresh cup of joe, I think I've figured it out. Because I've retrieved the underlying object graph from FDS, it is still under the control of the DataService's propertyChange event. This gets fired everytime a property changes in the tree. The solution is to call

Re: [flexcoders] UID(unique identifier)

2006-10-02 Thread EECOLOR
Hello, in the flex development guide you can find a chapter about uid on page 142 Data providers and the uid property. Greetz Erik __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Chart Axis Effects?

2006-10-02 Thread Mark
I'd like to add an Interpolate effect to the vertical axis of an AreaChart so that as the data of the chart changes the labels scroll up and down, rather than just disappear or appear. Is that possible? I know I can set the showDataEffect on the AreaSeries but I don't see a similar effect for

Re: [flexcoders] Work with Flex Builder became Misson Impossible

2006-10-02 Thread Igor Costa
I've also did the same tips and tricks of your mentions.Creating separated workspaces for each project isn't a good idea, likewise I don't have too much time to take switching both of them in my machine.The goal proposal are, I could only disable the automatic build. and keeps a low price of

Re: [flexcoders] Technical Problems - Flex IDE Keeps Crashing, any ideas?

2006-10-02 Thread Igor Costa
Tom this is a quite problem of overwrite files in the last files you've used in Flex Builder beta programFor sure, unistall your Flex Builder manually and than install again.Regards. On 10/2/06, tomnoonmds [EMAIL PROTECTED] wrote: I have been using Flex for a

Re: [flexcoders] Re: loading animated gifs at runtime

2006-10-02 Thread Igor Costa
Andrew Adobe Flex 2 does not support no more GIF formats, only PNG, 8 up to 32bits and JPG 16 bits.Due the the render problem for them it's a really easy compared to the compress engine of GIF format carry's. RegardsOn 10/2/06, Andrew Bourne [EMAIL PROTECTED] wrote:

Re: [flexcoders] How can we achieve this effect in flex??? Any Ideas???

2006-10-02 Thread Igor Costa
Hi, omkarjoeThis is a simple feature that it's already in Flex Classes.import mx.effect.easing.*mx:Move id=idofyours duration=in milli seconds easingFunction=Elastic.easeIn /take that in mind.RegardsOn 10/2/06, omkarjoe [EMAIL PROTECTED] wrote: Hi All, Plz go

Re: [flexcoders] How can we achieve this effect in flex??? Any Ideas???

2006-10-02 Thread Igor Costa
Ahh sorry.I just right now undrestood your request.It's really amazing effect. Just see the same at waterEffect in the Gskinner blog.regardsOn 10/2/06, Igor Costa [EMAIL PROTECTED] wrote: Hi, omkarjoeThis is a simple feature that it's already in Flex Classes.import mx.effect.easing.*mx:Move

Re: [flexcoders] How to create a date timeline

2006-10-02 Thread Igor Costa
I've want too if it fits this way, Come on man, YOU HAVE TO CREATE NOT ASK Things like that.On 10/2/06, Jeroen De Vos [EMAIL PROTECTED] wrote: Guys, I want to create a timeline to visualize dates, for example to show the reignlengths of the kings of a

[flexcoders] Flex 2 y DataGrid

2006-10-02 Thread wespinozab
Hola. Necesito ayuda con Datagrids, lo que deseo hacer es agregar una nueva fila al DataGrid, pero no como comúnmente se hace: un textbox y un botón de agregar. Más bien lo que deseo es que se pueda agregar escribiendo en la última fila del DataGrid, logrando una interacción más directa. Me

[flexcoders] NET web service from C#

2006-10-02 Thread elzumbasefue
Hello, I'm new in this group, recently I has been started with flex, and I've a some questions. I'm a C# developer mainly, and i triying to make the business model in C# and the client in flex 2. The problem is, i develop a web service, and run it in Visual studio. I think that is enought to

[flexcoders] Re: exposing data in custom components

2006-10-02 Thread Douglas Knudsen
bumpy bump. On 10/1/06, Douglas Knudsen [EMAIL PROTECTED] wrote: Ok, going through some discussions with some fellow employees on this. What is a best practise for exposing data in custom components? case 1: simple data. eg, a fancy date selection component that exposes a selectedDate value.

[flexcoders] Flash Debugger Crashing IE! Please Help!

2006-10-02 Thread wayneposner
This problem just came up all of a sudden. I trying to run my app in debug mode to trace some variable values and everytime the code execution gets to my break point I get the following error appear in an IE popup window: The following add-on was running when this problem occured: File:

[flexcoders] easy way to change a grid column background or font color

2006-10-02 Thread boy_trike
I want to be able to conditionally change the font color (or attributes) or the background color of a datagrid. I have seen the RowColorDataGrid example and this seems like I am using an elephant gun when hunting rabbits! Is there an easier way? thanks bruce -- Flexcoders Mailing List

[flexcoders] Re: How can we achieve this effect in flex??? Any Ideas???

2006-10-02 Thread omkarjoe
Hi Igor, Thanks for your reply... But gskinner hav kinda floating effect.. I am looking for the effect that can generate those waves when u drop the widget... Lookin forward for replies... Omkar --- In flexcoders@yahoogroups.com, Igor Costa [EMAIL PROTECTED] wrote: Ahh sorry. I just

[flexcoders] Bug with stacked ColumnSet and LogAxis

2006-10-02 Thread thunderstumpgesatwork
Hi guys, I think I found a bug when using a stacked ColumnSet and a LogAxis. When both are used in combination, I only see one of the series. Take away the LogAxis and it displays properly, change the stacked set to clustered and it displays properly. All code to reproduce is below. Any ideas

[flexcoders] Viewstack / Navigator Filtering Best Practice?

2006-10-02 Thread Jamie O
Hello, Looking for a little help as far as best practices for filtering a navigator (togglebuttonbar, buttonbar) from a viewstack data provider. Each viewstack is a canvas and I only want to present the selection in the togglebuttonbar IF the XML node which contains the data for the canvas

[flexcoders] Click Event in Item Renderer... firing a second barrel ?!

2006-10-02 Thread jamiebadman
Hi, Can someone help ? I've created a custom item renderer for a tree in which I have a listener on the mouse click event. Unfortunately, though, the main app code also needs to act on the click event - I have the tree defined as: mx:Tree id=tvCompanies itemRenderer=CompanyTreeItemRenderer

[flexcoders] Conditional Login inside curly braces for binding

2006-10-02 Thread Sam Shrefler
Is there anyway to put a condition inside { } for example: enabled={checkA == something checkB == somethingElse} Flex Builder throws an error The Entity must immediately follow the in the entity referecne. It seems to be a problem with the Logical Operator since || works fine. ThanksSam

Re: [flexcoders] How can we achieve this effect in flex??? Any Ideas???

2006-10-02 Thread greg h
Not to hijack omkar's thread regarding the ripple effect, but ... I also love the metaphor of flipping the widgets to expose their customize controls (which is also demonstrated in the video). It is a nice UI metaphor ... assuming we can make it sufficiently discoverable and get users

Re: [flexcoders] Conditional Login inside curly braces for binding

2006-10-02 Thread Daniel Wabyick
Ran into the same thing. Its that '' is an entity in XML. So you can use: enabled={checkA == something amp;amp; checkB == somethingElse} Sam Shrefler wrote: Is there anyway to put a condition inside { } for example: enabled={checkA == something checkB == somethingElse} Flex Builder

Re: [flexcoders] NET web service from C#

2006-10-02 Thread John C. Bland II
Did you try using localhost:(port number)? Whenever I test .NET WS locally I always have to use the port number (while in debug mode).If in IIS locally, I don't know. I've only tested in debug mode. On 10/2/06, elzumbasefue [EMAIL PROTECTED] wrote: Hello, I'm

Re: [flexcoders] Conditional Login inside curly braces for binding

2006-10-02 Thread Sam Shrefler
Daniel: Thanks...the other thing I tried that worked was using the ||, soas per DeMorgans law: A B = !A || !B Thanks Sam On 10/2/06, Daniel Wabyick [EMAIL PROTECTED] wrote: Ran into the same thing. Its that '' is an entity in XML. So you can use:enabled={checkA == something amp;amp;

Re: [flexcoders] Conditional Login inside curly braces for binding

2006-10-02 Thread Peter Hall
mx:Button mx:enabled![CDATA[{checkA == something checkB == somethingElse}]/mx:enabled /mx:Button Peter On 10/2/06, Daniel Wabyick [EMAIL PROTECTED] wrote: Ran into the same thing. Its that '' is an entity in XML. So you can use: enabled={checkA == something amp;amp; checkB ==

[flexcoders] Re: Flex 2 y DataGrid

2006-10-02 Thread Daniel
Hola! Si estás usando CellRenderer dentro de las columnas de tu dataGrid, este código te puede servir: public function agregarFila(dataGrid:DataGrid):void{ var objeto:Object = new Object(); ArrayCollection(dataGrid.dataProvider).addItem(objeto); } --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Conditional Login inside curly braces for binding

2006-10-02 Thread Daniel Wabyick
Yeah - I used that at first ... Although I think the DeMorgan's law would be: !( A B ) = !A || !B So then ... A B = !( !A || !B ) ... Sam Shrefler wrote: Daniel: Thanks...the other thing I tried that worked was using the ||, so as per DeMorgans law: A B = !A || !B Thanks

Re: [flexcoders] mxmlc -increment not working.

2006-10-02 Thread Paul Spitzer
Did anyone ever figure this out? I've having the same problem. I'm trying to use incremental compiling w/ ANT but am getting the following error... Failed to match the compile target with ... Administrator_405624.cache. The cache file will not be reused. The .cache file is created without any

[flexcoders] Absolute Sizing

2006-10-02 Thread David Buitenveld
Hi all - Does anyone know a strategy for creating an application window size that is an absolute size in inches (vs pixels) independent of screen size or reslution? My goal is to simulate one of these new UMPC devices with a 7 inch screen, then compare the visual output to a 9 inch screen device

Re: [flexcoders] Conditional Login inside curly braces for binding

2006-10-02 Thread Sam Shrefler
Sho: Yep...i rushed the reply right after writing it on my blog...blog was right, reply was wrong...thanks Peter: Thanks, i never thought of doing if that way.. Thanks for all the replies Sam On 10/2/06, Peter Hall [EMAIL PROTECTED] wrote: mx:Buttonmx:enabled![CDATA[{checkA ==

Re: [flexcoders] mxmlc -increment not working.

2006-10-02 Thread Igor Costa
put -increment=true;-increment is a boolean paramater, just put true or false to get start workingOn 10/2/06, Paul Spitzer [EMAIL PROTECTED] wrote: Did anyone ever figure this out? I've having the same problem. I'm trying to use incremental compiling w/ ANT

[flexcoders] Set variable in custom component

2006-10-02 Thread fsawitzki
Hello, inside a repeating component i try to draw some rectancles via a custom component. * main.mxml * ... mx:Repeater id=ER dataProvider={parentDocument.dbData} myComp:ShowEvent datestarty=99/ /mx:Repeater ... * ShowEvent.as * package

[flexcoders] Re: NET web service from C#

2006-10-02 Thread elzumbasefue
Yes, I tryed with :port, but nothing happen. But then, when I create a WebService object in ActionScript, te constructor parameter is the url http://localhost:3451/web/webservice.asmx?wsdl;? This is the mainly confusion that I've. Tonight I'm going to do more tests. You've got a actionscript class

Re: [flexcoders] mxmlc -increment not working.

2006-10-02 Thread Robert Wąs
option is: -incremental and works for me Robert Was Paul Spitzer wrote: Did anyone ever figure this out? I've having the same problem. I'm trying to use incremental compiling w/ ANT but am getting the following error... "Failed to match the compile target with ...

RE: [flexcoders] Affinitiz V3.0 powered by Flex2+ColdFusion7+FMS2

2006-10-02 Thread Carl-Alexandre Malartre
Really nice Benoit, I like how you dynamically check if the Pseudo is already taken! I think you have over-accordioned everything in a over-efficient but un-natural way. Maybe we could chat a bit about it. Im also flexing and adding chat to a big app, Idd like to exchange on it.

Re: [flexcoders] mxmlc -increment not working.

2006-10-02 Thread Paul Spitzer
I'm not actually using increment as the subject line suggests (increment reports an error). I have -incremental=true. ... Here's what it looks like in my ANT target. target name=Administrator java jar=${mxmlc.jar} fork=true arg

[flexcoders] Hslider problem

2006-10-02 Thread g_vaccarezza
Guys, I got this XML data month label=Jan/ month label=Feb/ month label=Mar/ month label=Apr/ /data I want to make a time range selector for a column chart. I copied this code from Macromedia's webblog: (http://weblogs.macromedia.com/flex_samples/charts_explorer/line/LineS lider.mxml)

[flexcoders] Re: Click Event in Item Renderer... firing a second barrel ?!

2006-10-02 Thread flex.helleman
Sould you be listening for the change event? --- In flexcoders@yahoogroups.com, jamiebadman [EMAIL PROTECTED] wrote: Hi, Can someone help ? I've created a custom item renderer for a tree in which I have a listener on the mouse click event. Unfortunately, though, the main app code

Re: [flexcoders] Re: NET web service from C#

2006-10-02 Thread John C. Bland II
mx:WebService id=MyWS showBusyCursor=true wsdl=http://whatever mx:operation name=MyFunc result=onMyFaultResult(event) fault=onMyFuncFault(event) / /mx:WebServiceThat's all you need to do to connect.You can use AS but the mxml makes it so easy I have yet to try the AS. :-)Also, ServiceCapture is

[flexcoders] Project References Dialog in Flex Builder

2006-10-02 Thread hank williams
I cant find any documentation about the project references section of the properties dialog for projects. The documentation merely states in numerous locations that this is how you allow references to another project. But when trying to actually reference elements in the other project, they are

[flexcoders] Re: NET web service from C#

2006-10-02 Thread passive_thoughts
In its simplest form.C# Asp.Net Webservice:using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.Web;using System.Web.Services;namespace Director{ public class Hello : System.Web.Services.WebService { public Hello() {

RE: [flexcoders] Re: HTTP Status 500 Error using SSL endpoint

2006-10-02 Thread Peter Farland
I replied to the Adobe forums - the requirement to add some path info to your secure AMF channel endpoint was, in spirit, correct... here's what I posted: "I just want to restate knallore's poste regarding channel definitions as it is essentially correct, but the issue was that he didn't

[flexcoders] Datagrid catching changes in dataprovider

2006-10-02 Thread Derrick Grigg
I have a DataGrid that has it's DataProvider set to an ArrayCollection that is defined in a ModelLocator (I'm using Cairngorm). The ArrayCollection has defined ValueObjects in it. When I make a change to any of the ValueObjects in the ArrayCollection, the DataGrid is updated (via binding) and the

[flexcoders] How to save client data server-side?

2006-10-02 Thread jeremyrichman
I have an application where on the client-side the user makes some entry of various kinds and when the want to save their work, I want to serialize it to XML and save it on the server side (in an XML repository or the server's file system. I'm a complete newbie to the server-side of things,

[flexcoders] Flex pulling in data from the HTML and can HTML hold my XML dataprovider?

2006-10-02 Thread dorkie dork from dorktown
I have a very complicated project that I would like your help with. The reason it's complicated is because I can't change anything in the backend, the information getting pushed to the client. I can modify the html and rearrange it to my liking. So my only option is to do it the ghetto way and

[flexcoders] Re: How to create a date timeline

2006-10-02 Thread fsawitzki
I want to create a timeline to visualize dates, for example to show the reignlengths of the kings of a country. How can I do this? Jeroen. I started to work on a similar project, but i have no working code till now. My idea is to draw rectangles inside a canvas. The x-position is the value

Re: [flexcoders] mxmlc -increment not working.

2006-10-02 Thread Paul Spitzer
Robert Wąs wrote: option is: -incremental and works for me w/ ANT? Robert Was Paul Spitzer wrote: Did anyone ever figure this out? I've having the same problem. I'm trying to use incremental compiling w/ ANT but am getting the following error... Failed to match the compile

[flexcoders] Can I force a redraw of my dataGrid?

2006-10-02 Thread livinginswitzerland
I have a datagrid with many rows, in the change event of the datagrid, I copy data from the selectedItem to individual controls on the page. In the change event of these controls, I copy the values back into the dataprovider of the datagrid, which is a collection, but the diplayed data in the

[flexcoders] Re: Set variable in custom component

2006-10-02 Thread passive_thoughts
package myComponents { import flash.display.*; import flash.text.*; import mx.core.UIComponent; public class ShowEvent extends UIComponent{ public var datestarty:Number = 0; private var label:TextField; override protected function

[flexcoders] Re: Datagrid catching changes in dataprovider

2006-10-02 Thread passive_thoughts
Could you listen for changes to the collection instead and then do your comparisons when that event triggers? model.ac.addEventListener(mx.events.CollectionEvent.COLLECTION_CHANGE, acChange); private function acChange(event:CollectionEvent):void{ lblCount.text = ac.length.toString(); }

Re: [flexcoders] Re: loading animated gifs at runtime

2006-10-02 Thread Andrew Bourne
As the GIFs I am attempting to display are ads I don't have control over them to be able to convert them to SWFs, instead I am now adding them to the html DOM via JS. Seems to be working well at the moment. Cheers, Andrew -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Pure ActionScript binding for protected and private properties

2006-10-02 Thread Matt Chotin
I dont think moving that binding logic into the VM is on the near-term roadmap. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov Sent: Monday, October 02, 2006 2:14 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Pure

RE: [flexcoders] Flash Debugger Crashing IE! Please Help!

2006-10-02 Thread Matt Chotin
Nothing should cause a crash (so its a bug in the Player for that to happen). Had you been debugging up until this point? Maybe you can remove some of the recent code and see if the crash goes away, then slowly add back in? Does it crash at runtime? Would we be able to run your

RE: [flexcoders] WebService case sensitive

2006-10-02 Thread Matt Chotin
Sorry, ActionScript is case-sensitive so youll probably need to fix your code. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Krueger Sent: Sunday, October 01, 2006 7:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] WebService

[flexcoders] itemEditEnd event on datagrid

2006-10-02 Thread Robert Moss
in the following code, which I copied out of the livedocs and modified to throw an alert when the itemEditEnd event is fired, it seems that every time the cell you are editingloses focus,the event gets kicked off 5 times, the first 4 times with a reason of "other" and the last with

[flexcoders] Re: Can I force a redraw of my dataGrid?

2006-10-02 Thread Derrick Grigg
I think you can use the 'invalidateDisplayList()' or possibly the 'invalidateList()' to refresh your datagrid. Alternatively, if you use typed value objects in the dataProvider any changes to those, should automatically be reflected (and viewed) in the DataGrid if you are using databinding.

[flexcoders] Re: Flex pulling in data from the HTML and can HTML hold my XML dataprovider?

2006-10-02 Thread ben.clinkinbeard
http://www.onflex.org/FXT/ --- In flexcoders@yahoogroups.com, dorkie dork from dorktown [EMAIL PROTECTED] wrote: I have a very complicated project that I would like your help with. The reason it's complicated is because I can't change anything in the backend, the information getting pushed

[flexcoders] Re: FlashPlayer security puzzle

2006-10-02 Thread Jason
Hi Matt, When you say debug your server do you mean debug from the remotely deployed swf on your server? If so, I can't seem to get this working. Have you got any tips for remotely debugging a flash 9 swf through Flex Builder 2? Regards, Jason --- In flexcoders@yahoogroups.com, Matt Chotin

[flexcoders] Re: Click Event in Item Renderer... firing a second barrel ?!

2006-10-02 Thread comfuture21
try mx.events.ItemClickEvent mx:Script ![CDATA[ import mx.events.ItemClickEvent; public function getCompanyDetail(event:ItemClickEvent):void { // your code here... } ]] /mx:Script mx:Tree id=tvCompanies itemRenderer=CompanyTreeItemRenderer itemClick=getCompanyDetail()

[flexcoders] Re: Can I force a redraw of my dataGrid?

2006-10-02 Thread livinginswitzerland
Thanks Derrick... I had tried invalidateDisplay list, but not invalidateList..which did it. interesting. when you say typed value objects...can you elaborate on that? I am doing some 'non standard' things, and all of my data is read into an ArrayCollection via a web service, but i'm not

[flexcoders] Re: can you unload an swf file from an mx:image control? **SOLVED**

2006-10-02 Thread jpc14_99
Hi Jamie Try just setting the source to null. Thanks Wayne. That didn't do the trick, the sound just kept on playing. This worked though: SoundMixer.stopAll(); I didn't even need an extra include statement for the SoundMixer, maybe I had it already included somehow, it's located at

[flexcoders] Re: overriding Button's style sheet **SOLVED**

2006-10-02 Thread jpc14_99
Thanks Gordon, I actually ended up doing this in the particular component where I needed to restyle the buttons: Init() { myBStyle.setStyle('embedFonts', 'true'); myBStyle.setStyle('fontWeight', 'normal'); myBStyle.setStyle('fontFamily', 'myVerdana');

[flexcoders] Re: can you unload an swf file from an mx:image control? **SOLVED**

2006-10-02 Thread jpc14_99
Hi Jamie Try just setting the source to null. Thanks Wayne. That didn't do the trick, the sound just kept on playing. This worked though: SoundMixer.stopAll(); I didn't even need an extra include statement for the SoundMixer, maybe I had it already included somehow, it's located at

[flexcoders] Re: flex 2.0 logging

2006-10-02 Thread sinacapho
Dear all, i have change the config of flex to this. But still i cannot log any HTTPservice and webservice . Can someone help me? thx capho --- In flexcoders@yahoogroups.com, sinacapho [EMAIL PROTECTED] wrote: Dear Jeff, i have modifed the service-config.xml as below logging

[flexcoders] Re: Navigating between Screens

2006-10-02 Thread jlentz2112
--- In flexcoders@yahoogroups.com, jlentz2112 [EMAIL PROTECTED] wrote: Hi, I'm new to Flex 2 development. I've seen some tutorials on ViewStacks, but they used a navigator bar or tab bar to switch between screens. I've got an ap that won't have the bars or tabs to switch by. It starts

Re: [flexcoders] subject

2006-10-02 Thread Daniel Cascais
You are very welcome! Daniel On 9/14/06, Aldo Bucchi [EMAIL PROTECTED] wrote: Hi all, thanks, Aldo -- : Aldo Bucchi : mobile (56) 8 429 8300 -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Re: Flash Debugger Crashing IE! Please Help!

2006-10-02 Thread Matt Chotin
Yeah, if you can do that and cause the crash itd be great. Glad that you found the error in your code, but clearly the player shouldnt crash. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of wayneposner Sent: Monday, October 02, 2006

RE: [flexcoders] Re: FlashPlayer security puzzle

2006-10-02 Thread Matt Chotin
In this case I meant debug the socket server, not the SWF. If you want to remote debug a decent hack that Mike has posted in the past is to have FB use a debug configuration that has a url with no flash, like www.google.com. Then, launch a browser on the other machine to load your

RE: [flexcoders] Technical Problems - Flex IDE Keeps Crashing, any ideas?

2006-10-02 Thread Matt Chotin
Only suggestion for the moment is to try to increase the available memory. In the Flex Builder 2 directory I believe is a config file where youll see the Xmx512M and you can change that to be something bigger (like 1024M). How many projects do you have open, can you reduce those?

RE: [flexcoders] Re: Binding bug?

2006-10-02 Thread Matt Chotin
Its a bug that we have fixed internally. Next release. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Bray Sent: Sunday, October 01, 2006 5:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Binding bug?