Re: [flexcoders] How do I wrap text in a label control

2008-05-22 Thread Josh McDonald
You can't, you'll need to use the mx:Text component for multi-line text. -J On Thu, May 22, 2008 at 3:42 PM, Luke Vanderfluit [EMAIL PROTECTED] wrote: Hi. How do I wrap text in a label control? Thanks. Kr. Luke. -- Luke Vanderfluit Analyst / Web Programmer e3Learning.com.au 08

RE: [flexcoders] Handling between 20.000 and 100.000 records

2008-05-22 Thread Gordon Smith
I'd try the regular filter first and make sure it's really too slow before trying anything else. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of EECOLOR Sent: Wednesday, May 21, 2008 2:35 AM To:

[flexcoders] Re: ScriptTimeOut Issue

2008-05-22 Thread Subeesh
Hi Alex, Thanks for your reply . But I am not sure what are you trying to say . The error is thrown from flex , not from javascript , and how cam i use the setTimeout from javascript. Subeesh --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Isn't there a setTimeout

Re: [flexcoders] Re: invalid column widths in DG before render.

2008-05-22 Thread EECOLOR
Ahh, now I understand why I wrote about creationPolicy. I still messed up that email though, haha. Alex said it in his email: Way early in this thread I mentioned that, depending on your creationPolicy, objects on yet-to-be-viewed tabs may not exist or have invalid sizes. The problem in your

[flexcoders] Learning to use RegEx Sting Replace

2008-05-22 Thread Craig
i know, it should be easy, the following code gives me: Output: QuoteRSS i am looking for it to give me: Output: IBM 100 can you tell me what i am doing wrong? var str:String = QuoteRSS: IBM 100; var pattern:RegExp = /QuoteRSS/gi; str.replace(pattern, ); var result:Object =

Re: [flexcoders] Image

2008-05-22 Thread Laith Juwaidah
Sorry to bother you again but I'm getting a run-time error on the line: var loader:Loader = image.mx_internal::contentHolder as Loader; Saying Cannot access a property or method of a null object reference. On Wed, May 21, 2008 at 11:29 PM, Manish Jethani [EMAIL PROTECTED] wrote: On Thu, May

[flexcoders] Async Concurrent Requests with AMF for BlazeDS or LCDS

2008-05-22 Thread MyoT
Hi There, I am wondering is there any way, you can make concurrent requests to one destination via RemoteObject over AMF. Basically, I want to issue multiple request of getItem operations to one destination. Currently, my command is making multiple async requests but RemoteObject doesn't

Re: [flexcoders] Image

2008-05-22 Thread Laith Juwaidah
Sorry, I copied the wrong line, it's giving the error on loader.mouseEnabled = false; On Thu, May 22, 2008 at 11:07 AM, Laith Juwaidah [EMAIL PROTECTED] wrote: Sorry to bother you again but I'm getting a run-time error on the line: var loader:Loader = image.mx_internal::contentHolder as

[flexcoders] Dynamic ruler

2008-05-22 Thread mihksoft
Can soomebody help me with an idea for a dynamic ruler like in the application from this link. http://www.goldwave.com/mqrelease.php 10x

RE: [flexcoders] Flex 3, Coldfusion wizard and internal build errors

2008-05-22 Thread neonblue
I am, is there an issue with that? I can access the drive with no problems... Scott -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Wednesday, May 21, 2008 4:04 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

[flexcoders] Re: Handling html formatted tables in Flex

2008-05-22 Thread Craig
This is the code. it is item description XML from stock quote. ![CDATA[ table border=0 cellspacing=0 cellpadding=1 width=150TRTD bgcolor=#00 table border=0 cellspacing=0 cellpadding=0 width=100% class=pq_all TR bgcolor=#DDTD WIDTH=100% ALIGN=CENTER COLSPAN=2 nowrapa

[flexcoders] How to extract data from XML

2008-05-22 Thread wild.katana
Hello, I have loaded an XML from a URL using URLLoader. Now that I have it in an object, how do I access individual parts of that data? The XML looks like this: feed xmlns=http://www.w3.org/2005/Atom; xmlns:openSearch=http://a9.com/-/spec/opensearchrss/1.0/; xmlns:gml=http://www.opengis.net/gml;

[flexcoders] Re: How do I use URLLoader?

2008-05-22 Thread wild.katana
Thank you, it worked. Now, could you tell me how to access the data from the myXML object? Say I wanted to display what's in the logo element in the XML file: ?xml version='1.0' encoding='UTF-8'? feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'

[flexcoders] Distributed system question

2008-05-22 Thread markgoldin_2000
I am currently using a system that provides scanning ability to the floor production. Serial scanners are installed all over and connected to multiple computers. I am using distributed architecture: monitoring applications are running on central computers and programs that support scanning are

[flexcoders] Re: Async Concurrent Requests with AMF for BlazeDS or LCDS

2008-05-22 Thread twcrone70
Your server code might be able to run things concurrently but unless I misread something, Flash is currently single threaded I believe. So actually sending the requests at the 'same time' is difficult if even possible. - Todd --- In flexcoders@yahoogroups.com, MyoT [EMAIL PROTECTED] wrote:

[flexcoders] Using fds.swc as RSL

2008-05-22 Thread Marvin Froeder
Hi, Is possible to use fds.swc as RSL? When I try to extract fds.swc and user optimizer on it got this error: Flex Error #1001: Digest mismatch with RSL /Optimization/rsl/fds.swf. Redeploy the matching RSL or relink your application with the matching library. This error message was show bounded

Re: [flexcoders] Re: Flex Builder 3 Profiler

2008-05-22 Thread Marvin Froeder
I'm under same issue. I create a new project. Create a dummy app. Right click them Profile As/Flex Application Nothing happens on Flex-builder. Debug mode runs well, but profile no. Using FP 9u124 Any idea? VELO On Wed, Sep 5, 2007 at 9:48 AM, Mark Ingram [EMAIL PROTECTED] wrote: Yes,

[flexcoders] Re: Learning to use RegEx Sting Replace

2008-05-22 Thread Craig
the morning sun shines a new light on the subject the code should read... var result:String = str.replace(pattern, ); rssQteTitle = result.toString(); instead of str.replace(pattern, ); var result:Object = pattern.exec(str); rssQteTitle = result.toString(); --- In

[flexcoders] Posting XML to an HTTPService

2008-05-22 Thread Steve Good
I ran across an article explaining how to do this a while back when I was trying to figure out how to post form data to a remote object. Since then I've forgotten what my old search terms were that I used to find this info. Does anyone have an example of how I would post an XML packet to an

[flexcoders] Re: Flex automation - AutoQuick sample application

2008-05-22 Thread twcrone70
I didn't think anyone would bite on this one very quickly but here is a more accurate link. It looks like a couple other people had the same problem and noticed my comments at the bottom yesterday and responded as well. http://livedocs.adobe.com/flex/3/html/agents_7.html#195249 I am looking at

[flexcoders] Any one have info as to how to setup an AdvancedDataGridHeaderRender?

2008-05-22 Thread jlopes151
I'm looking for a walk through as to how to setup an AdvanceddataGridHeaderRender. Any one know of one?

[flexcoders] Re: RemoteObject connections over HTTPS fails..

2008-05-22 Thread sk_acura
Hi Seth, Till now we have used Flex SDK2.0.1. And we are now trying to migrate to Flex SDK3.0.0. ( As we were having issues in enabling access to our app on https and also we would like to use new features in Flex 3 like ADG). We have tried the Flex3 SDK Version (3.0.0.447) with BlazeDS

[flexcoders] Re: dataTipRenderer available for DataGrid?

2008-05-22 Thread djbrown_rotonews
what am I missing then? My code never gets to the the createPNRToolTip function referenced in the toolTipCreate event handler. I messed around with the showDataTips property on the grid itself, and it didn't change the behavior. mx:DataGrid width=100% height=100% dataProvider={pnrsToProcess}

[flexcoders] Re: Custom ItemRenderers in List keyboard tabbing

2008-05-22 Thread jscrummack
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Peter Ent has a post on how to do this IIRC. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jscrummack Sent: Tuesday, May 20, 2008 2:40 AM To:

[flexcoders] BarChart - space between each clustered group , how to control it.

2008-05-22 Thread alex
In barchart I know that it's possible to control maxBarWidth barWidthRatio but it does not change the distance between each clustered group. How can I do it ?

[flexcoders] Flex Control Over Embedded Flash

2008-05-22 Thread kenny14390
I know that there is a bridge between Flex and Flash, and Flash SWF and SWC's can be embedded inside of a Flex app. How much control does Flex have over the Flash movie? Let's say I have a component in Flash that has an image in it and a border with a certain color around the component. Is there a

[flexcoders] Autocomplete component

2008-05-22 Thread jovialrandor
I want to add the following functionality to the Adobe Autocomplete component: 1. When user types first few letters, do not start the backend processing/searching until the user has finished typing the parameter. Currently as soon as you type the first letter, the autocomplete starts

[flexcoders] Timing between keystrokes

2008-05-22 Thread jovialrandor
How can I measure the time between the keystrokes the end user enters? I want to write a function that executes an event if the end user takes longer than 2 seconds between keystrokes on a form.

[flexcoders] Re: Tree - Drag Drop - prevent drop into folder

2008-05-22 Thread iilsley
It does not appear to be 'exposed' in Flex 3 sdk - released build. --- In flexcoders@yahoogroups.com, Andriy Panas [EMAIL PROTECTED] wrote: FYI, iilsley, back in November 2006, Adobe Flex SDK Engineer Deepa Subramaniam had made a promise on Flexcoders mailing list that the access to

[flexcoders] Re: SWF Cache

2008-05-22 Thread Doug Lowder
If you can add content (besides your Flex app) to the server, you can do both. http://www.adobe.com/devnet/flex/articles/version_sync_ria.html It's an older article but the concepts still apply. Long story short, your Flex app can periodically read some server side data (say, an XML page via

[flexcoders] Copy/Paste problem in FlexBuilder3

2008-05-22 Thread j_thirabusumal
Once my MXML file size gets too large (not even that large -- approx 600 lines), or possibly once I have too many text fields, Copy stops working entirely for objects in the design view. The option is there, I see it on the right-click, etc. I can still copy text. I've monitored the

[flexcoders] Extending Tree component (Getting the x and y )

2008-05-22 Thread augie3333
Hi All, Can someone point me in the right direction of being able to get the specific x and y positions of an item in a tree control? I'm using tree.contentMouseY but it is a little flaky. I am looking for the exact cordinates(x and y) and the height and width of the itmes rollover style box and

[flexcoders] Flash USB-API :)

2008-05-22 Thread Cato Paus
WE need to vote again :) https://bugs.adobe.com/jira/browse/FP-247 I realy hope we can have USB communication in AIR and Flash Player :) I can imagine many different type of applications which can communicate with different devices connected over USB, atleast my phone (over bluetooth or

RE: [flexcoders] How to extract data from XML

2008-05-22 Thread Tracy Spratt
First, did you trace or alert your XML in yur result handler? If you did not and are assuming you know what your xml looks like exactly, do that now. Second, when attempting to view XML, always use toXMLString() (search the archives for why): Alert.show(myXML.logo.toXMLString()) Third,

[flexcoders] TittleWindow ControlBar not showing up

2008-05-22 Thread carriefieldsamy
Hi Everyone, I'm trying to dynamically create dragable TitleWindows with ControlBars and the ControlBars are not showing up. At this point I am adding a label to the control bar. Eventually it will be an image. Thanks in Advance! Here's the code: ?xml version=1.0 encoding=utf-8?

[flexcoders] word highlighting

2008-05-22 Thread ibo
Have anyone worked on something like this before? What I want is to highlight the word by changing the background color of each keyword from a sentence/paragraph. Here is my code so far: private function applyTextHighlight(textField:UIComponent, listOfWordPositions:Array):void {

Re: [flexcoders] word highlighting

2008-05-22 Thread Frederico Garcia
ibo escreveu: Have anyone worked on something like this before? What I want is to highlight the word by changing the background color of each keyword from a sentence/paragraph. Here is my code so far: private function applyTextHighlight(textField:UIComponent,

[flexcoders] bitmap fonts

2008-05-22 Thread nihilism machine
I tried to get bitmap fonts with external swfs working on my application but no go. would someone send me an swf with a bitmap font in it and some code/css that uses it? This would really help me out with my school project. -e

[flexcoders] Overlay in Tree controls

2008-05-22 Thread augie3333
Hello, Has anyone had any success at doing this. I want to overlay an image over a selected item in the tree control. I am having problems getting the x and y cordinates of the rolledover and/or selected item. Any help is much appreciated. Thanks, -Augie Marcello III

Re: [flexcoders] word highlighting

2008-05-22 Thread ibo
Frederico, I did try it. I used the highlighter on a custom item renderer. looks good on initial display but when you try scrolling the list component, the display screws up. the rectangular box used as background doesnt flow with the text. something to do with relative x,y positioning. looks

[flexcoders] Add New Item to Datagrid

2008-05-22 Thread David C. Moody
Hi, I'm having trouble. I have done this before, and it is actually running in a program now. But for the life of me I can't make it work again. I'm using Alex Harui's method: http://blogs.adobe.com/aharui/2008/03/custom_arraycollections_adding.h tml Here's my AS code: private function

RE: [flexcoders] Add New Item to Datagrid

2008-05-22 Thread Alex Harui
In gotCHeckData, It looks like you're working on a local var From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David C. Moody Sent: Thursday, May 22, 2008 10:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Add New Item to

RE: [flexcoders] TittleWindow ControlBar not showing up

2008-05-22 Thread Alex Harui
Try calling createComponetsFromDescriptor. The controlbar is managed through trickery. You can't just add it as a child. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of carriefieldsamy Sent: Thursday, May 22, 2008 8:51 AM To:

RE: [flexcoders] Extending Tree component (Getting the x and y )

2008-05-22 Thread Alex Harui
Normally, that is a bad practice as renderers are recycled. However, if you must you can get to renderers in the listItems array of arrays. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of augie Sent: Thursday, May 22, 2008 8:09 AM

RE: [flexcoders] Timing between keystrokes

2008-05-22 Thread Alex Harui
See the IDLE event From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jovialrandor Sent: Thursday, May 22, 2008 7:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Timing between keystrokes How can I measure the time between

RE: [flexcoders] Re: Custom ItemRenderers in List keyboard tabbing

2008-05-22 Thread Alex Harui
Hmm, I didn't see it either. You can use IFocusManagerComplexComponent or just IFocusManagerComponent and call preventDefault on keyFocusChange From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jscrummack Sent: Thursday, May 22, 2008

RE: [flexcoders] Re: dataTipRenderer available for DataGrid?

2008-05-22 Thread Alex Harui
Busy week. I'll try to take a look next week maybe. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djbrown_rotonews Sent: Thursday, May 22, 2008 6:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: dataTipRenderer

[flexcoders] Re: Async Concurrent Requests with AMF for BlazeDS or LCDS

2008-05-22 Thread MyoT
If Flex (Flash) uses async request, does Single Threaded matter? I tried to have more than one channel, it doesn't help either. - Jay --- In flexcoders@yahoogroups.com, twcrone70 [EMAIL PROTECTED] wrote: Your server code might be able to run things concurrently but unless I misread

[flexcoders] chart data change events

2008-05-22 Thread netdeep
I need to capture an event for when the data is updated in a chart. I take a snapshot of the chart and save it to a file. But when I do it via a custom event which I fire myself, it fires the event and takes the screenshot before the update and so just snapshots the previous state of the

RE: [flexcoders] Re: Handling html formatted tables in Flex

2008-05-22 Thread Battershall, Jeff
Craig, That's pretty messy - not well-formed XML at all. I'd search on RegEx examples and see what may already exist that you can leverage. Possibly there are scripts that can strip out all the formatting information and leave you with a bare bones table that could be converted to XML. These

[flexcoders] security question...testing locally while loading remote swfs

2008-05-22 Thread Rich Rodecker
I'm running into a little bit of a wierd situation while testing my project. When I debug the app, the main app swf loads in a swf from a remote URL. I know that the sandboxType is going to be different for the main app swf (which would be local trusted) than the remote swf (which would be

[flexcoders] Trees backed by ListCollectionView with single node

2008-05-22 Thread Maciek Sakrejda
I have a tree of User objects backed by a ListCollectionView of Users. I have a custom TreeDataDescriptor that shows these users and their roles. This works fine when I have more than one user. However, if the tree contains just a single user, the user node does not appear, only the roles show up.

[flexcoders] Re: Add New Item to Datagrid

2008-05-22 Thread David C. Moody
I was, that's exactly how I did it in a previous program. But I changed it to a private var declared outside of functions and still I get no data. I've beat my head against the wall all morning. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: In gotCHeckData, It looks

[flexcoders] How to use ArrayCollection for dataProvide by easily?

2008-05-22 Thread flexawesome
Hey there, I really need your suggestions on this @[EMAIL PROTECTED] have an XML file, it stores couple of departments information. there are couple of TileList compoents in my application and each of renderer are are mapping to different department. For example: TIleList1 / Renderer1 uses fin

[flexcoders] Re: TittleWindow ControlBar not showing up

2008-05-22 Thread carriefieldsamy
It's already in the code (dw.createComponentsFromDescriptors();) and still doesn't work. Any other ideas? Thanks, Carrie --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Try calling createComponetsFromDescriptor. The controlbar is managed through trickery. You

[flexcoders] Re: Positioning from a label in a Button

2008-05-22 Thread jaywood58
I'm replying to this very old post, but thought someone might still find it helpful. My solution is not *exactly easy, but seems simpler than having to define a new theme and tinker with programmatic skinning. I had a custom class that extends Button, where I wanted the labels to be placed a

[flexcoders] Re: TittleWindow ControlBar not showing up

2008-05-22 Thread ben.clinkinbeard
Or better yet, use FlexMDI :) --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Try calling createComponetsFromDescriptor. The controlbar is managed through trickery. You can't just add it as a child. From:

[flexcoders] Re: How to use ArrayCollection for dataProvide by easily?

2008-05-22 Thread flexawesome
if you couldn't see the XML file in format, please see here http://www.privatepaste.com/84L8s25KwM --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey there, I really need your suggestions on this @[EMAIL PROTECTED] have an XML file, it stores couple of

RE: [flexcoders] Re: Async Concurrent Requests with AMF for BlazeDS or LCDS

2008-05-22 Thread Seth Hodgson
There is a single thread that advances through SWF frames and runs your ActionScript code and event handlers, but network calls are performed by separate background threads concurrently. In order to have calls processed concurrently on the server, they need to arrive as separate requests. In the

[flexcoders] filterFunction problems being had

2008-05-22 Thread bredwards358
Okay, I'm working on a filter function to sort through information in an ArrayCollection which is filled by the results of a select statement to a database. The actual functionaility is modified ever so slightly from the source I found here:

[flexcoders] Button down event

2008-05-22 Thread Amy
When a user tabs to a button and presses enter, they're going to expect that pressing the enter key will have the same effect as clicking the button. I thought the buttonDown event would accomplish this, but pressing the enter key doesn't seem to trigger it. What event should I use? TIA;

[flexcoders] Re: Positioning from a label in a Button

2008-05-22 Thread jaywood58
Sorry about the typos in my previous post -- here is corrected code snippet: public class MyButton extends Button { override protected function updateDisplayList (w:Number, h:Number):void { super.updateDisplayList(w,h); // position label 10 px from top textField.y = 10; }

[flexcoders] eed simple CRUD application using Flex, Mysql and PHP

2008-05-22 Thread andrej770
I am a newbie at Adobe Flex. I want to create a simple Address book in Flex using Mysql, and PHP. I want to be able to add, delete and update records from Datagrid and from a form. It has been hit and miss at finding a working solution; I've heard about amfphp, json, WebOrb, etc but

[flexcoders] Re: Positioning from a label in a Button

2008-05-22 Thread ben.clinkinbeard
You might have to tinker to get an exact position right but you can also use the padding styles to position a Button's label. Something like paddingTop=-50 will even float the label above the button itself. HTH, Ben --- In flexcoders@yahoogroups.com, jaywood58 [EMAIL PROTECTED] wrote: I'm

[flexcoders] combo box width

2008-05-22 Thread nihilism machine
i have the following code in a series of form items. im trying to set the width of the comboboxes so that they match the input boxes. width=100 etc does not work, any ideas? mx:FormItem id=sProjectTypeItem label=Project Type: mx:ComboBox mx:ArrayCollection

[flexcoders] Re: filterFunction problems being had

2008-05-22 Thread Tim Hoff
Hi Brian, The original example uses an associative array; which is an instance of the Object class. Because the example creates it's ArrayCollection in code, value = item[col] works: dpRows = new ArrayCollection(); var item:Object = new Object(); item.type = Website; item.name = Expectal.com;

[flexcoders] Transparent AIR application over streaming video

2008-05-22 Thread ivanericksont8
Hi there, I am hoping to develop an AIR application that overlays a video stream being displayed by VLC or Quicktime. I have been testing with the Adobe demo AIR application called ScreenBoard and found that VLC video comes through the transparent AIR window as a black box and Quicktime video

Re: [flexcoders] Why would mx.controls.NavBar.dataProvider not accept an array of DisplayObject? (3.0.0)

2008-05-22 Thread Fiouz
On Sun, May 18, 2008 at 7:09 AM, Ernesto Casasín [EMAIL PROTECTED] wrote: what if you use vs.dataProvider.removeItemAt(2) to remove completely the form button from your ButtonBar, later you could add it using vs.dataProvider.addItem(yourObject) Sorry for the long delay response, but I have to

RE: [flexcoders] Re: RemoteObject connections over HTTPS fails..

2008-05-22 Thread Seth Hodgson
During server startup, the MessageBrokerServlet should be initialized and you could enabled Debug level logging in your services-config.xml to verify. Once the web app is running, before making any requests for a *.mxml file, try making a request to one of your endpoints directly; start with a

Re: [flexcoders] Why would mx.controls.NavBar.dataProvider not accept an array of DisplayObject? (3.0.0)

2008-05-22 Thread Fiouz
On Sun, May 18, 2008 at 1:01 PM, Manish Jethani [EMAIL PROTECTED] wrote: Wrapping the view stack children into an array of plain objects is the only way to do that, from what I know. Perhaps this would be cool: ButtonBar id=buttons/ ViewStack id=vs custom:Chart id=chart icons=/

[flexcoders] RemoteObject.showBusyCursor doesn't work

2008-05-22 Thread Sebastien ARBOGAST
I'm trying to transform a simple example Flex 3 application to separate model, view and controller. I started with the following: mx:Application mx:RemoteObject id=myServer showBusyCursor=true/ /mx:Application And I ended up with the following: main.mxml mx:Application

[flexcoders] Slide out panel with 90 degree text on the border

2008-05-22 Thread djohnson29
I have an application that uses a slideout panel. A small portion of the panel's left border is displayed off the right hand side of the screen and when the user clicks on this border the full panel slides out from right to left to fill the screen. I would like to have text displayed on the

[flexcoders] Re: How to extract data from XML

2008-05-22 Thread wild.katana
Okay, first of all, thanks for all of your help, Tracy. I have checked the myXML variable with Alert.show(myXML) and it shows what I pasted in the first post (that's where I got it). So I know that myXML contains that. I tried doing Alert.show(myXML.logo.toXMLString()) but it is still showing

RE: [flexcoders] Button down event

2008-05-22 Thread Alex Harui
If you set defaultButton on the container it will do it for you From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Thursday, May 22, 2008 11:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Button down event When a

RE: [flexcoders] Re: TittleWindow ControlBar not showing up

2008-05-22 Thread Alex Harui
I see you're adding the control to hBox and calling createComponentsFromDescriptor on something else? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of carriefieldsamy Sent: Thursday, May 22, 2008 11:18 AM To: flexcoders@yahoogroups.com

[flexcoders] Issues uninstalling FP10 and installing FP9?

2008-05-22 Thread ivo
Hello all, I used the uninstall_flash_player.exe to remove the FP10 I had previously installed and am trying to install FP9.The active x version installs without problems but the plugin version crashes repeatedly. Has anyone experienced this and now how to get around it? Thanks, - Ivo

RE: [flexcoders] Re: Add New Item to Datagrid

2008-05-22 Thread Alex Harui
Debug into it. A breakpoint in makeRowsAndColumns and check the .collection to see what's in it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David C. Moody Sent: Thursday, May 22, 2008 11:05 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Trees backed by ListCollectionView with single node

2008-05-22 Thread Alex Harui
Try to find a way to test without the custom descriptor From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Maciek Sakrejda Sent: Thursday, May 22, 2008 11:10 AM To: flexcoders Subject: [flexcoders] Trees backed by ListCollectionView with

Re: [flexcoders] eed simple CRUD application using Flex, Mysql and PHP

2008-05-22 Thread Douglas McCarroll
I'm not a PHP person, but some of the examples listed here may be helpful: http://www.brightworks.com/technology/adobe_flex/with_php.html On Thu, May 22, 2008 at 3:00 PM, andrej770 [EMAIL PROTECTED] wrote: I am a newbie at Adobe Flex. I want to create a simple Address book in Flex using

RE: [flexcoders] security question...testing locally while loading remote swfs

2008-05-22 Thread Alex Harui
AFAIK, you have to deploy to a server. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rich Rodecker Sent: Thursday, May 22, 2008 11:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] security question...testing locally while

RE: [flexcoders] Datagrid cell editing question

2008-05-22 Thread Pratima Rao
Alex - I got the tabbing/enter key to work in the datagrid with your suggestion. It took me a while to make it work. One last problem (hopefully) - I have an Ok and Cancel button below the datagrid and when I tab in the datagrid it never gets to these buttons. It's due to the fact that

[flexcoders] Importing SWC Files in FLEX

2008-05-22 Thread anuj181
Hi Does anyone know how to import SWC file created in CS3 into Flex Project. I googled it and found lot of samples but in my case whenever i gave Library path, the swc file is not showing in my project' lib directory and when i manually move swc file it shows unknown icon on the file. Does anyone

RE: [flexcoders] RemoteObject.showBusyCursor doesn't work

2008-05-22 Thread Pratima Rao
Hope this is useful - I see the following error when I run it in the debugger. Error: Cannot assign operations into an RPC Service (showBusyCursor) at

[flexcoders] Populating Datagrid from Database

2008-05-22 Thread kenny14390
I am calling a PHP page, which reads my entire database and formats it to output as valid XML. How can I set this as the data provider for a Datagrid component? I know what the columns are, but not the number of rows nor the data (obviously). Thanks.

RE: [flexcoders] Trees backed by ListCollectionView with single node

2008-05-22 Thread Maciek Sakrejda
Actually, this seems to be an issue with remoting... While researching this, I've noticed that Flex remote calls helpfully strip the collection out when it contains only a single object. I was binding to lastResult (I know, Tracy will say 'I told you so'), so I did not notice this. Is there any

[flexcoders] Re: SWF Cache

2008-05-22 Thread Don Kerr
Thanks Doug. It is brilliantly simple ... and I like using a CFC to handle it. I'll give this a try. Thanks! Don Kerr --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: If you can add content (besides your Flex app) to the server, you can do both.

[flexcoders] Re: Async Concurrent Requests with AMF for BlazeDS or LCDS

2008-05-22 Thread MyoT
Hi Seth, This is awesome information. I didn't know player batch them up and send in one post. I learned something today. I digged through Blaze source code and found out that BatchProcessFilter is responsible for processing those messages . I am wondering is there any way, I can write our

[flexcoders] Flex Builder 3 developing against a remote coldfusion server.

2008-05-22 Thread neonblue
Thanks to Tom for pointing me in the right direction on what the issue is, but I'm not sure on why or how to fix it yet. Basically I've got a notebook with VMWare running on it. Up to this point I've got several different server images for different types of development (coldfusion 8 with

[flexcoders] tab delimited to xml?

2008-05-22 Thread chigwell23
Is there actionscript somewhere that already does this or do I need to roll my own? As always, much appreciated, Regards, Mic

RE: [flexcoders] Flex Builder 3 developing against a remote coldfusion server.

2008-05-22 Thread Dale Fraser
You need to configure your destination correctly And probably setup a crossdomain.xml file to allow access. Regards Dale Fraser http://learncf.com/ http://learncf.com http://flexcf.com/ http://flexcf.com From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: How to use ArrayCollection for dataProvide by easily?

2008-05-22 Thread flexawesome
any suggestions? --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: if you couldn't see the XML file in format, please see here http://www.privatepaste.com/84L8s25KwM --- In flexcoders@yahoogroups.com, flexawesome flexawesome@ wrote: Hey there, I really

[flexcoders] Re: How to use WebServices in Flex 3?

2008-05-22 Thread barry.beattie
Well I prefer not to mess with the generated code, for the maintenance sake. Robert dumb question time... how do you guys usually manage the generated code when the webserver target moves from, say, development to a production environment and the soap address changes? (since part of the

[flexcoders] prevent datagrid column from being dragged

2008-05-22 Thread superabe superabe
Is there anyway to prevent a column in an AdvancedDataGrid from being draggable. I see a draggable property on the regular Datagrid, but not on the ADG ? TIA - superabe

[flexcoders] Re: Button down event

2008-05-22 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: If you set defaultButton on the container it will do it for you What if there are multiple buttons? Surely they can't _all_ be the default button? I thought Flex was supposed to be easy to make accessible. Thanks; Amy

[flexcoders] Spring br / Conference 2008 - Web developers/designers conference

2008-05-22 Thread anselmbradford
I thought this might interest people on the list: http://www.sbconference.com Spring br / Conference 2008 Tuesday, June 3rd Ohio University Baker University Center - Athens, OH Produced by the Southeast Ohio Creative Adobe Technologies User Group and Ohio University's Office of Information

[flexcoders] Flexcover 0.50 released

2008-05-22 Thread joeberkovitz
I've just released Flexcover 0.50 on Google Code at: http://code.google.com/p/flexcover/ Flexcover is a tool that measures how much of your code actually runs when tested, and helps you discover which parts didn't run. The new version of Allurent's open-source code coverage tool for Flex

[flexcoders] Securing remote CFCs

2008-05-22 Thread neonblue
I'm experimenting around with setting up logins and realized that there doesn't appear to be session variables. Even if I set a password on the interface, that won't stop someone from creating their own routines to attach to the CFCs on the server. I can't do anything with the type of CFC

[flexcoders] CrossDomain RSS Error Accessing from Web Server

2008-05-22 Thread Craig
I have a Flex 3.0 app that connects to RSS feed fine from FlexBuilder IDE but when deployed on Web Server gets the following error Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: http://mywebserver.net/myflexapp.swf cannot load data from

[flexcoders] cairngorm and webservice demo?

2008-05-22 Thread markflex2007
hi, I use cairngorm with remoteobject before. I plan to develop a new app with cairngorm and webservice, I want to see a sample code to figure out how to do this. Do you have some url or information for this? thank you in advance. Mark

RE: [flexcoders] Re: Async Concurrent Requests with AMF for BlazeDS or LCDS

2008-05-22 Thread Tim Stewart
Hi Seth, could you say whether this is similar to the limitation in LiveCycle / Blaze proxy service, which causes multiple web service calls to be queued and executed in sequence rather than simultaneously - and whether there could be a similar approach to working around this? I have an

  1   2   >