[flexcoders] Newbie Question: Library Path for Using a 3rd-party utility

2011-08-07 Thread tacman1123
I'm new to Flex, I've been reading the Adobe Training from the Source book, but am stuck on a simple setup question. I want to integrate SQLite, and figured I'd use probinson's sqlite utilities (https://github.com/probertson/air-sqlite) to manage the connections. My question is where do I

Re: [flexcoders] Newbie Question: Library Path for Using a 3rd-party utility

2011-08-07 Thread dorkie dork from dorktown
Hi Tac, First setup your library project. Then go back to your original project and go into Properties Flex Build Path and click Add Project. A dialog will display available library projects for you to choose. Select your new library and click OK. The workspace will rebuild if it doesn't click

Re: [flexcoders] Newbie Question: Library Path for Using a 3rd-party utility

2011-08-07 Thread dorkie dork from dorktown
BTW Welcome to Flex! :) On Sun, Aug 7, 2011 at 6:59 AM, tacman1123 tac...@gmail.com wrote: ** I'm new to Flex, I've been reading the Adobe Training from the Source book, but am stuck on a simple setup question. I want to integrate SQLite, and figured I'd use probinson's sqlite utilities

[flexcoders] Newbie question - 'tear-off' panels?

2009-12-07 Thread flexnewbie999
Hi, I want to implement a front-end where there are multiple 'pages' that can be dragged off of the screen and made invisible with another 'page' underneath it that then becomes visible. I'm familiar with dragging and dropping but the problem I run into is that when the item is dropped the

RE: [SPAM] [flexcoders] Newbie question - 'tear-off' panels?

2009-12-07 Thread Tracy Spratt
: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of flexnewbie999 Sent: Monday, December 07, 2009 2:44 AM To: flexcoders@yahoogroups.com Subject: [SPAM] [flexcoders] Newbie question - 'tear-off' panels? Hi, I want to implement a front-end where there are multiple 'pages

Re: [SPAM] [flexcoders] Newbie question - 'tear-off' panels?

2009-12-07 Thread flexnewbie999
] Newbie question - 'tear-off' panels? Hi, I want to implement a front-end where there are multiple 'pages' that can be dragged off of the screen and made invisible with another 'page' underneath it that then becomes visible. I'm familiar with dragging and dropping but the problem I run

Re: [flexcoders] newbie question : putting a semicolon in a mxml property

2009-07-12 Thread Sam Lai
Not if there is just a single line of script within the quotation marks. If you wanted to do something like this though, mx:Button label=some label click=t1.text = t2.text; doSomethingElse(); t3.visible = false; / Then you do need the semi-colons. Most people just have the semi-colon there out

[flexcoders] newbie question : putting a semicolon in a mxml property

2009-07-11 Thread ew6014
hi guys i was reading the flex documentation and i noticed a ; inside a mxml property let me give you an example mx:Button label=some label click=t1.text = t2.text; / ive tried removing the semicolon ; and also tried leaving it there and there was no error of any kind. so im just wondering

RE: [flexcoders] Newbie Question - databinding an arrayCollection to a List Control

2009-05-25 Thread Tracy Spratt
: [flexcoders] Newbie Question - databinding an arrayCollection to a List Control Hello, I've been reading a lot of information on databinding and I'm still a little confused on how to execute it and when is it necessary. I have a simple list control of names that I create by adding to an array

[flexcoders] Newbie Question - databinding an arrayCollection to a List Control

2009-05-24 Thread hoytlee2000
Hello, I've been reading a lot of information on databinding and I'm still a little confused on how to execute it and when is it necessary. I have a simple list control of names that I create by adding to an array collection that I use as the List's dataprovider. when I add a name to the

[flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Alan Rother
Hey All, I'm playing around with a super simple demo Simeon Bateman posted on his blog (http://blog.simb.net/2009/05/01/flex-101-back-to-the-basics/)http://blog.simb.net/2009/05/01/flex-101-back-to-the-basics/ It's just a little tool designed to teach basic MVC / OO principles to newbs like me.

RE: [flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Tracy Spratt
Did you import UserEvents? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alan Rother Sent: Monday, May 04, 2009 6:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie

Re: [flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Alan Rother
Did you import UserEvents? Yep... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical xmlns:local=* xmlns:view=view.* mx:Script ![CDATA[ import view.UserForm; import events.UserEvents; import mx.collections.ArrayCollection; import

Re: [flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Sam Lai
Looks like the USER_SUBMIT variable or constant in your UserEvents class is not static, but you're accessing it in a static way. They should be static, so add they keyword static before the var keyword when you declare USER_SUBMIT and it should all work. On 5/5/09, Alan Rother

RE: [flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Tracy Spratt
Sent: Monday, May 04, 2009 7:11 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Newbie question: Custom Components and Custom Events Looks like the USER_SUBMIT variable or constant in your UserEvents class is not static, but you're accessing it in a static way. They should

Re: [flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Alan Rother
This is the entire UserEvents class as the example showed me how to build it. I'm guessing that the declaration for my event is supposed to be in here, but in the demo we actually created it in the component we were loading. How and where do I add it to the UserEvents class and why does it work

RE: [flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Tracy Spratt
: [flexcoders] Newbie question: Custom Components and Custom Events This is the entire UserEvents class as the example showed me how to build it. I'm guessing that the declaration for my event is supposed to be in here, but in the demo we actually created it in the component we were loading. How

[flexcoders] newbie question - call to actionscript class

2009-01-29 Thread annelie2008
Hello, I'm brand new to Flex so I'm sure this is a very stupid question, but hopefully someone will be able to help. My ultimate goal is to take an xaml file with a musical score and convert it to flex, but to start with I've hardcoded a score (or rather some score elements) in an

RE: [flexcoders] newbie question - call to actionscript class

2009-01-29 Thread Gregor Kiddie
Of annelie2008 Sent: 29 January 2009 10:43 To: flexcoders@yahoogroups.com Subject: [flexcoders] newbie question - call to actionscript class Hello, I'm brand new to Flex so I'm sure this is a very stupid question, but hopefully someone will be able to help. My ultimate goal is to take an xaml file

[flexcoders] Newbie question: Completion Events or proxy binding for RemoteObject calls

2009-01-06 Thread john.casey64
I'm working on an application where I build a tree (in actionscript buildtree()) where I add new leafs from data that is retieve from a remote call. Since the buildtree() function deals with the view - I have this coded in the view mxml. The tree is bound to a XMLListCollection which is updated

Re: [flexcoders] Newbie question: Completion Events or proxy binding for RemoteObject calls

2009-01-06 Thread Josh McDonald
Bindings work with any objects, so long as the fields (or the whole class) are marked with [Bindable] -Josh On Wed, Jan 7, 2009 at 11:44 AM, john.casey64 john.case...@yahoo.comwrote: I'm working on an application where I build a tree (in actionscript buildtree()) where I add new leafs from

[flexcoders] newbie question on synchronous and asynchronous events

2008-10-16 Thread Dan
From Flex cookbook beta on adobe.com, How to handle events in a TestCase? article: Testing behavior in a TestCase often involves waiting for asynchronous events. If the TestCase methods only concern synchronous events like property change events fired immediately when the property is set, no

Re: [flexcoders] newbie question on synchronous and asynchronous events

2008-10-16 Thread Paul Andrews
I always treat events as asynchronous - I don't see how else you can deal with them. I'll have to check out the cookbook article.. Paul - Original Message - From: Dan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, October 16, 2008 4:03 PM Subject: [flexcoders] newbie

Re: [flexcoders] newbie question - multipage apps - best approach?

2008-04-28 Thread Tom Chiverton
On Saturday 26 Apr 2008, hoytlee2000 wrote: Should each page of the UI be it's own MXML file and inluded in as a component? I would say 'at a minimum'. It'll look a lot more organised. You may start spotting common/reusable parts too. And what are the draw backs? You'll have to be a bit

[flexcoders] newbie question - multipage apps - best approach?

2008-04-26 Thread hoytlee2000
Hello, I need some advice. I am starting to develop more complex applications that is demanding more and more UI pages. In the past, it was simple enough to include everything in the same MXML file and I used the viewstack or tab containers to switch between the pages. But now I am

[flexcoders] Newbie question: Removing text from textarea/disabling a character

2008-04-24 Thread khan.ibraheem
Hello, I am using a textarea. I want to achieve 2 tasks: 1) Disable a particular character i.e. let suppose I dont want to allow a certain character being shown(when it is typed) in the text area. 2) How can I remove some portion of the text from the textarea. I have tried slice method but it

[flexcoders] newbie question

2008-04-23 Thread Steve Good
Let me start by saying that I am completely new to Flex and obviously the list. I'll apologize upfront for asking the dumb and obvious questions, but I'm still going to ask them :P So here's a description of what I'm doing and my question. I built an Air app with Flex 3 that posts some

RE: [flexcoders] newbie question

2008-04-23 Thread Tracy Spratt
RemoteObject to make the call? All the of the RPC protocols support the result event. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Good Sent: Wednesday, April 23, 2008 1:44 PM To: flexcoders Subject: [flexcoders] newbie

RE: [flexcoders] newbie question

2008-04-23 Thread Steve Good
@yahoogroups.com Subject: RE: [flexcoders] newbie question Welcome, Steve. First, please use a descriptive subject for all posts, including AIR, if you think that might be signficant. There is too much traffic on this list for anyone to read all posts, so we choose what to read based

Re: [flexcoders] newbie question

2008-04-23 Thread Pat Buchanan
Steve: Several things you need to do. First, make sure you have *defined a result handler* for the function call. Sounds like you have because you said you could see the result come back. Then, just access the result via the event, like below: private function

RE: [flexcoders] newbie question

2008-04-23 Thread Tracy Spratt
@yahoogroups.com Subject: RE: [flexcoders] newbie question Sorry about the subject, I'm not sure why I didn't use something more descriptive. Here's a snippet of the code I'm using. public function postData(){ var urlData:String = foo=bar

RE: [flexcoders] newbie question

2008-04-23 Thread Steve Good
Cool, I think I understand. I'll give it a try. Thanks. ~Steve http://lanctr.com/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, April 23, 2008 2:02 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] newbie question

[flexcoders] Newbie Question: loading text file.

2008-04-22 Thread khan.ibraheem
I want to do 2 different things: 1) I want to load a text file from a hard-coded location and load its contents in a string. 2) I want to load a text file from a location choosed by user and load its contents in a string. How can I achieve these 2 tasks. Thanks.

RE: [flexcoders] newbie question

2008-04-17 Thread Gordon Smith
. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Luke Vanderfluit Sent: Wednesday, April 16, 2008 7:14 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] newbie question Hi Gordon

[flexcoders] newbie question

2008-04-16 Thread Luke Vanderfluit
Hi. Im relatively new to flex and am writing an application at work using flex! Yes! I want to get a log in page working in flex. Doing this in html/jsp one would create a page, submit the page and (if credentials are good) move to the next page. In flex, the concept of reloading pages is

RE: [flexcoders] newbie question

2008-04-16 Thread Gordon Smith
16, 2008 5:49 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] newbie question Hi. Im relatively new to flex and am writing an application at work using flex! Yes! I want to get a log in page working in flex. Doing this in html/jsp one would create a page, submit the page

Re: [flexcoders] newbie question

2008-04-16 Thread Luke Vanderfluit
@yahoogroups.com *Subject:* [flexcoders] newbie question Hi. Im relatively new to flex and am writing an application at work using flex! Yes! I want to get a log in page working in flex. Doing this in html/jsp one would create a page, submit the page and (if credentials are good) move to the next

Re: [flexcoders] newbie question

2008-04-16 Thread shaun
Hey Luke, Luke Vanderfluit wrote: I have a component that displays a form (currently in selectedIndex 0), from this component I want the click to send me to ViewStack.selectedIndex 1. Is there something like parent.selectedIndex? Access the ViewStack (that contains the component as one

RE: [flexcoders] newbie question

2008-04-16 Thread Tracy Spratt
] newbie question Hey Luke, Luke Vanderfluit wrote: I have a component that displays a form (currently in selectedIndex 0), from this component I want the click to send me to ViewStack.selectedIndex 1. Is there something like parent.selectedIndex? Access the ViewStack (that contains

[flexcoders] Newbie Question - TextArea, RichTextboxEditor.

2008-03-29 Thread khan.ibraheem
I am a newbie and am learning this technology. Here is what I want. I want a textarea in which I can color,font of text. That is I can the color, font of any text in the TEXTAREA programmability. As far as I know I can not achieve this through textarea because it allows to change the color,font of

[flexcoders] Newbie question - Dialog box

2008-03-04 Thread ivovnenko
Hi! I have a flex app running on a webpage. How can i display a dialog box that will contain some formated text, maybe an image, button OK(optional) and a cross-button(in upper-right corner, to close it). Alert.show() doesn't allow formatted text AFAIK. Here is the example of what i need:

Re: [flexcoders] Newbie Question - Random position in an array

2008-03-03 Thread Maciek Sakrejda
://www.truviso.com -Original Message- From: Sean Scott [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Newbie Question - Random position in an array Date: Sat, 1 Mar 2008 22:55:49 -0600 Sherif, Thanks i ended up with var

Re: [flexcoders] Newbie Question - Random position in an array

2008-03-03 Thread Sean Scott
PROTECTED] sean.net%40gmail.com Reply-To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: Re: [flexcoders] Newbie Question - Random position in an array Date: Sat, 1 Mar 2008 22:55:49 -0600 Sherif, Thanks i ended up

[flexcoders] Newbie Question - Random position in an array

2008-03-01 Thread Sean Scott
Hi folks, wondering if someone has a function that returns a random position from an array. Thanks from a newbie,

Re: [flexcoders] Newbie Question - Random position in an array

2008-03-01 Thread Sherif Abdou
] Newbie Question - Random position in an array Hi folks, wondering if someone has a function that returns a random position from an array. Thanks from a newbie, Be a better friend, newshound

Re: [flexcoders] Newbie Question - Random position in an array

2008-03-01 Thread Sean Scott
something like myArray[randomNumber] whatever - Original Message From: Sean Scott [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, March 1, 2008 9:39:39 PM Subject: [flexcoders] Newbie Question - Random position in an array Hi folks, wondering if someone has a function

RE: [flexcoders] newbie question: Timer across components..

2007-03-28 Thread Tracy Spratt
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of iilsley Sent: Tuesday, March 27, 2007 11:50 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] newbie question: Timer across components.. Is it possible to have a Timer in one component and have

[flexcoders] newbie question: Timer across components..

2007-03-27 Thread iilsley
Is it possible to have a Timer in one component and have another component execute a function when that timer fires ? eg: Comp1 has a timer set for 3 seconds .. In Comp2 I want to 'capture' the TimerEvent.TIMER from Comp1 to execute a function defined in Comp2.. --- I currently have something

RE: [flexcoders] newbie question re: BarSeries programatically setting the showDataEffect

2007-03-16 Thread Gordon Smith
myBarSeries.setStyle(showDataEffect, myZoomOutEffect); - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of iilsley Sent: Thursday, March 15, 2007 10:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] newbie question re

[flexcoders] newbie question re: BarSeries programatically setting the showDataEffect

2007-03-15 Thread iilsley
I have the following mxml code.. mx:BarSeries showDataEffect=zoomIn hideDataEffect=zoomOut ./? Is there a way in actionScript I can change the show/hide DataEffects ? Looking @ the mx.charts.series http://livedocs.adobe.com/flex/2/langref/mx/charts/series/package-detai\ l.html Class

[flexcoders] Newbie question about AMFPHP

2007-02-10 Thread André Rodrigues Pena
Hi all, I'm justing starting with AMFPHP and I saw this sample code at the project's front-page function handleGetOrderList(re:ResultEvent) { var rs:RecordSet = RecordSet(re.result); for(var i = 0; i rs.length; i++) { var item = rs.getItemAt(i);

[flexcoders] Newbie Question on Menubar/MenuBarItem transition

2007-02-09 Thread jscrummack
Hi, How do I effect the transition of a menubar list as it displays? It currently looks like its doing some kind of wipe right transition. Could just be me but I can't get a handle on what I need to override to change / remove this transition? Thanks Jason

[flexcoders] Newbie question: Datagrid and a WS

2007-01-29 Thread Tony
hola peeps! im a newbie, so please bear with me... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:WebService id=myService wsdl=http://dev.navtrak.net/intranet/crm_cfc.cfc?wsdl; mx:operation

Re: [flexcoders] Newbie question: Datagrid and a WS

2007-01-29 Thread cisnky
Is the data from an xml document? If so, can I see your xml doc? On 1/29/07, Tony [EMAIL PROTECTED] wrote: hola peeps! im a newbie, so please bear with me... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml layout=vertical mx:WebService

RE: [flexcoders] Newbie question: Datagrid and a WS

2007-01-29 Thread Andrew Trice
PROTECTED] Office: 866-CYNERGY From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cisnky Sent: Monday, January 29, 2007 3:17 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Newbie question: Datagrid and a WS Is the data from

Re: [flexcoders] Newbie question: Datagrid and a WS

2007-01-29 Thread cisnky
] *On Behalf Of *cisnky *Sent:* Monday, January 29, 2007 3:17 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Newbie question: Datagrid and a WS Is the data from an xml document? If so, can I see your xml doc? On 1/29/07, *Tony* [EMAIL PROTECTED] wrote: hola peeps! im a newbie

RE: [flexcoders] Newbie question: Datagrid and a WS

2007-01-29 Thread Andrew Trice
Email: [EMAIL PROTECTED] Office: 866-CYNERGY From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cisnky Sent: Monday, January 29, 2007 3:47 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Newbie question: Datagrid and a WS

Re: [flexcoders] Newbie question: Datagrid and a WS

2007-01-29 Thread cisnky
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *cisnky *Sent:* Monday, January 29, 2007 3:47 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Newbie question: Datagrid and a WS Do you have time for another datagrid related question? http://tech.groups.yahoo.com/group/flexcoders

[flexcoders] Newbie Question: View states or view stack;

2006-12-20 Thread Tolis Christomanos
Hi all! Can you tell me how to structure this.. I have a login form, a register form and then the main application. Should i use states or the view stack to go from form to form and from form to main application. Thanks in advance.

Re: [flexcoders] Newbie Question: View states or view stack;

2006-12-20 Thread hank williams
On 12/20/06, Tolis Christomanos [EMAIL PROTECTED] wrote: Hi all! Can you tell me how to structure this.. I have a login form, a register form and then the main application. Should i use states or the view stack to go from form to form and from form to main application. Thanks in advance.

[flexcoders] newbie question: dataProvider - dataGrid ArrayCollection

2006-12-20 Thread dj
I'm trying to populate a simple dataGrid and add two arrays, one for the id that's not shown and one for the title, which is... the non-commented line works with just adding an array, but how do I do the line that's commented out, so I can ge the id field, thanks, sorry for the newbie question

Re: [flexcoders] Newbie question: Showing a vertical scroll bar on application

2006-11-30 Thread Lachlan Cotter
Hi Flexy, If you create a popup window using the PopupManager than it is not part of the normal view hierarchy and so it will not create scroll bars on the application object, even if it is placed partially out of the visible region. Pop-ups float above the main application window so

[flexcoders] Newbie question: Showing a vertical scroll bar on application

2006-11-26 Thread Flexy
Hi, I am adding titlewindows using the popupManager on the application canvas, I have many of them so some are beyond the screen height, However, no vertical scrollbar shows - how can I make sure the vertical scroll bar shows if there are controls beyond the screen height? Thanks,

Re: [flexcoders] Newbie Question: Paging a Datagrid.

2006-11-18 Thread Igor Costa
PCM. Just dind't figure out what exactly you need it. But I guess you are talking about CSS style. you can do it. Just take a look at the CSS Style section in the Datagrid Docs. Best. On 11/17/06, proudestcodemonkey [EMAIL PROTECTED] wrote: I'd like to have a datagrid in my Flex

[flexcoders] Newbie Question: Paging a Datagrid.

2006-11-17 Thread proudestcodemonkey
I'd like to have a datagrid in my Flex application that will show X records at a time and offer paging functionality. The datagrid control is very functional, so I assumed this wouldn't be terribly difficult. I've done some Googling, though, and haven't turned up much. Any ideas? Thanks in

[flexcoders] Newbie Question: Child / Parent Events

2006-10-24 Thread mindmillmedia
How can a child receive events of the parent? I know that events bubble - but what if you want events to sink? David -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

RE: [flexcoders] newbie question - HTTP servive

2006-08-18 Thread Cathy Reilly
In Flex 2, you need to use 'event.lastResult' - Cathy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robin BurrerSent: Thursday, August 17, 2006 9:59 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] newbie question - HTTP servive Hi there, I started

RE: [flexcoders] newbie question - HTTP servive

2006-08-18 Thread Tracy Spratt
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Cathy Reilly Sent: Friday, August 18, 2006 10:38 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] newbie question - HTTP servive In Flex 2, you need to use 'event.lastResult

[flexcoders] newbie question - HTTP servive

2006-08-17 Thread Robin Burrer
Hi there, I started playing around with the HTTP service. However I cant figure out how to access the actual result (in my case an xml string) If I set up a listener it just returns me an object in the onResult event. Why cant I access my xml string through event.result? How do I

[flexcoders] Newbie Question - attaching a Sprite

2006-08-11 Thread soso noso
Hi all - I've been doing due diligence to find an answer to this, as in I didn't come here first, but I'm not getting exactly how to apply visual coding to the mxml area. For a quick example - I have a simple mxml file: ?xml version="1.0" encoding="utf-8"? customState:StateDev

Re: [flexcoders] Newbie Question - attaching a Sprite

2006-08-11 Thread Michael Schmalle
Hi,You could..var wrapper:IUIComponent = new UIComponent();wrapper.addChild(contentBg);panelOne.addChild(wrapper);This makes it harder to ref and size.You should look into skin subclasses like ProgrammaticSkin. If you make a class that subclasses ProgrammaticSkin, then you can use the graphics

[flexcoders] Newbie question videodisplay problem

2006-08-03 Thread tonyx_788
i'm going crazy with FLEX Any one knows why i get NO BITRATE MATCH when selecting a second video from a list component i'm using e4x to make a filter search on a xml file, it works fine my problem is with the video display component my MXML looks something like this (won't compile) .

[flexcoders] newbie question: Populating Datagrid from external complex xml

2006-05-18 Thread josulliv101
Hi, I don't have any issues populating the datagrid when my external xml file is very basic. for example: users user usernameJoe/username useremail[EMAIL PROTECTED]/useremail /user user usernameMaggie/username useremail[EMAIL PROTECTED]/useremail /user /users But when I have many

RE: [flexcoders] newbie question: Populating Datagrid from external complex xml

2006-05-18 Thread Tracy Spratt
@yahoogroups.com Subject: [flexcoders] newbie question: Populating Datagrid from external complex xml Hi, I don't have any issues populating the datagrid when my external xml file is very basic. for example: users user usernameJoe/username useremail[EMAIL PROTECTED]/useremail /user user usernameMaggie

RE: [flexcoders] Newbie question

2006-04-23 Thread Matt Chotin
22, 2006 1:17 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie question Is it possible to reference a HTTPService from another file. For example in services.mxml I create a service: mx:HTTPService id=statsRequest url="" useProxy=false/ And in stats.mxml I

[flexcoders] Newbie question

2006-04-22 Thread Alex MacCaw
Is it possible to reference a HTTPService from another file. For example in services.mxml I create a service: mx:HTTPService id=statsRequest url="" useProxy=false/ And in stats.mxml I reference the service: mx:DataGrid id=dgReviews x=40 y=85 width=800 height=134 dataProvider={

[flexcoders] Newbie Question: Error being thrown on Grid Sort

2006-04-17 Thread Mike
Using Flex Beta2, I'm populating a grid via XML through an HTTPService component. Grid populates fine, but, if I sort the grid with a column click, and any of the cells are Null, the grid throws the following error: Error: Cannot determine comparator for SortField with name 'LastName' at

RE: [flexcoders] Newbie Question: Error being thrown on Grid Sort

2006-04-17 Thread Matt Chotin
To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie Question: Error being thrown on Grid Sort Using Flex Beta2, I'm populating a grid via XML through an HTTPService component. Grid populates fine, but, if I sort the grid with a column click, and any of the cells are Null, the grid throws

[flexcoders] newbie question

2006-03-31 Thread thepanda1
Hello! I am a total newbie to Flex and am evaluating it for use for a RIA. I've run in to an issue when running the 1.5 flexstore (we haven't been able to bring in 2 beta as of yet) on Mozilla that is remotely displayed (from Red Hat Linux) to my Windows XP box using Hummingbird.Only part of

[flexcoders] Newbie Question.

2005-12-21 Thread Antoine
Hi, Flash Developer since about 3 years now, i'm currently working on a classical Flex Store prototype, integrating it with ATG Dynamo 6.4. We are trying to use the Cairngorm Framework, and i've read the ActionScript Design Patterns for Rich Internet application development PDF iteration::two

Re: [flexcoders] Newbie Question.

2005-12-21 Thread JesterXL
methods, etc. - Original Message - From: Antoine [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 21, 2005 10:13 AM Subject: [flexcoders] Newbie Question. Hi, Flash Developer since about 3 years now, i'm currently working on a classical Flex Store prototype

Re: [flexcoders] Newbie Question.

2005-12-21 Thread Rich Tretola
your View's to data vs. calling set methods, etc. - Original Message - From: Antoine [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 21, 2005 10:13 AM Subject: [flexcoders] Newbie Question. Hi, Flash Developer since about 3 years now, i'm currently

[flexcoders] Newbie Question

2005-11-30 Thread im_sean_s
If this type of question has been answered before, I appologize, but the new Yahoo! Groups message search really sucks! Anyway, I'm fairly new to Flex and am working on a project using the Cairngorm framework. In the project I have a form that is bounded to a sharedObject in order to save the

RE: [flexcoders] Newbie Question

2005-11-30 Thread João Fernandes
Desenvolvimento Departamento de Informática -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of im_sean_s Sent: quarta-feira, 30 de Novembro de 2005 15:11 To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie Question If this type of question has been

[flexcoders] Newbie Question: Drag-And-Drop between two Flex-SWF files

2005-11-03 Thread Pablo Apanasionek
Hi, i'm extremely new to Flex and, although I've seen in a few days part of the potential it has to give, I still got a lot to learn. Question comes here: I've tested the ability to drag-and-drop between two different custom components and it works amazingly well without demanding a lot of

Re: [flexcoders] Newbie Question: Drag-And-Drop between two Flex-SWF files

2005-11-03 Thread Clint Modien
Can you tell the list a bit more about your trying to do... it sounds like your going about this the wrong way? On 11/3/05, Pablo Apanasionek [EMAIL PROTECTED] wrote: Hi,i'm extremely new to Flex and, although I've seen in a few days partof the potential it has to give, I still got a lot to

[flexcoders] Newbie Question about Value Objects on client side

2005-08-04 Thread cruegger2000
I've been reading the docs for about 2 days now and have a simple question I can't find the answer to. Please no flames, I have made an attempt to find the answer to this question by reading all the documentation I can find. I'm using Flex with Websphere 6.0. I have a POJO business delegate