Re: [flexcoders] Re: Alert.show - Detect when closed from another mxml component

2008-10-21 Thread claudiu ursica
You can do that, however it is not very engineering like to bubble lots of layer to the application. I would bypass thet event through Cairngorm if I were you, provides a more decoupled way of handling things HTH, Claudiu - Original Message From: sleblang <[EMAIL PROTECTED]> To:

[flexcoders] What is the command-line equivalent to Flex Builder's "Build Project.." Command?

2008-10-21 Thread Stephen Roy J. Tang
In my program, I have been receiving an error when I use a command-line compile command for mxmlc. The error is related to an embedded font name not being correctly identified by flex in the system fonts list. However, on a whim, I decided to copy the code to Flex Builder and compile it there. To

Re: [flexcoders] Custom List Renderer Memory Leak

2008-10-21 Thread claudiu ursica
Can you paste the code snippet that update the list? Cheers, Claudiu - Original Message From: darkcube86 <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, October 21, 2008 7:49:53 PM Subject: [flexcoders] Custom List Renderer Memory Leak I have a list which always dis

Re: [flexcoders] swf caching

2008-10-21 Thread Arulmurugan T
It is a web application. I cannot force my client to clear the cache. Regards, You can catch up with me using the links below http://flex-arulmurugant.blogspot.com/ - Original Message - From: Guy Morton To: flexcoders@yahoogroups.com Sent: Wednesday, October 22, 2008 9:06 A

Re: [flexcoders] Re: Problem with scaleX for system fonts!

2008-10-21 Thread Haykel BEN JEMIA
Try scaling only in one direction (X or Y) and you will see that it doesn't work. However it does with embedded fonts. I think scaling in both directions with the same value makes flex use another font size, but "real" scaling only can be applied to embedded fonts. Anyway, this limitation will be r

RE: [flexcoders] modules and services-config.xml

2008-10-21 Thread Alex Harui
RO and services-config is not my area of expertise, but I’m pretty sure the compiler generates code that just sets up channels and endpoints, which I think you can set on a RemoteObject dynamically. Is there more to it than making an HTTP request for an XML file and using that to instantiate th

Re: [flexcoders] Re: How to keep Tree control synchronized with the database. Please Help

2008-10-21 Thread anuj sharma
Hi Guys Thanks for your different approaches to solve this problem.I will try all of them and see which one will suit my management, but i really appreciate that. I have one solution which recently struck me , please let me know if this is the right one. Can I use the Timer class to create a timer

[flexcoders] Re: Still no one knows ? Please help.

2008-10-21 Thread itdanny2002
Thank you but I wanna to draw the circle or checkmark instead of using symbol. I have tried to embed image files. It works. However, I wanna to use the color as same as text. Since the color of my application can be changed, I can't predict what color user used and I can prepare so many different c

Re: [flexcoders] swf caching

2008-10-21 Thread Guy Morton
Look at your browser's caching settings and make sure it's not set to cache everything forever. IE is particularly annoying in this regard as it often defaults to using a cached item without even checking with the server to see if it has changed since it was cached. That said, you should

[flexcoders] swf caching

2008-10-21 Thread arulmurugan
Hi, When ever I compile a proj/application the SWF I saw didn't reflect any of the changes I'd made. I need to clear the cache, history, cookies in the browser. How to over come this. Regards Arulmurugan

[flexcoders] Re: How to keep Tree control synchronized with the database. Please Help

2008-10-21 Thread markgoldin_2000
I have been working on a data pushing solution using Lightstreamer push server. Works with Flex via Ajax bridge. True real time data updates. Take a look at LS push server web site. They have examples for Flex. --- In flexcoders@yahoogroups.com, john fisher <[EMAIL PROTECTED]> wrote: > > I am w

RE: [flexcoders] modules and services-config.xml

2008-10-21 Thread Maciek Sakrejda
Thanks, Alex. Supposing we really do want modules with new endpoints and not sub-applications, is it possible to emulate services-config.xml functionality by programmatically requesting a services-config.xml-like per-module config file and subclassing RemoteObject to understand the extra channels a

[flexcoders] Re: LiveCycleDS - Problem Accessing RemoteObject over Secure AMF

2008-10-21 Thread cwicky99
One thing I noticed is that if I just try to browse to the channel URL: https://localhost:8443/myapp/messagebroker/amfsecure I get: HTTP Status 404 - Servlet MessageBrokerServlet is not available

[flexcoders] Advanced dataGrid with XML sample

2008-10-21 Thread markgoldin_2000
Anyone can provide a sample of ADG showing hierarchical XML data? I am using HHTPService for all data requests. Thanks for help.

[flexcoders] Re: XML data problem

2008-10-21 Thread markgoldin_2000
My resultFormat="e4x". --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > This almost always means that you have not set the resultFormat property > on the RPC call. The default is Object. This causes Flex to convert > the xml into a nested dynamic object structur

Re: [flexcoders] How to keep Tree control synchronized with the database. Please Help

2008-10-21 Thread john fisher
I am working on a similar problem... I don't use PostGres, but there may be some sort of export to XML function. *If* that can fire on changes ( or you set up the inserts/updates that way), then you have something that an httpservice can acquire directly. But somebody still has to ask the file if i

[flexcoders] Re: PLaying Flash From Scratch

2008-10-21 Thread John
My actionscript is not that strong, we have several Flash animations in each of our viewstack children, and reall I wondered if there was something we could make it play it from frame 1 of the movie again. If we cannot get this to work, is there a similar functionality within States, where we c

Re: [flexcoders] How to keep Tree control synchronized with the database. Please Help

2008-10-21 Thread Paul Andrews
Isn't this simply a problem that multiple calls are required to poll the database for change? I think the OP really needs a push type service. There's no way to know that the database table has changed without polling the database.. - Original Message - From: Tracy Spratt To: fle

[flexcoders] Question about html embed (AC_FL_RunContent)

2008-10-21 Thread Aaron Miller
Ok, sorry this is a lame question, but I'm not an HTML guy and I'm pounding my head on the desk trying to figure this out. How do I point to the absolute path of the SWF in the Adobe style embed script? All of our pages need to embed the same swf located in the root directory. For organization, som

RE: [flexcoders] How to keep Tree control synchronized with the database. Please Help

2008-10-21 Thread Tracy Spratt
Ah, it might be a caching issue. "GET" is subject to that. Can you use "POST"? Otherwise, append a random string, like new Date().toString to the HTTPService url. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt

RE: [flexcoders] How to keep Tree control synchronized with the database. Please Help

2008-10-21 Thread Tracy Spratt
That should update the tree automatically. Have you debugged to be sure "devicesXMLHandler" is getting called when you expect? It should not be necessary, but try directly re-assigning the tree dataProvider in the result handler. Tracy From: flexcoders

[flexcoders] Chart fails when used in module

2008-10-21 Thread Guy Morton
Hello I have a chart which works fine in a normal MXML component, but when I try to turn it into a module I get this when trying to load it: TypeError: Error #1009: Cannot access a property or method of a null object reference. at mx.charts.chartClasses::ChartLabel/updateDisplayList()

[flexcoders] How to keep Tree control synchronized with the database. Please Help

2008-10-21 Thread anuj181
Hi Guys I am trying to retrieve values form the database PostGres. I used REST calls for fetching the data and i am successful in binding that data with the data Provider of Tree control. Now my problem is that if I inserted any entry in the database, it will not update the Tree control directly. O

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, "Haykel BEN JEMIA" <[EMAIL PROTECTED]> wrote: > > It's not working for me by setting the blendMode to layer! It only works > with the embedded fonts, as expected. Here is my test application and as you > can see, scaling is only working on the lines using the e

[flexcoders] Re: using components

2008-10-21 Thread Michael VanDaniker
You can access your top-level application anywhere in your code via Application.application. To call the method named "myMethod," you would use the statement Application.application.myMethod(). You can easily add event listeners on "sub-components" if you give the components id's. Taking your ex

Re: [flexcoders] Re: file upload with rpc

2008-10-21 Thread Fotis Chatzinikos
Prior to flash 10, i think its impossible to get a file inside flash without the server so amd/rpc is probably not possible. I have read somewhere that flash 10 can open files locally,so why do not you google for flash 10 file handling or something similar... Either way i think the best case is to

[flexcoders] Call to a member function on a non-object

2008-10-21 Thread timgerr
Hello all, I am using weborb and getting this error but I am not sure it is a weborb problem. I have a class CleanQueryClass.php class CleanData { public function CleanObject($obj) { $n = new stdClass; foreach($obj as $var => $value) {

[flexcoders] MenuBar menuItem - dynamically change selected item

2008-10-21 Thread sleblang
I have the following menubar implemented: How can

[flexcoders] Binding Getter to Collection Change

2008-10-21 Thread Kevin
I may be missing something simple here, but I would like to create a getter function in one of my classes that binds to a collection change event of an ArrayCollection in the same class. As a simple example, public var myCollection:ArrayCollection = new ArrayCollection(); [Bindable] public funct

[flexcoders] using components

2008-10-21 Thread Deniz Davutoglu
Hi everyone, I try to break apart my flex app and I get faced with one issue. I create components for every part of app and load them as I need. But it creates some problems. First off all within component I cant call functions that are in main app mxml. Secondly I cant create events for sub compo

[flexcoders] dividerSkin problem

2008-10-21 Thread Guy Morton
Hello If I use dividerSkin to set the skin of a HDividedBox to an image file, and the HDividedBox sits inside a VDividedBox, and the image file I'm using for the skin is wider than the HDividedBox, the skin image is drawn over the content in the other pane of the VDividedBox, ie it is not

[flexcoders] Re: file upload with rpc

2008-10-21 Thread Deniz Davutoglu
I want to upload file using remoteobject and amfphp --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Please clarify your question. "rpc" means many things. > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: How to get ValidationResultEvents out of a custom mxml component

2008-10-21 Thread j_lentzz
Found out problem was that valid is already used by HBox. Changing to another event name and using a custom event allowed me to do what I wanted. However, is there a way to override the use of valid in an HBox, so I can use it my own way? John --- In flexcoders@yahoogroups.com, "j_lentzz" <[EMAI

RE: [flexcoders] Reference a control in one itemRenderer from another itemRenderer

2008-10-21 Thread Tracy Spratt
If the user uploads an image, save the url to that image in the dataProvider in an appropriate property, say "imageUrl". In the uploaded image item renderer, if the imageUrl property length is greater than zero, load the image and display it. If the image url is empty string, then use viewstack o

Re: [flexcoders] Reference a control in one itemRenderer from another itemRenderer

2008-10-21 Thread Alex Cougarman
Hi, Tracy. Good point: I have a column in a datagrid that will be blank if the user hasn't yet uploaded an image for that record. If s/he uploads an image, I need to update that column to show the image. I've got this working within the same itemRenderer and just for the sake of making it look n

RE: [flexcoders] Reference a control in one itemRenderer from another itemRenderer

2008-10-21 Thread Tracy Spratt
This is almost never possible or useful. The question indicates that you do not fully grok the mechanics of item renderer behavior. In nearly all cases, you should operate through the dataProvider. Take a step back and tell us what you are trying to achieve. Tracy

Re: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-21 Thread Sébastien Tromp
Scott Melby a écrit : > In your item renderer, if you have control over the TimerEvent creation, > set the "bubbles" parameter to true. If you do not, you may want to > catch the event in the renderer and re-dispatch a new one with bubbles > set to true. This will allow your event to bubble o

[flexcoders] How to get ValidationResultEvents out of a custom mxml component

2008-10-21 Thread j_lentzz
Hi, I have a custom component based on an HBox. Internally it has 2 radio buttons in a group. I want the component to contain a validator, so I can use the valid and invalid props on it. For example: Inside the component, I have Event tags like: [Event(name="valid", type="mx.events.Validatio

[flexcoders] Reference a control in one itemRenderer from another itemRenderer

2008-10-21 Thread oneworld95
Hi. I'm trying to figure out how to reference an Image control in one itemRenderer from another itemRenderer. Thanks.

Re: [flexcoders] Re: Alert.show - Detect when closed from another mxml component

2008-10-21 Thread Fotis Chatzinikos
yes you can do it with the stage, as suggested previously in (2) (generic solution) but instead of catching it at the component level you can catch it in the application. If you do not want to do all (2) you can just throw a new click event from the alertclose function with bubbles, and so on set,

Re: [flexcoders] form to pdf

2008-10-21 Thread Weyert de Boer
Hi Gustavo, You could consider using the AlivePDF! solution which allows you to generate PDF documents from inside Flash. http://alivepdf.bytearray.org/ Have a look at this example too: http://blog.unthinkmedia.com/?p=53 Yours, Weyert de Boer

[flexcoders] States: scope

2008-10-21 Thread César Mendoza
Hi, I'm new in Flex and a I want to know if the scope of a States its determinated by the parent control or its global to all the components. Thanks, and sorry my english. -- Saludos. César Javier Mendoza.

[flexcoders] form to pdf

2008-10-21 Thread Gustavo Duenas
Hi I was thinking on this, tell me if this is possible. I have a form in flex, how could I send that information through an Coldfusion page and then to my email addrs. I know how to do the coldfusion but I would like to receive the form in the way it was intended in the flex, with graphics an

[flexcoders] Re: Alert.show - Detect when closed from another mxml component

2008-10-21 Thread sleblang
Thanks for all the suggestions. I am sure one if not all of them would work. Just out of curiosity, in Flash, you can set a listener for the Stage to receive via capture or bubble, for example, mouseclicks (Stage.addEventListener(MouseEvent.CLICK,clickHandler)). Is there no way to do this in Flex w

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Fotis Chatzinikos
the following link suggests: Flash Player 10 Adobe Flash Player 10 Update for Flash CS4 Professional *10/15/2008* This update of Flash Player 10 contains additional bug fixes. The update replaces the Debug and Release versions of Flash Player 10 browser plugins, standalone players, and Test Movie

Re: [flexcoders] what is a String? (default encoding question)

2008-10-21 Thread Pan Troglodytes
Thanks for checking into it, Gordon. Too bad there's no "easy" answer, but I'll stick with UTF-8 on the basis of ByteArray's method returning it. On Tue, Oct 21, 2008 at 1:30 PM, Gordon Smith <[EMAIL PROTECTED]> wrote: >OK, I got the answer from some Player engineers. Unfortunately, the > Pl

[flexcoders] positioning custom toolTips?

2008-10-21 Thread djbrown_rotonews
I've got a dataGrid, but am using VBox's that implement IToolTip to generate my toolTips instead of relying on the built-in dataTip functionality. Every thing works fine until it comes to positioning the toolTips along the bottom right of the dataGrid, as the default behavior isn't re-positioni

RE: [flexcoders] filter datagrid using combox and CF

2008-10-21 Thread Tracy Spratt
Your change handler on the ComboBox, "select_DMA" does not do anything. It needs to do something. Does the Alert show the correct selected item? How are you intending to filter the datagrid? Using a filter function or re-querying the server? Your posted code does neither. Also, use a res

RE: [flexcoders] modules and services-config.xml

2008-10-21 Thread Alex Harui
Modules imply a certain level of sharing of class definitions and what not and probably don't allow you to not share what AMF needs. You might want to use a Marshall Plan configuration instead. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Maciek Sakrejda Sent: Tuesda

Re: [flexcoders] Re: mouse wheel behaviour mxml and actionscript based components

2008-10-21 Thread Fotis Chatzinikos
Mike, thinks for the reply, here is some code: >From the following code we are interested in the following line: t.addEventListener(MouseEvent.MOUSE_WHEEL, mouseWheelTreeListener) ;//noluck is there something wrong with what you see? The alert is never called TIA, Fotis private

RE: [flexcoders] First POST - XML and Datagrid - XML parent issues

2008-10-21 Thread Tracy Spratt
If you use a labelFunction for the team name column, you can access the entire xml hierarchy. You can get the parent of a node using the node.parent() method. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bill Sent: Tuesday,

[flexcoders] flex builder 3 and ganymede

2008-10-21 Thread Durres76
hi, has anyone been able to get FB3 plugin to work with Ganymede, Eclipse 3.4? i am on a Vista machine and installed FB3 plugin without a hitch. when i start eclipse i don't see any Flex perspectives listed. What's even more odd is that when i go to About Eclipse i see a Flex button on the list

Re: [flexcoders] showDataTips on AdvancedDataGrid column gives tooltip to column header

2008-10-21 Thread dmoxin
I had a similar problem where I was showing tooltips on dynamically created radio buttons, but didn't want to show the tool tip if the radio button was disabled, so I did the following. 1. On creation of the radio button, setup an empty tooltip...this was also necessary so I could do the custom

[flexcoders] filter datagrid using combox and CF

2008-10-21 Thread pal1626
Hi I'm new to flex... I'm developing an application in which I have combox as filter for datagrid. I do see the data populated in datagrid and combox filter but any selection made in combox won't change the datagrid. I'm not sure what I'm missing. ANy help is appreciated... TEST.mxml code...

[flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-21 Thread sailorsea21
I got it working! Thanks Tracy. I removed the following line: "modulestile.removeChild(DisplayObject(event.target));" I removed the following id: "main_vbox.id = String(NewVbox);" and assigned it to the unload button Thanks for all your help :) --- In flexcoders@yahoogroups.com, "Tracy Spratt"

[flexcoders] new to flex, problems installing Flex 4 SDK

2008-10-21 Thread Pedro Kostelec
Hi I am completely new to flex. I find it very difficult to install the Flex 4.(http://opensource.adobe.com/wiki/display/flexsdk/Gumbo). First i extracted the zip in D:\Program Files\Adobe\Adobe Gumbo 4 then i followed the instuction to install it from here: http://opensource.adobe.com/wiki/displa

[flexcoders] Re: First POST - XML and Datagrid - XML parent issues

2008-10-21 Thread Tim Hoff
Sounds like a job for labelFunction. -TH --- In flexcoders@yahoogroups.com, "Bill" <[EMAIL PROTECTED]> wrote: > > Here is my XML > http://fantasy4sports.com/xml/players.xml > > my source XMLCollection call > > source="{tempXML['team-sport-content']['league-content']['season-content\ ']['team-co

RE: [flexcoders] what is a String? (default encoding question)

2008-10-21 Thread Gordon Smith
OK, I got the answer from some Player engineers. Unfortunately, the Player actually uses both UTF-8 and UTF-16 at various times to represent strings internally. It does a good amount of conversion back and forth due to the way it needs to interact with the various operating systems that it runs

[flexcoders] Checked tree

2008-10-21 Thread Richard Rodseth
I may have a need for a tree with checkboxes associated with the nodes. I see there are a couple of "checked tree" components, but I also thought I could use an AdvancedDataGrid with a column for the checkbox. Might actually look better having the checkboxes lined up. Anyone have experience to repo

RE: [flexcoders] what is a String? (default encoding question)

2008-10-21 Thread Gordon Smith
> Always frustrating when I bump up against the wall where open source becomes > closed. I wrote a Player engineer and asked but haven't gotten a reply. The Taramin AS3 engine is open-source as part of the Mozilla project. I don't have time to look at the code to answer your question, but maybe

Re: [flexcoders] Re: Hide columns from a datagrid

2008-10-21 Thread Paul Andrews
- Original Message - From: "guillaumeracine" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 21, 2008 6:15 PM Subject: [flexcoders] Re: Hide columns from a datagrid > Hehehe yes but this is the context of my application... > I have to convert an existing catalog of products in flex and >

[flexcoders] First POST - XML and Datagrid - XML parent issues

2008-10-21 Thread Bill
Here is my XML http://fantasy4sports.com/xml/players.xml my source XMLCollection call and the resulting datagrid http://fantasy4sports.com/testFolder/sportsPlayerCSV.html reason for the [][] is the xml is malformed and wont read the "-" in the titles. but thats not my problem... Now my cust

[flexcoders] Resizing width of TextArea to fit content width

2008-10-21 Thread Eric Cooper
Hi, I have searched through the archives and googled, but most related concerns seem to focus on text height. I am concerned solely with text width. I have a subclass of UIComponent (called BTVariable) that contains an HBox which, in turn, contains between two and four TextArea objects. I wou

[flexcoders] Re: Hide columns from a datagrid

2008-10-21 Thread guillaumeracine
Hehehe yes but this is the context of my application... I have to convert an existing catalog of products in flex and The database is built like this : Table : product (this is generic) -property1 -property2 -property3 The product X may have property3 but not product Y. This is why i must

RE: RES: [flexcoders] Refresh datagrid

2008-10-21 Thread Tracy Spratt
Actually, this is not correct. Does it work for you? ArrayCollection.refresh() causes the current sort to be applied to the collection, it is not intended to be a generic UI refresh call. Three normal ways to update a UI when the underlying data changes are: 1. Re-assign the dataProvider.

RE: [flexcoders] Re: sailorsea21 - RemoveChild question.

2008-10-21 Thread Tracy Spratt
First, in "unloadclick", what is the intent of this line? modulestile.removeChild(DisplayObject(event.target)); Next, why is .id always = 0? You are setting it in "AddModule" with this line below. How are you incrementing the "NewVbox" variable each time? I shouwed you how to do that in an ear

Re: [flexcoders] Hide columns from a datagrid

2008-10-21 Thread Paul Andrews
- Original Message - From: "guillaumeracine" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 21, 2008 5:59 PM Subject: [flexcoders] Hide columns from a datagrid >I have a datagrid in a mxml file that contains some hard coded > mx:column objects. > I want to hide the mx:columns that does

RE: [flexcoders] Re: XML data problem

2008-10-21 Thread Tracy Spratt
This almost always means that you have not set the resultFormat property on the RPC call. The default is Object. This causes Flex to convert the xml into a nested dynamic object structure. The conversion process is attempting to be smart, and failing. Set resultFormat="e4x" and it will leave

[flexcoders] Re: Crazy DataGrid display of XMLListCollection

2008-10-21 Thread edlueze
I wanted to give you a status update on my investigations with this problem. First, I wanted to thank both of you who replied - I've learned a lot about collections in no small part because of your help. In addition to the things you pointed out that I was doing wrong, the core problem turned out

[flexcoders] Hide columns from a datagrid

2008-10-21 Thread guillaumeracine
I have a datagrid in a mxml file that contains some hard coded mx:column objects. I want to hide the mx:columns that does not contains any value for all objects in the dataprovider... I should subclass a column renderer class or something like that i think Ex: collection of employee : {id,name,job

[flexcoders] Custom List Renderer Memory Leak

2008-10-21 Thread darkcube86
I have a list which always displays 3 items using a custom list renderer. As items are added to this list, the last one in the list is removed (FIFO Queue), and a DefaultListEffect is used to animate incoming and outgoing items with a fade effect. The problem is that after some time (~5000 items

Re: [flexcoders] Re: Problem with scaleX for system fonts!

2008-10-21 Thread Haykel BEN JEMIA
It's not working for me by setting the blendMode to layer! It only works with the embedded fonts, as expected. Here is my test application and as you can see, scaling is only working on the lines using the embedded font. In the other cases, the Label control itself is scaled and is truncating the t

Re: RES: [flexcoders] Refresh datagrid

2008-10-21 Thread oneworld95
Thanks, Luciano! Just what I needed. --- In flexcoders@yahoogroups.com, "Luciano Manerich Junior" <[EMAIL PROTECTED]> wrote: > > > You need to refresh the dataProvider (needs to be bindable). > > datagrid.dataProvider.refresh(); > > -Mensagem original- > De: flexcoders@yahoogroups.com

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Jamie S
The Flash 10 debug player can be found here: http://www.adobe.com/support/flashplayer/downloads.html On Tue, Oct 21, 2008 at 9:40 AM, Jamie S <[EMAIL PROTECTED]> wrote: > Software Update on OSX regularly updates the Flash Player because of > security vulnerabilities. It's actually a good thing to

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Jamie S
Software Update on OSX regularly updates the Flash Player because of security vulnerabilities. It's actually a good thing to do on their part because it means that most mac users are not vulnerable to Flash Player security holes in older versions but it also means that it overwrites the debug versi

Re: [flexcoders] modules and services-config.xml

2008-10-21 Thread Maciek Sakrejda
Anyone? I can't be the first one to hit this limitation, can I? -Original Message- From: Maciek Sakrejda <[EMAIL PROTECTED]> Reply-To: flexcoders@yahoogroups.com To: flexcoders Subject: [flexcoders] modules and services-config.xml Date: Mon, 20 Oct 2008 08:57:05 -0700 I asked this on Sa

Re: [flexcoders] Re: mouse wheel behaviour mxml and actionscript based components

2008-10-21 Thread Michael Schmalle
Hi, No, it's automatic. Without an example I can't help. :) Mike On Tue, Oct 21, 2008 at 12:01 PM, fotis.chatzinikos < [EMAIL PROTECTED]> wrote: > Hello Michael, > > i just tried your suggestion and i still do not get the mouse wheel to > scroll the tree. I also did a quick test to see if it

Re: [flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Troy Gilbert
> 3) I installed Flash Player 10, and I am getting that error, as well I've not been able to find a link to a debug Flash Player 10... a blog I saw suggested that Flash Player 10 is both regular and debug, but I kinda doubt it (since there's a reference to a debug player for CS4). I'm guessing we

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Troy Gilbert
> I just ran Software Update, and I am not sure what updates occured, > but I believe Firefox might have. No, it's whenever iTunes updates. They use Safari + Flash plug-in for browsing the iTunes Store. Whenever iTunes updates it forcibly updates the Flash player (bad updater!). Very frustrating.

Re: [flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Troy Gilbert
> it actually runs MyApp.swf?debug=true > isnt it supposed to be MyApp-debug.swf ? In Flex Builder 3, both SWFs have the same name but debug includes "?debug=true". Troy.

[flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread tchredeemed
also it actually runs MyApp.swf?debug=true isnt it supposed to be MyApp-debug.swf ?

[flexcoders] Re: mouse wheel behaviour mxml and actionscript based components

2008-10-21 Thread fotis.chatzinikos
Hello Michael, i just tried your suggestion and i still do not get the mouse wheel to scroll the tree. I also did a quick test to see if it will work on an mxml based tree control and surprisinly it does not scroll Do i remember something wrong? I thought i have seen some trees scroll withou

RES: [flexcoders] Refresh datagrid

2008-10-21 Thread Luciano Manerich Junior
You need to refresh the dataProvider (needs to be bindable). datagrid.dataProvider.refresh(); -Mensagem original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de oneworld95 Enviada em: terça-feira, 21 de outubro de 2008 13:43 Para: flexcoders@yahoogroups.com Assunto:

[flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread tchredeemed
For instance trace('testing'); in the creationCompleteHandler() does not trace testing... likewise, if I delete all function calls out of the creationCompleteHandler, it still calls them... --- In flexcoders@yahoogroups.com, "tchredeemed" <[EMAIL PROTECTED]> wrote: > > Ok. > > 1) I went into Fl

[flexcoders] Re: I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread tchredeemed
Ok. 1) I went into Flex Builder and installed the flash player that comes in Flex Builder 3/Player/mac After I did this, the project would compile and run without giving me any errors, but it never updated (for instance, I changed the background color, and it would 'compile and run', but the back

[flexcoders] Refresh datagrid

2008-10-21 Thread oneworld95
Hi. Is there a way to refresh the data in a datagrid?

[flexcoders] Re: Hiding lineseries in a chart

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, "seona.bellamy" <[EMAIL PROTECTED]> wrote: > > Hi guys, > > I'm new to the list, and pretty new to Flex as well. I've been > learning as I go while working on a project, so I'm not sure if I'm > doing everything the most elegant way possible, but I'm hoping to >

[flexcoders] Re: Forcing Flex to not cache images

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, "oneworld95" <[EMAIL PROTECTED]> wrote: > > Hi. I've got a Flex app that communicates with a Java servlet to > enable image file uploads. The user clicks in a Flex DataGrid row's > button to select an image file and then clicks an Upload button to > send the file

Re: [flexcoders] Custom index.template.html for each new project

2008-10-21 Thread Mark Lapasa
THx Kyle, I've gotten it to actually work =) C:\Program Files\Adobe\Flex Builder 3.0.1 Plug-in\sdks\3.1.0\templates\express-installation-with-history\index.template.html Kyle Quevillon wrote: > > Look in your sdk directory: > > > > sdks\2.0.1\resources\html-templates > > sdks\3.0.0\templates

[flexcoders] Re: postgresql java resultset date column

2008-10-21 Thread fotis.chatzinikos
Hmmm, not sure about flex but is there a possibility of different locales on the two machines? An english and american locale (same local time) might be on different days. Do you have time with date or just date in the data? Try removing the time info possibly... --- In flexcoders@yahoogroups.c

Re: [flexcoders] Hiding lineseries in a chart

2008-10-21 Thread Andy Buttaro
Try using a filter function on the ArrayCollection. http://livedocs.adobe.com/flex/3/langref/mx/collections/ListCollectionView.html#filterFunction - Original Message From: Richard Rodseth <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, October 21, 2008 10:49:12 AM S

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Fotis Chatzinikos
Same here, get it here (v 9 or 10): http://www.adobe.com/support/flashplayer/downloads.html you might need to manually uninstall your current player prior to this depending on OS i believe, but give it a go first, and if you get problems uninstall and reinstall the new version On Tue, Oct 21, 20

Re: [flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread Toby Ashley
I had this at the weekend, presumably some kind of update also caused it. The easy solution for me was... reinstall the debug version of the Player. Worked fine afterwards. On Tue, Oct 21, 2008 at 4:06 PM, tchredeemed <[EMAIL PROTECTED]> wrote: > /Library/Internet Plug-Ins/Flash Player.plugi

[flexcoders] I just ran software update on Mac OS X, now FB cannot locate the debugger

2008-10-21 Thread tchredeemed
/Library/Internet Plug-Ins/Flash Player.plugin Flex Builder cannot locate the required debugger version of Flash Player. You might need to install the debugger version of Flash Player 9 or reinstall Flex Builder. Do you want to try to debug with the current version? I got this error before, an

Re: [flexcoders] Hiding lineseries in a chart

2008-10-21 Thread Richard Rodseth
I forget whether it's called "visible" or something else, but there is a property for this. I have successfully bound this to a boolean model variable and controlled it with a checkbox. In my case there *is* data. On Mon, Oct 20, 2008 at 8:28 PM, seona.bellamy <[EMAIL PROTECTED]> wrote: > Hi gu

Re: [flexcoders] what is a String? (default encoding question)

2008-10-21 Thread Pan Troglodytes
Thousands of rows of columnar data. Doesn't really matter, though. The help for both readUTF and readMultiByte says: Returns String — UTF-8 encoded string. So no matter what I do, it appears the ByteArray can only return UTF-8 anyway. Considering this, I might as well write it to the file

[flexcoders] Re: actionscript made canvas scrollpolicy problems-similar to previous vbox problem

2008-10-21 Thread fotis.chatzinikos
Thanks Mike :-) My mistake again... I usually try with the property first and if i that the property is not there i go for the style...Somehow i went to step 2 directly here, and then googling for setstyle("horizontalScrollPolicy") made it even worse... Thanks again Fotis --- In flexcoders@yahoog

RE: [flexcoders] reading problem from local shared object

2008-10-21 Thread Keith Reinfeld
Gökhan, I hope this helps: Read.as private var myLSO:SharedObject; private var p_name:String; myLSO=SharedObject.getLocal("parameterCookie"); // Was myLSO created? if (myLSO==null) { // myLSO was not created Alert.show("cannot create shared object "); }else{

[flexcoders] Re: Repeater control and custom Component

2008-10-21 Thread lysfael
Ok, i'll pass you a prototype of the datas, and just use them with the repeater. You code have to be generic. I mean, it doesnt have to depend on the comp you have in the repeater. 00011 OUV 2 ETA C4B 2 and t

[flexcoders] Re: Problem with scaleX for system fonts!

2008-10-21 Thread Amy
--- In flexcoders@yahoogroups.com, "Amy" <[EMAIL PROTECTED]> wrote: > > --- In flexcoders@yahoogroups.com, "Haykel BEN JEMIA" > wrote: > > > > Could you post a working example? This would really interest me! > > I'll try to make time tonight :-). I updated my GroupingFunction example to show th

  1   2   >