[flexcoders] Search item in Hierarchical Data used in ADG then select node

2010-02-26 Thread hpatino.rm
I display hierarchical data (different levels each node) using an XML file sent by the server and converted to hierachical data in Flex. ADG displays the data correctly. I want to do the following 1. search for a unique value id from a node property nid in the hierachical data (not

[flexcoders] SQLite foriegn key not working

2010-02-26 Thread Lexter
hello everyone, I have a problem ragarding an sqlite query in AIR application. My foreign key does'nt work when I delete some record from my parent table, what should I do? Thanks in advance.

[flexcoders] Flex stress Testing

2010-02-26 Thread as sass
Hi, everybody,, i want to learn how to flex user-stress testing. For example, i want to test how my system shows feedback after 1 users enter the system. How can i trace the request and response?Which tool can accept my needs? Thank you...

Re: [flexcoders] Flex stress Testing

2010-02-26 Thread Peeyush Tuli
it seems like you want to test your system for concurrent sessions/users. I am not sure how does that relate to flex which is a client technology. Do you intend to stress test your back end/server infrastructure like webservices, LCDS/Blazeds infrastructure? On Fri, Feb 26, 2010 at 3:36 PM, as

Re: [flexcoders] SQLite foriegn key not working

2010-02-26 Thread Peeyush Tuli
Can you clarify more?Is the delete not cascading to the child tables and removing the child records with the parent reference? On Fri, Feb 26, 2010 at 2:02 PM, Lexter halfbaked11...@yahoo.com wrote: hello everyone, I have a problem ragarding an sqlite query in AIR application. My foreign key

[flexcoders] Re:

2010-02-26 Thread Lexter Labra
Yes, I do CASCADE the child tables when I delete the primary key from the parent table. Lexter R. Labra Yahoo! Toolbar is now powered with Search Assist.Download it now! http://ph.toolbar.yahoo.com/

[flexcoders] Repertory for confidentiality

2010-02-26 Thread Christophe
Hello, For a photo editing application which has photos coming from customers. Where to store customers photos to keep confidentiality, and how to call them in the Flex application to display ? Thank you, Christophe,

[flexcoders] Not showing proper data in a task chart from an XML

2010-02-26 Thread max_fas83
I'm using ILOG Elixir to display a task chart, i took the basic code from Tour de Flex and changed the code slightly for me, an XML is generated using my java application. When i use almost exactly the code from Tour de Flex (static file retrieval) the code is show just fine, without any

[flexcoders] The label for next month drops off in DateTimeAxis

2010-02-26 Thread Vishal
I have reported this bug any workaround or fix? http://bugs.adobe.com/jira/browse/FLEXDMV-2335 http://bugs.adobe.com/jira/browse/FLEXDMV-2335

[flexcoders] DragManager.acceptDragDrop not working - Flex 4

2010-02-26 Thread jayl...@ymail.com
Hi Everyone, I'm having a really annoying problem that I can't seem to solve. I have a custom built tree component (built from a List) using the Flex 4 SDK. I need to drag an item from this list into another custom List component (the only customization here is the Skin). I can get the tree

[flexcoders] How to use ExternalInterface in AIR?

2010-02-26 Thread remyasasi85
I am new to Flex. From the Flex API's i got the information, Note: In Adobe AIR, the ExternalInterface class can be used to communicate between JavaScript in an HTML page loaded in the HTMLLoader control and ActionScript in SWF content embedded in that HTML page. Anyone know how to use

[flexcoders] Copy Chart image to clipboard

2010-02-26 Thread abdul_maraikayar
Hi friends, Can anyone having code or Idea to copy chart image to clipboard. Please share with me

[flexcoders] :: ADG TextInput itemrenderer issue ::

2010-02-26 Thread arindam dhar
Hi, I have extended a TextInput class. For ex, myTextInput extends Textinput I use this myTextInput as item renderer in a Advanceddatagrid. Now, when I access one myTextInput for a particular row and col,from outside of the grid, i can change its style but when I set properties like

[flexcoders] Checking for a valid jpg

2010-02-26 Thread brycebarrand
I'm working on an app where I want to check in Flex, before uploading, if a jpg is corrupt or valid. Before I reinvent the wheel, I was wondering if someone had something like this already written. I checked the forums and didn't see anything... In the meantime I'll start working on it, and

[flexcoders] Re: File Upload Problem - Duplicate File Names

2010-02-26 Thread criptopus
I have already ran php code manually and it allowed me to over write the file, the same code is called via a Request() in Flex but this will not work. - Stephen --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: Check the server logs. It will probably say something to the

[flexcoders] Flowing Containers

2010-02-26 Thread criptopus
What I need is a mx:HBox that allows me to put Tick Boxes in it in a horizontal row but when the HBox resizes due to the browser window changing sizes it wraps the Tick Boxes onto the next line. I thought of using Tile, but the text that comes with the tick boxes are many diffrent lengths long

[flexcoders] Re: How to use ExternalInterface in AIR?

2010-02-26 Thread valdhor
Check these out: http://blog.everythingflex.com/2008/02/25/air-actionscript-javascript-bridge/ http://thanksmister.com/index.php/archive/omniture-tracking-in-air-applications/ --- In flexcoders@yahoogroups.com, remyasasi85 remyasas...@... wrote: I am new to Flex. From the Flex API's i got the

[flexcoders] Re: File Upload Problem - Duplicate File Names

2010-02-26 Thread valdhor
The server has no idea of the directory structure of your local file system - all it knows is file name and data. When you do the upload, does the file get overwritten? If so, the server is probably caching the first file and sending it when you request a file with the same name. --- In

Re: [flexcoders] Flowing Containers

2010-02-26 Thread claudiu ursica
Try with the flow box from the flexlib C From: criptopus sd_br...@ntlworld.com To: flexcoders@yahoogroups.com Sent: Fri, February 26, 2010 4:34:43 PM Subject: [flexcoders] Flowing Containers What I need is a mx:HBox that allows me to put Tick Boxes in it

Re: [flexcoders] Flex stress Testing

2010-02-26 Thread as sass
Yes, we want to implement a load test in fact. We want to test our system for concurrent sessions/users. For example, in FlexMonkey for one user it does the functional test. But i want to do a load test for 1000 or 1 concurent users that sending amf request to the server and trace the

[flexcoders] Accessing checkbox inside a Datagrid ItemRenderer

2010-02-26 Thread Angelo Anolin
Hi FlexCoders, Having some troubles trying to resolve this. I hope someone can give me guidelines on how I would be able to achieve this. I need to reference a checkbox inside the datagrid. Below please find some codes I have used. mx:DataGrid id=dgCurrentTasks width=100% height=100%

Re: [flexcoders] Checking for a valid jpg

2010-02-26 Thread Bryce Barrand
Here is what I came up with. It checks to see if the Jpg has the final necessary bytes. I'm open to better suggestions, but this covers what I need for now. It worked with the few corrupt images I had to test. I put the same thing in a blog post on our site:

[flexcoders] PieChart scaling

2010-02-26 Thread Richard Rodseth
I have a PieChart displayed in a variable-sized area. Unfortunately the scaling by the charting library is less than ideal. In particular, the called out labels are illegible in some circumstances. Is there any way to set a minimum font size below which the labels would be omitted?

[flexcoders] Viewing flash based website in HTML component

2010-02-26 Thread Joshua
Hello, I've got an air app where I'm trying to use the Html component to load up a flash website. Problem is that the website starts to load (I can see the preloader) and then the html component just goes blank. I wrote the html page I'm trying to load so I went in and did some trimming of

[flexcoders] Fullscreen video player with controls

2010-02-26 Thread Greg Hess
Hi Folks, I have been tasked with adding video playback and fullscreen support in our application. Searching the web I have found a number of resources outlining how to display a video in fullscreen using Stage.fullscreenSourceRect. Seems very straight forward and I am very interested in

Re: [flexcoders] Flex stress Testing

2010-02-26 Thread Steve Mathews
Not positive I fully understand, but you might check out http://www.cloudpuncher.com/index.htm (coming soon unfortunately). On Fri, Feb 26, 2010 at 7:40 AM, as sass apar...@yahoo.com wrote: Yes, we want to implement a load test in fact. We want to test our system for concurrent

[flexcoders] ASDoc @example question...

2010-02-26 Thread aceoohay
I have created a variety of components using .as. I have decided to document them so that other developers can use them. I would like to put example usage in my documentation. I tried; * @example * The following is a simple application that show some of the functionality;

[flexcoders] Technique so that containers with rounded corners mask out child components

2010-02-26 Thread taude1
I have a lot of containers with rounded corners that host DataGrids, Listboxes, etc.. The problem is that the child containers draw on top of the ParentContainer's rounded corner. See this picture for an example: http://tweetphoto.com/12602585 It doesn't look good. Any clever workarounds.

[flexcoders] Technice so that containers with rounded corners mask out child components

2010-02-26 Thread taude1
I have a lot of containers with rounded corners that host DataGrids, listboxes, etc.. The problem is that the child containers draw on top of the ParentContainer's rounded corner. See this picture for an example: http://tweetphoto.com/12602585 It doesn't look good. Any clever workarounds.

[flexcoders] Re: ASDoc @example question...

2010-02-26 Thread aceoohay
Neve mind. It would appear that the angle brackets are causing the problem. Paul --- In flexcoders@yahoogroups.com, aceoohay pa...@... wrote: I have created a variety of components using .as. I have decided to document them so that other developers can use them. I would like to put example

[flexcoders] Re: Search item in Hierarchical Data used in ADG then select node

2010-02-26 Thread Joshua
I think you can use the hierachicalCursor to run through all the nodes in the xml and then when you hit the node you are looking for you could specify it as the selectedItem in the ADG. --- In flexcoders@yahoogroups.com, hpatino.rm hpat...@... wrote: I display hierarchical data (different

[flexcoders] Using Flex Builder 3 With PHP and MYSQL

2010-02-26 Thread James
Can anybody link me to any examples of using flex in conjunction with php and mysql? I need to display data stored in my mysql table in my flex project within a tilelist. Does anyone know of any examples that allow you to display both images stored on a server and data held within mysql tables

[flexcoders] How to tell if colorpicker is open

2010-02-26 Thread Robert Moss
I can not seem to find a way to tell programmatically if the colorpicker is open. Internally it uses the showingDropdown property, but it is not exposed. I could use myColorPicker.mx_internal::showingDropdown but there has to be a better way. I'm sure I'm just missing it.

[flexcoders] Checkbox set disabled color to enabled color.

2010-02-26 Thread aceoohay
I would like to set the disabled color to the enabled color on a checkbox based custom component. I tried; public function ValidatedCheckBox() { super(); this.addEventListener(Event.CHANGE,_eventHandler)

[flexcoders] In flex charts the label for next month get dropped

2010-02-26 Thread Vishal
I found for DatatTimeAxis if you set disabledRanges to the last date of the month the label for next month gets dropped using property labelUnits='months. Any ideas? Below is the code: ?xml version=1.0? !-- Simple example to demonstrate the DateTimeAxis class. -- mx:Application

[flexcoders] How can i access COM PORT with Flex or AIR?

2010-02-26 Thread creativemindtec
Hello any body know how can i access COM port with Flex AIR?

Re: [flexcoders] How can i access COM PORT with Flex or AIR?

2010-02-26 Thread Csomák Gábor
javabridge is the best solution, i think.. 2010/2/27 creativemindtec sade...@hotmail.com Hello any body know how can i access COM port with Flex AIR? -- before printing, think about enviromental responsibility

Re: [flexcoders] How to tell if colorpicker is open

2010-02-26 Thread Alex Harui
There should be open/close events On 2/26/10 2:29 PM, Robert Moss rdm0...@yahoo.com wrote: I can not seem to find a way to tell programmatically if the colorpicker is open. Internally it uses the showingDropdown property, but it is not exposed. I could use

[flexcoders] Tree Control behaves weirdly on drag and drop operation.

2010-02-26 Thread Patil Yogesh
I am trying to construct dataprovider from two different sources in Tree control. I am able to construct it but when I perform drag and drop operation on nodes in tree, it gives a weird behavior. Following is the prototype for that: ?xml version=1.0 encoding=utf-8? s:Application

RE: [flexcoders] Accessing checkbox inside a Datagrid ItemRenderer

2010-02-26 Thread Tracy Spratt
No, you don't want to do that. You must have your renderer's checkbox state be set by a property value in the dataProvider item. Then when the checkbox is changed, change the value in the dataProvider item. To programmatically change the state of the checkbox, get a reference to the