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 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 (https://

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 P

[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 downl

[flexcoders] newbie q: transition from flash to flex (long-ish)

2010-01-27 Thread ulrich
Hi - I have a question how to approach a problem the flex way: I have a quiz, I present a question with 4 answers in a panel. In flash I would: - create a custom component (logic and visual): new Component(). - pass a VO to init display and logic of component - add component to display list.

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

2009-12-07 Thread flexnewbie999
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' that can be > dragged off of

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

2009-12-07 Thread Tracy Spratt
ble _ From: 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 w

[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 targe

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, Then you do need the semi-colons. Most people just have the semi-colon there out of habit from when they write AS in .as files or within the tags (they are needed in those ca

[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 ive tried removing the semicolon ; and also tried leaving it there and there was no error of any kind. so im just wondering if this will cause issues or is something going on tha

Re: [flexcoders] Newbie questions

2009-06-04 Thread Pedro Sena
Take a look at data binding http://livedocs.adobe.com/flex/3/html/help.html?content=databinding_1.html Regards, PS On Thu, Jun 4, 2009 at 6:33 PM, markfu...@rocketmail.com < markfu...@rocketmail.com> wrote: > > > I have been trying to wrap my head around flex/actionscript for several > weeks n

[flexcoders] Newbie questions

2009-06-04 Thread markfu...@rocketmail.com
I have been trying to wrap my head around flex/actionscript for several weeks now...I'm a little slow. I'm using Coldfusion as an application server with Flash Remoting. So far, I've been able to get info from the database to a datagrid and after pulling several hundred hairs out of my head, f

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

2009-05-25 Thread Tracy Spratt
oogroups.com Subject: [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

[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 arra

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

2009-05-04 Thread Tracy Spratt
:15 PM To: flexcoders@yahoogroups.com Subject: Re: [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 de

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 whe

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 shou

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 wrote: > Hey All,

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

2009-05-04 Thread Alan Rother
>>>Did you import UserEvents? Yep... http://www.adobe.com/2006/mxml"; layout="vertical" xmlns:local="*" xmlns:view="view.*"> -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

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

[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/) It's just a little tool designed to teach basic MVC / OO principles to newbs like me.

RE: [flexcoders] Newbie SOA question (maintaining login state)

2009-04-08 Thread Tracy Spratt
Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Michael Pengi Sent: Wednesday, April 08, 2009 8:09 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Newbie SOA question (maintai

RE: [flexcoders] Newbie SOA question (maintaining login state)

2009-04-08 Thread Michael Pengi
again. > > I am certainly open to a better approach. > > Tracy Spratt, > > Lariat Services, development services available > _ > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of variableop > Sent: Friday, April 03, 2009

RE: [flexcoders] Newbie SOA question

2009-04-03 Thread Tracy Spratt
: [flexcoders] Newbie SOA question I would like to provide a solution to maintaining login state over multiple calls to my .NET web service layer. So basically, the user logs in, then stores a login "token" internally on the Flex side so that each web service call can be authenticated as

[flexcoders] Newbie SOA question

2009-04-03 Thread variableop
I would like to provide a solution to maintaining login state over multiple calls to my .NET web service layer. So basically, the user logs in, then stores a login "token" internally on the Flex side so that each web service call can be authenticated as being made by someone who has already "lo

[flexcoders] Newbie in FLEX, need help on a question

2009-04-02 Thread krishneelu
Hi, I am not an intermmediate or advanced Flex coder, but just trying to use the Flex Builder latest trial version to create some mockups for an application I intend to hire resources to develop on. My question for flex is: After I run the application in flex builder, and it displays it on IE

Re: [flexcoders] Newbie : Video Capture and Streaming Questions

2009-03-05 Thread p...@vin Uttarwar
Hi, Yes you need Streaming server like FMS or Red 5 to use NetStream.connect() method. Netconnection Creates a bidirectional connection between a Flash Player or AIR application and a Flash Media Server application. Regards, Pravin 2009/3/5 toejamnyc > Good Day. > > I hope you'll forgive m

[flexcoders] Newbie : Video Capture and Streaming Questions

2009-03-05 Thread toejamnyc
Good Day. I hope you'll forgive my very basic questions. I've googled, read FAQ's, and built a few tutorials, and have a very basic app that displays video. But I still have a very basic question. Must I have Flash Media Server in order to capture and save video from a webcam to a server? Is t

re: [flexcoders] Newbie Help

2009-02-12 Thread Wally Kolcz
document. From: "ksunair" Sent: Thursday, February 12, 2009 5:36 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie Help Hi All, I am very new to Flex as a matter of fact I just wrote hello world :) Anyway, I am evaluating Fl

[flexcoders] Newbie Help

2009-02-12 Thread ksunair
Hi All, I am very new to Flex as a matter of fact I just wrote hello world :) Anyway, I am evaluating Flex against SilverLight for our new development. Our current web app is legacy ASP (not ASP.Net) and I have completed a prototype for SilverLight and as a C# developer I was able to get it d

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

2009-01-29 Thread Gregor Kiddie
2008 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 fi

[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 actionscript

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 wrote: > I'm working on an application where I build a tree (in actionscript > buildtree()) where I add new leafs from data that is retieve fr

[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 by

[flexcoders] Newbie HELP

2008-12-08 Thread Tony
Ok. I have been working through a Friends of Ed book called Foundation Flex for Designers. In chapter 8, the idea is to build a external xml file controlled photo gallery. Screen will be split horizontally with one side being thumbnails of the larger pictures stored externally to the application

[flexcoders] Newbie binding question

2008-11-24 Thread Michael Prescott
I'm having some troubles with data binding and a named event generated by a custom non-visual component. What I'm trying to do is have a property (say, 'data') which, when it changes, triggers the usual data-binding updates, but also fires an event that can be listened to in the MXML. For example

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: Sent: Thursday, October 16, 2008 4:03 PM Subject: [flexcoders] newb

[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, n

[flexcoders] Newbie help, dealing with a design in illustrator

2008-08-21 Thread interz12
Hi, I'm relatively new to flex so bear with me. I am tasked with taking an application design done in Illustrator CS3 and getting it up and running in Flex 3. >From what I can tell the illustrator design is just a bunch of layers, with images, text etc. It is not this vector/skin based thing that

[flexcoders] newbie q : Application Server Clustering

2008-08-01 Thread artur_desig2dev
greetings, Can a Flex 3 app be specially engineered to work with a Application Server cluster? we are using WebOrb 3.0 for php. any links, advice would be greatly appreciated. also any recs on VPS hosts too.. anyone ever host with MediaTemple DS? or Amazon's EC2? thanks! artur

[flexcoders] Newbie Help: Resolve a multiname reference unambiguously...

2008-07-15 Thread cox.blair
Hi, Totally a newbie here, so please excuse my ignorance. I've spent some time working through this problem and this is where I am at. I want to be able to make multiple calls to my database tables. I did use the create application from database to generate the php code to create the xml I need.

[flexcoders] newbie : WebORB vs Adobe LiveCycle

2008-07-08 Thread artur_desig2dev
just wondering what the advantages are if any besides cost. Can webORB scale well? to handle 50k users? thanks

[flexcoders] Newbie Nested Remote Object Question

2008-07-08 Thread kroghadam
Hi everybody, I am really enjoying my first look into flex! Unfortunately I have ran into a problem with remote objects to java classes that have compositions of objects in them. In other words my class has an instance variable that is another object whose data i also want to access, preferably th

[flexcoders] Newbie help with Flex Builder CS3

2008-06-15 Thread brucewhealton
Hello all, I have to say that this relates to some very basic things that I guess I don't yet have a good handle on yet. Ok, the first issue relates to a problem I am having with the Flash Player. I did address the issue previously on this list of not having the correct Flash Player, t

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

[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 finding

[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 ha

[flexcoders] newbie quistion

2008-04-24 Thread peterflexcoder
Hi All I'm new here, I'm Peter from the Netherlands! I need you help. First i did'nt done anything yet in flex. I know a bit actionscript 3.0 i want a little air application with that application i can select in a combobox a link and that link open in the mx:html object. I have made a xml f

[flexcoders] newbie design question

2008-04-24 Thread Eric Cooper
I have been working in Flex for about 3 months now. I am writing a geometry tool that allows user to create points, line segments, circle and polygons, as well as constraints between these objects (e.g., distance, angle, perpendicular, etc.). Initially, I created a (subclass of) ApplicationCon

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 que

RE: [flexcoders] newbie question

2008-04-23 Thread Tracy Spratt
ednesday, April 23, 2008 2:10 PM To: flexcoders@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(){

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 getMyAnswer_Handler(event:ResultE

RE: [flexcoders] newbie question

2008-04-23 Thread Steve Good
EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, April 23, 2008 1:06 PM To: flexcoders@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

RE: [flexcoders] newbie question

2008-04-23 Thread Tracy Spratt
hatever you need with it. Are you using 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] 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 for

[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-16 Thread Gordon Smith
BTW, Timgerr asked essentially the same question early today in the thread "Flex Compenents, how to make them talk". If your app is organized like this then from MyForm's

RE: [flexcoders] newbie question

2008-04-16 Thread Tracy Spratt
Another convenient way to do a login is to use a modal popUp TitleWindow. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shaun Sent: Wednesday, April 16, 2008 10:47 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

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

Re: [flexcoders] newbie question

2008-04-16 Thread Luke Vanderfluit
ke. > > Gordon Smith > > Adobe Flex SDK Team > > > > > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] > *On Behalf Of *Luke Vanderfluit > *Sent:* Wednesday, April 16

RE: [flexcoders] newbie question

2008-04-16 Thread Gordon Smith
ednesday, April 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

[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 non-

[flexcoders] [newbie] Numbered list support in RichTextEditor?

2008-04-13 Thread Scott Finnie
Hello, Am looking for numbered list support but standard component only seems to support unnumbered (bulleted) lists. Wondering about options: . Any 3rd party components? . Any advice on extending existing? Thx, Scott.

[flexcoders] Newbie, RemoteObject with ActionScript

2008-03-29 Thread bennybobw
Hi All, I'm trying to get the following remoteObject working with Actionscript. When I use the mxml it works great. But when I compile with the actionscript, removing mxml I get an error "Method does not exist." This doesn't make a lot of sense to me... I've also tried views.addEventListener(Result

[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 Sean Scott
akrejda > Truviso, Inc. > http://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 >

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

2008-03-03 Thread Maciek Sakrejda
krejda Truviso, Inc. http://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 Sher

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

2008-03-01 Thread Sean Scott
ength; > > then do 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

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

2008-03-01 Thread Sherif Abdou
ubject: [flexcoders] 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, newshoun

[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,

[flexcoders] newbie: pushing data changes back to server

2008-02-04 Thread andrew_sinning
I've been working with Flash in AS2 for quite a while, but so far I've only just worked through the tutorials in Flex. The examples show how to display xml data. Now I need to modify data, add records (nodes), and post changes back to the server. In one of the examples, the data in an rss feed i

Re: [flexcoders] newbie questions about

2008-01-26 Thread [p e r c e p t i c o n]
Friday, January 25, 2008 4:08:53 PM > Subject: [flexcoders] newbie questions about > > Hi All, > I have a question concerning the Move tag/object.. .. > i'm wondering how to move multiple objects... in my attributes i use > target to move one object, but can't seem to move

Re: [flexcoders] newbie questions about

2008-01-25 Thread Sherif Abdou
remb targets and it takes an array of them - Original Message From: [p e r c e p t i c o n] <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, January 25, 2008 4:08:53 PM Subject: [flexcoders] newbie questions about Hi All, I have a question concerning the Mo

[flexcoders] newbie questions about

2008-01-25 Thread [p e r c e p t i c o n]
Hi All, I have a question concerning the Move tag/object i'm wondering how to move multiple objects... in my attributes i use target to move one object, but can't seem to move multiple objects by using the targets attribute...can anyone point me in the right direction many thanks p

[flexcoders] Newbie : Flex Hosting Question

2008-01-04 Thread hardikpandya2000
Hello FlexCoders, I am newbie to Flex and have a very basic question I need to make Flex Application with Mysql + JSP, what do I need to host this kind of application live. What are the options / alternatives ? I would really appreciate any help and suggestions. Thank you all in advance, Har

RE: [flexcoders] Newbie XML to ArrayCollection Confusion

2007-12-31 Thread Tracy Spratt
ay, December 30, 2007 12:49 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie XML to ArrayCollection Confusion I'm hoping someone can help explain how to retrieve an XML doc via webservice and then create an ArrayCollection from it. Using the code and xml below, I am able to retr

RE: [flexcoders] Newbie Flex Application

2007-12-31 Thread Tracy Spratt
Code looks ok on quick skim. What is not working? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of obi.wasabi Sent: Saturday, December 29, 2007 1:08 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie Flex Application

[flexcoders] Newbie XML to ArrayCollection Confusion

2007-12-30 Thread t_singe
I'm hoping someone can help explain how to retrieve an XML doc via webservice and then create an ArrayCollection from it. Using the code and xml below, I am able to retrieve the xml alright and access the nodes, but when I attempt to convert the xml object to an array I end up with a single elemen

[flexcoders] Newbie Flex Application

2007-12-30 Thread obi.wasabi
Hi, This is my first, perhaps ambitious FLEX application. The object is building a DVD catalog. The form uses: Text Inputs Combo Box Text Area Radio Buttons I could use assistance with Getting the Field Data into XML, then Putting the XML file for use as the DataProvider for a Datagrid(View

[flexcoders] Newbie: Update color in states

2007-12-07 Thread mlharrisn
I have a couple of states defined in my MXML and I want to change the color values - preferably data bind them to a variable. But when I do, I get a compiler error #1119:Access of possibly undefined property. Does anyone know how I can get the value from my ActionScript to these states? I'm assumin

RE: [flexcoders] Newbie compile issue rattling my brain

2007-11-27 Thread Seth Caldwell
application. Hope this helps, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mcaplan_labnet Sent: Tuesday, November 27, 2007 9:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie compile issue rattling my brain Hi there, I'm learning the

Re: [flexcoders] Newbie compile issue rattling my brain

2007-11-27 Thread Aaron Miller
I think you need define your list in an (inside the source block) since this is the type of the ArrayCollection.source property. I could be wrong though, I usually don't define data in MXML. Regards, ...aaron On 11/27/07, mcaplan_labnet <[EMAIL PROTECTED]> wrote: > > Hi there, > > I'm learning

[flexcoders] Newbie compile issue rattling my brain

2007-11-27 Thread mcaplan_labnet
Hi there, I'm learning the ropes of Flex. I have a pretty much textbook example of how to set up a datagrid that is resulting in compile time syntax errors. I can't for the life of me see the error. Any ideas? Thanks! mike Severity and DescriptionPathResourceLocation

[flexcoders] Newbie needs advice with writing data

2007-10-17 Thread Andy Gaffney
Hi all, hope you can help. I have just started learning Flex and I want to prove an essential Component of my Application. I need to be able to have a View where the user can add their images & captions to the Model. What is the simplest way of doing this? I think I need a web service to do

RE: [flexcoders] Newbie Focus on Result Question

2007-10-02 Thread Alex Harui
f its_llpj Sent: Tuesday, October 02, 2007 8:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie Focus on Result Question Hello, I have a datagrid and underneath the datagrid I'm using a Form to display the entire record. When I click on a cell in the datagrid it shows the data

[flexcoders] Newbie Focus on Result Question

2007-10-02 Thread its_llpj
Hello, I have a datagrid and underneath the datagrid I'm using a Form to display the entire record. When I click on a cell in the datagrid it shows the data in the form, but you have to manually scroll down to view the information. I would like to scroll down the page and focus to the Form to show

RE: [flexcoders] newbie

2007-09-06 Thread Mathe Maema
Tracy - From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mathe Maema Sent: Thursday, September 06, 2007 4:51 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] newbie I am sorry but I am slow. By applying the filter

RE: [flexcoders] newbie

2007-09-06 Thread Tracy Spratt
Maema Sent: Thursday, September 06, 2007 4:51 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] newbie I am sorry but I am slow. By applying the filter in the main instance variable, are you suggesting that I put it somewhere within this function? private function

RE: [flexcoders] newbie

2007-09-06 Thread Mathe Maema
coders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mathe Maema Sent: Wednesday, September 05, 2007 6:57 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] newbie This is the function I thought of introducing. I didn't introduce it because I couldn't rea

RE: [flexcoders] newbie

2007-09-05 Thread Tracy Spratt
PROTECTED] On Behalf Of Mathe Maema Sent: Wednesday, September 05, 2007 6:57 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] newbie This is the function I thought of introducing. I didn't introduce it because I couldn't really work out how it would be called if I wante

RE: [flexcoders] newbie

2007-09-05 Thread Mathe Maema
M To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] newbie Main //sending data methods using httpservice to say var accommodations SearchView [Bindable] public var lodgings:ArrayCollections; filterComp //assume it has 2 checkboxes: chk1 and

RE: [flexcoders] newbie

2007-09-05 Thread Tracy Spratt
:54 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] newbie Main //sending data methods using httpservice to say var accommodations SearchView [Bindable] public var lodgings:ArrayCollections; filterComp //assume it has 2 checkboxes: chk1 and chk2 which call

RE: [flexcoders] newbie

2007-09-05 Thread Mathe Maema
updating the dataProvider? Tracy - From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mathe Maema Sent: Wednesday, September 05, 2007 2:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] newbie I have t

RE: [flexcoders] newbie

2007-09-05 Thread Gordon Smith
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mathe Maema Sent: Wednesday, September 05, 2007 11:52 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] newbie I have two pages. The first is the main. In the main I load my xml data as follows using Httpse

RE: [flexcoders] newbie

2007-09-05 Thread Tracy Spratt
: Wednesday, September 05, 2007 2:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] newbie I have two pages. The first is the main. In the main I load my xml data as follows using Httpservice. I pass this data to the second page as follows: // accommodations has been declared publicly in

Re: [flexcoders] newbie

2007-09-05 Thread Mathe Maema
I have two pages. The first is the main. In the main I load my xml data as follows using Httpservice. I pass this data to the second page as follows: // accommodations has been declared publicly in SearchView.mxml and accoms is the variable that was used to accept data sent by httpservice.

Re: [flexcoders] newbie

2007-09-05 Thread Tom Chiverton
On Wednesday 05 Sep 2007, [EMAIL PROTECTED] wrote: > I am sorry no code is included. I really didn't know which part to > include. Be specific, and try one part at a time. What have your tried ? Why didn't it work ? -- Tom Chiverton Helping to widespreadedly accelerate eigth-generation infrastru

[flexcoders] newbie

2007-09-05 Thread g07m5064
I am adapting flexstore such that the products are displayed in a grid. Essentially the user clicks on either a price slider or checkboxes. The click event calls a dispatchFilter function. This function creates an instance of a class called FilterEvents..the FilterEvents triggers the filtering via

Re: [flexcoders] newbie - adapting flexstore

2007-09-04 Thread Mathe Maema
orks for my practice but i have no idea if i would be allowed to release it. does anyone know who i can contact to get permission? - Original Message From: Tracy Spratt <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, September 4, 2007 10:16:18 AM Subject: RE: [f

Re: [flexcoders] newbie - adapting flexstore

2007-09-04 Thread Sherif Abdou
gt; To: flexcoders@yahoogroups.com Sent: Tuesday, September 4, 2007 10:16:18 AM Subject: RE: [flexcoders] newbie - adapting flexstore Typically, a data-driven control, like DataGrid is “bound” to a dataProvider. When the dataProvider changes, the control automat

  1   2   3   >