Re: [flexcoders] Developing Flash/Flex on Linux

2009-10-22 Thread primo411
Besides, Intellij Idea provides a free license for open-source projects developers http://www.jetbrains.com/idea/buy/buy.jsp#openSource. But I guess an Eclipse-based IDE will always find its audience ;) 2009/10/22 Nick Collins ndcoll...@gmail.com Personally, I'm not all that concerned about

Re: [flexcoders] Possible to change border thickness of textInput in error state?

2009-10-22 Thread Andriy Panas
Hi G, I assume you are on Flex 3 SDK, then I suggest you to set focusThickness style on textInput propety, not very elegant solution, because it also influences the thinkness of the focus. If setting focusThinkness is not an option for you, then I suggest you to extend standard TextInput

Re: [flexcoders] Button skin without button behaviour

2009-10-22 Thread Andriy Panas
Hi Richard, mx:PopUpButton focusEnabled=false mouseEnabled=false label=Hello/ -- Best regards, Andriy Panas 2009/10/21 Richard Rodseth rrods...@gmail.com I have a menu bar-like structure composed of PopUpButtons with no gap between them, and wish to extend the bar to the edge of the

[flexcoders] Re: Spark layout / horizonal and vertical centered button

2009-10-22 Thread Markus
Hello Peter, thanks for that good advice. I have used the button only to have a simple example to show. But your approach is definitely better in that case. I have used the outer Group only for a solid background fill in a viewstack like approach using depth. Like this: s:Group top=0 left=0

[flexcoders] 3D look Array

2009-10-22 Thread Christophe
Hello, How to display an array in Flex with a 3D look ? Do you have any examples ? Thank you, Christophe,

[flexcoders] TabNavigator content refresh

2009-10-22 Thread |Mirko
Hi, I have a TabNavigator with let's say two Tabs - TabA and TabB along with its contents. Both tab contents read and change xml on which their both contents depends. If i click TabA, then on TabB in which content i modify xml and then return to TabA which also depends on that xml but change

[flexcoders] Re: Serious bug with array sorting?

2009-10-22 Thread mole5000.geo
I've logged this as a bug in JIRA but I just want to know if anyone else has seen this behaviour? We first noticed something was up when we were sorting dates-as-milliseconds and all kinds of anomalous behaviour occurred). Incidentally, for those interested, this is logged as SDK-23743 in

[flexcoders] ArrayCollection.setItemAt() triggering a new instance of itemRenderer class

2009-10-22 Thread Brandon Krakowsky
Tracy, Thanks for the info.  Yeah, that makes sense.  Initially I was thinking that I could reuse images, textfields, etc., which I sometimes can, but I can't count on the fact that they'll be there. Sorry about hijacking the thread.  My mistake. Thanks, Brandon

[flexcoders] Question about overlay and transparency

2009-10-22 Thread guytom19
Hello, I'm failing to achieve something that sounded trivial at first - please see if you have an idea: - We have a video player - The video player loads a flex application - This flex application we'd like to have a semi transparent (alpha=0.5) black background - on top of the black background

[flexcoders] Flex Profiler Questions

2009-10-22 Thread Jesse Warden
1. Why doesn't he show assets (bitmaps, fonts, ... the things that take the most RAM)? Profiler reports 6 megs, but System.totalMemory reports 40 megs. No other SWF is open on the system beyond that one (so as not to pollute System.totalMemory accounting for multiple SWF's). 2. I had some XML

[flexcoders] Re: TextArea and new line problems (with PHP and MySQL)

2009-10-22 Thread valdhor
When I try this using WebORB, any newlines are transferred through to PHP fine. I haven't tried saving and retrieving from a database but Flex passes them through. Try just creating a PHP page that saves a string with newlines to a database, then retrieves the string and write it to a file.

RE: [SPAM] [flexcoders] TabNavigator content refresh

2009-10-22 Thread Tracy Spratt
Have both (all, really) depend on a model. Use binding or ChangeWatcher or event listeners to update whatever when a value in the model is updated. Update the model from wherever, and all will be good. Tracy Spratt, Lariat Services, development services available _ From:

[flexcoders] Re: Developing Flash/Flex on Linux

2009-10-22 Thread Michael Slinn
IntelliJ IDEA for Flex, even v9M1 (Maia), doesn't quite work properly :( You can see for yourself: http://www.jetbrains.com/idea/nextversion/ It's been a while, but the issues remain. Maia seems stalled. A free policy for open source projects would speed adoption of any IDE; also a free

[flexcoders] Flex AIR app: How to determine Operating System at run-time

2009-10-22 Thread Tracy Spratt
We are creating an app that will run in an embedded linux environment, but are developing under windows. There are several functions we want to enable or disable based on whether we are running under windows or under linux. I have an init file parameter that lets me handle this, but we

Re: [flexcoders] Flex AIR app: How to determine Operating System at run-time

2009-10-22 Thread Jake Churchill
Look at Capabilities. It has an os property. http://livedocs.adobe.com/flex/3/langref/flash/system/Capabilities.html#os -Jake On Thu, Oct 22, 2009 at 10:15 AM, Tracy Spratt tr...@nts3rd.com wrote: We are creating an app that will run in an embedded linux environment, but are developing

Re: [flexcoders] Flex AIR app: How to determine Operating System at run-time

2009-10-22 Thread Jake Churchill
my bad, os is only for in browser. look at the version property: http://livedocs.adobe.com/flex/3/langref/flash/system/Capabilities.html#version -Jake On Thu, Oct 22, 2009 at 10:20 AM, Jake Churchill reyna...@gmail.com wrote: Look at Capabilities. It has an os property.

Re: [flexcoders] Flex AIR app: How to determine Operating System at run-time

2009-10-22 Thread primo411
Oh, I missed that one :) Jake's solution is better. 2009/10/22 Jake Churchill reyna...@gmail.com Look at Capabilities. It has an os property. http://livedocs.adobe.com/flex/3/langref/flash/system/Capabilities.html#os -Jake On Thu, Oct 22, 2009 at 10:15 AM, Tracy Spratt

Re: [flexcoders] Flex AIR app: How to determine Operating System at run-time

2009-10-22 Thread primo411
You will find what you need here: http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7cd8.html The trick is to analyze the String describing the Flash player version. 2009/10/22 Tracy Spratt tr...@nts3rd.com We are creating an app that will run

Re: [flexcoders] Flex AIR app: How to determine Operating System at run-time

2009-10-22 Thread primo411
I wasn't that wrong after all =) You will have to match the OS version from the player version String. 2009/10/22 primo411 primo...@gmail.com Oh, I missed that one :) Jake's solution is better. 2009/10/22 Jake Churchill reyna...@gmail.com Look at Capabilities. It has an os property.

Re: [flexcoders] Button skin without button behaviour

2009-10-22 Thread Richard Rodseth
Thankyou! Just what I needed. On Thu, Oct 22, 2009 at 1:33 AM, Andriy Panas a.pa...@gmail.com wrote: Hi Richard, mx:PopUpButton focusEnabled=false mouseEnabled=false label=Hello/ -- Best regards, Andriy Panas 2009/10/21 Richard Rodseth rrods...@gmail.com I have a menu bar-like

[flexcoders] LCDS : number of flexsessions

2009-10-22 Thread Besite - Bart
Hello, Our application uses amf and rtmp channels. All our destinations have application scope. The rtmp channels in our application have an idle-timeout-minutes property of 20 minutes. In our ds-console we see that the number of Flexsessions keeps growing and growing. After a few hours our

[flexcoders] Need Clean URL Advice ...

2009-10-22 Thread knowself
Ladies and Gents, I have a client that is troubled by their website being Blacklisted by http://www.surbl.org/ ... when attempting to create ( Bit.Ly ) links for use on twitter and facebook. As a reminder ... SURBLs are lists of web sites that have appeared in unsolicited messages. Unlike most

[flexcoders] example of CheckBoxDataGrid in ActionScript: mine ignores col properties

2009-10-22 Thread tim_romano
Although I've succeeded in creating an mxml version of Alex Harui's CheckBoxDataGrid, I'm new at Flex coding, and my ActionScript version isn't succeeding. An example would be very helpful. BTW, I can include a 'selected' column in my dataProvider, or I can leave it out. In my attempts, the

[flexcoders] Daylight Savings Time issues from Flex to ColdFusion 8.01

2009-10-22 Thread gareth_arch
I am having some issues with DST when transferring a date from Flex to ColdFusion. In our application, we create a date object in Flex (3/30/2006 00:00). The PC has adjust for daylight savings time checked in clock. When this date object is passed to ColdFusion, it takes that time and

Re: [flexcoders] Developing Flash/Flex on Linux

2009-10-22 Thread Leonardo Camargo
A new linux based IDE would be awesome, I only wished you guys had started developing it a year ago, cause now, assuming you get to it, it's gonna be another yet till it's out. 2009/10/22 primo411 primo...@gmail.com Besides, Intellij Idea provides a free license for open-source projects

[flexcoders] Can you take a Canvas and save it as a PNG?

2009-10-22 Thread Paul Johnston
Have a client needing image work done in an AIR application to be saved as an image. It's all working on a Canvas object, but I can't see a toImage() or toBitmap() methods to do that. Is it possible? Paul

[flexcoders] help urgent.. - how to insert html data using AS3FlexDB

2009-10-22 Thread paruliant
Dear all how to insert html data using AS3FlexDB Thanks and regard's Sondang pangaribuan

RE: [SPAM] Re: [flexcoders] Flex AIR app: How to determine Operating System at run-time

2009-10-22 Thread Tracy Spratt
Excellent, thanks! The Capabilities class is the ticket. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of primo411 Sent: Thursday, October 22, 2009 11:21 AM To:

[flexcoders] How to remove object from nested arraycollection

2009-10-22 Thread timgerr
Hello all, I have a problem, I need to remove an object from a nested array. Lets say I have this arraycollection private var people:ArrayCollection = new ArrayCollection([ new Person(Grandma Susan, new ArrayCollection([ new Person(John, new ArrayCollection([ new Person(Timmy), new

[flexcoders] ArrayCollection of VO's Memory Leak??

2009-10-22 Thread Jake Churchill
Hi all, I have a charting application where I have an ArrayCollection of VO's. The chart has several series, each looking at one property in the VO. There are several controls that when changed, require a re-calculation of the VO's in the ArrayCollection. Before I do the re-calculation, I call

RE: [SPAM] [flexcoders] example of CheckBoxDataGrid in ActionScript: mine ignores col properties

2009-10-22 Thread Tracy Spratt
Yep, the problem is that grid.columns returns a COPY of the columns array. This is in the docs, but is not obvious. Do this: var aColumns:Array = grid.columns; //then do the column creation and push stuff like you are, to the aColumns array Then, and this critical, grid.columns =

[flexcoders] Re: How to remove object from nested arraycollection

2009-10-22 Thread turbo_vb
Here's a way you can do it recursively: RecursiveDeleteSample http://www.timothyhoff.com/projects/RecursiveDeleteSample/RecursiveDele\ teSample.html (right click for source) -TH --- In flexcoders@yahoogroups.com, timgerr tgallag...@... wrote: Hello all, I have a problem, I need to remove an

[flexcoders] How to know whether there is a hideEffect?

2009-10-22 Thread reflexactions
I have some code that needs to run when a window is hidden, the problem is that there might (or might not) be an effect attached to the hide event which means if there is I dont want to run this routine until after the effect has completed, if there isnt I can run it immediately. So how do I

[flexcoders] Ctrl + eh?

2009-10-22 Thread Mark Lapasa
In IE, why does Ctrl + A in a TextInput work but Ctrl + A in a datagrid doesn't? What is this funny business? Thx, -mL Notice of confidentiality: The information contained in this e-mail is intended only for the use of the individual or entity named above and may be confidential. Should the

Re: [flexcoders] LCDS : number of flexsessions

2009-10-22 Thread Jeffrey Vroom
The first thing would be to determine if they are RTMP or HTTP sessions that are sticking around. HTTP sessions can grow because polling clients keep the session alive indefinitely. RTMP sessions should only stick around if the socket between the client and server is still open. Netstat is a

[flexcoders] Flex2gateway not accessible

2009-10-22 Thread Agha Mehdi
All, http://[servername]/flex2gateway comes back with error 404. My setup is Coldfusion on JRun integrated with IIS. have tried a bunch of suggestions from the web but nothing seems to be working. Please help Thanks

[flexcoders] Flex 3: AIR Local Database

2009-10-22 Thread jwc_wensan
In all the articles I have read and some examples, it only talks about using SQLite as the database on the users' PC/Mac. Is that the only database that can be used locally? Can that database handle a large-scale commercial AIR app with tens of thousands of records? Also, since the AIR app

Re: [flexcoders] Flex 3: AIR Local Database

2009-10-22 Thread Jake Churchill
I've had many thousand records before and SQLite performed just fine. The only limitation I found was with datatypes which is easily overcome in most cases. I can't comment about the rest. On Thu, Oct 22, 2009 at 5:28 PM, jwc_wensan jwcaldw...@zingit.com wrote: In all the articles I have

[flexcoders] Re: SOLVED: Flex, remoting, and dev/production environments

2009-10-22 Thread drudiggy
Just wanted to respond to this and note that this was my issue as well. I had a cflocation redirect in my application.cfm that was commented out with an HTML comment tag, instead of a CFML comment tag. Fixed the comment tag and now my CFC mapping works, YAY! Also would like to note that

[flexcoders] Flex-Ajax bridge data size and type

2009-10-22 Thread mohan.kongu
Hi, I have a requirement to send 1-2 MB of data through Flex Ajax bridge. I need the following details: 1. The size of data, the flex-ajax bridge is capable of handling 2. Type of data. Whether it will accept only XML data or even binary. 3. Can a Java Object be passed through it.

[flexcoders] Best way to call SQL LAST_INSERT_ID through Zend Amf

2009-10-22 Thread steveb805
Hi, I'm mostly a newbie and am writing a simple Flex app. So far, just a List box, where I am renderering a Checkbox and a :abel field, for a simple To-Do utility. I just added the Add New task functionality, and it's working fine, using the addItem method to add the new object to the List

[flexcoders] Disable sort when values in grid change (on propertyChanged)

2009-10-22 Thread tntomek
I don't want my grid reordering itself on every propertyChanged event that would cause the sort order to change, can I prevent this somehow? I understand this is default behavior but it's not an option for our customer, and it is really annoying when the 1000 row grid is re-ordered every time

[flexcoders] Flex Datagrid bottom row cutoff

2009-10-22 Thread flexaustin
My datagrids bottom row is getting cutoff, how do I stop this? J

[flexcoders] Delay / Pause between script executions

2009-10-22 Thread Angelo Anolin
Hi Flexcoders,   I know this may sound very elementary but I cannot figure the hell out of me how to achieve this.   I have a label control.  I want to display different messages after every 5 seconds, such as:   myLabel.text = This is my first message // Need to delay for about 5 seconds here  

Re: [flexcoders] Flex 3: AIR Local Database

2009-10-22 Thread Sam Lai
2009/10/23 jwc_wensan jwcaldw...@zingit.com: In all the articles I have read and some examples, it only talks about using SQLite as the database on the users' PC/Mac.  Is that the only database that can be used locally? Because AIR has support for sockets, there are ongoing projects to give

Re: [flexcoders] Need Clean URL Advice ...

2009-10-22 Thread paruliant
You can try using .htacces http://www.yourhtmlsource.com/sitemanagement/urlrewriting.html http://evolt.org/Making_clean_URLs_with_Apache_and_PHP Thanks and regard's Sondang pangaribuan From: knowself joe.te...@gmail.com To: flexcoders@yahoogroups.com

RE: [flexcoders] Flex 3: AIR Local Database

2009-10-22 Thread Jack @ WenSan
Guys: Thanks for your comments. I am beginning to wonder if AIR is the best solution. The application must be cross browser/cross platform compatible and the user requires the data remain local on their PC/Mac. I don't really want to get into hacks, workarounds, etc. I just want