[flexcoders] Re: addchild error

2007-03-28 Thread wifi19
Hie, and thanks i'd like make a windows with every page that i want to print before printing to select it addpage is for print job isn't it ? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You can't add a child twice. Did you mean to call addPage?

RE: [flexcoders] Re: addchild error

2007-03-28 Thread Alex Harui
Ok, but why would you want to add the same view twice? Do you want to add two different instances? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wifi19 Sent: Wednesday, March 28, 2007 12:07 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: addchild error

2007-03-28 Thread wifi19
it's just a exemple i'd like insert different pages (component FormPrintView()) with different page number and parameter with dataprovider. ps: sorry for my english my FormPrintView mx:VBox xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* backgroundColor=#FF paddingTop=50

Re: [flexcoders] wanted to share...

2007-03-28 Thread John Barrett
Hi Clint, Just want to let you know that I re-installed ColdFusion, and this new version, I put your code remtingExample in the localhost, and it worked great, with no issues. I guess this does work on the mac. I have no idea what was wrong with he other developer's version of ColdFusion, but

[flexcoders] Re: Scaling Custom Components

2007-03-28 Thread g_odds
If you just want to remove all the children, do something like this: while (this.numChildren() 0) this.removeChildAt(0); --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Nope, it is essentially an array. If I have var a:Array = [ Nate, Alex]; a[2] = Bjorn;

[flexcoders] Re: ActiveMQ with JBoss and Flex Data Service

2007-03-28 Thread elmiguelestaaqui
Hi Brian, thanks for your reply. I'm trying your tips, because I had forgotten to put the jar in the WEB-INF/lib. But it isn't running. When jboss deploy my program.war, no exceptions are thrown. But if I run in my browser http://localhost:8080/program/myprogram.mxml, this exception is thrown:

[flexcoders] Re: ActiveMQ with JBoss and Flex Data Service

2007-03-28 Thread elmiguelestaaqui
Hello (again ;-) ) I've tried with the dynamicQueues/queue1 and it's running!!! thanks thanks thanks!!! But I would like to know how I can use static queues, any idea? Thanks! --- In flexcoders@yahoogroups.com, Brian Dunphy [EMAIL PROTECTED] wrote: Make sure you have the ActiveMQ jar file

Re: [flexcoders] Personalized Popup

2007-03-28 Thread Roman Protsiuk
Far from good, very straightforward, but hopefully working. :) ImagePopUp: ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; mx:Image id=image / /mx:Canvas Event handler for your TileList: mx:TileList ... itemClick=onItemClick(event) ... mx:Script ![CDATA[

Re: [flexcoders] onChange()

2007-03-28 Thread Roman Protsiuk
What your method does with those basic calculation? Returns them, sets them to some Label as text, what? It's very hard to get what is going on and thus what might be wrong. R. On 27 Mar 2007 18:59:56 -0700, Jeremy Watson [EMAIL PROTECTED] wrote: I'm calling on onCreationCompletel(event)

Re: [flexcoders] Re: New Adobe Products and Flex

2007-03-28 Thread Michael Schmalle
Blaze and 8 Ball. Somehow a product release date of 4/20 That made me laugh. Really, sometimes when you put things together, it's like Freudian slip. Yeah, All those past Macormedia people blazing those trees, opps I mean trails! got for it! Peace, Mike On 3/28/07, Bjorn Schultheiss [EMAIL

[flexcoders] Sharing An ArrayCollection

2007-03-28 Thread Ajay K
i want to share ArrayCollection object Across various mxml s can anyone guide regard this Regards Ajay K - The fish are biting. Get more visitors on your site using Yahoo! Search Marketing.

Re: [flexcoders] wanted to share...

2007-03-28 Thread Clint Tredway
np, glad everything is working for you. On 28 Mar 2007 01:26:30 -0700, John Barrett [EMAIL PROTECTED] wrote: Hi Clint, Just want to let you know that I re-installed ColdFusion, and this new version, I put your code remtingExample in the localhost, and it worked great, with no issues. I guess

Re: [flexcoders] List Control with checkbox items

2007-03-28 Thread Rick Root
On 3/28/07, Doug McCune [EMAIL PROTECTED] wrote: Not sure if this is what you were asking, but here's what I came up with: http://dougmccune.com/blog/2007/03/27/list-control-for-the-one-armed-man/ Doug, that's close, but you're emulating SHIFT-CLICK functionality... I'm looking to emulate

Re: [flexcoders] Sharing An ArrayCollection

2007-03-28 Thread Roman Protsiuk
You can make them static, though it's not very good practice. There should be better solution considering context. R. On 28 Mar 2007 05:01:20 -0700, Ajay K [EMAIL PROTECTED] wrote: i want to share ArrayCollection object Across various mxml s can anyone guide regard this Regards Ajay K

Re: [flexcoders] List Control with checkbox items

2007-03-28 Thread Rick Root
On 3/28/07, Rick Root [EMAIL PROTECTED] wrote: On 3/28/07, Doug McCune [EMAIL PROTECTED] wrote: Not sure if this is what you were asking, but here's what I came up with: http://dougmccune.com/blog/2007/03/27/list-control-for-the-one-armed-man/

Re: [flexcoders] AS3-only HEAD request

2007-03-28 Thread Alex MacCaw
I've made a socket version of the urlloader that allows any method (and any headers). If you email me, I'll send you a copy. I hope to release it on my blog soon. On 3/28/07, Matt Chotin [EMAIL PROTECTED] wrote: Unfortunately HEAD is only supported when using HTTPService with the Proxy, the

RE: [flexcoders] List Control with checkbox items

2007-03-28 Thread Alex Harui
Here's an example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:local=* mx:Script ![CDATA[ private var stateList:Array = [ { label: Alaska, selected: false }, { label: Arkansas, selected: false }, { label: California, selected:

Re: [flexcoders] Flex coldfusion simple question

2007-03-28 Thread John Barrett
sorry guys, this is from 2 days ago:( It just came in now? - Original Message From: John Barrett [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, March 27, 2007 2:55:46 AM Subject: Re: [flexcoders] Flex coldfusion simple question

Re: [flexcoders] Are Events OK in the MVC (S) pattern

2007-03-28 Thread shaun etherton
Hi, Troy Gilbert wrote: Brett, Events are actually an a pretty fundamental component of an MVC implementation. Events are most often used by the model to notify the view and/or controller of changes (Observer pattern). Usually the model does not talk to the controller (see the diagram at

Re: [flexcoders] Global access in AS3

2007-03-28 Thread shaun etherton
Troy Gilbert wrote: [snip] That works for me. There's also a technique where you use an internal class (visible only within the AS source file) as a parameter to the constructor, thus causing the compiler to complain if anyone calls the constructor from outside that source file, but I find

Re: [flexcoders] Re: ActiveMQ with JBoss and Flex Data Service

2007-03-28 Thread Brian Dunphy
Not sure what how you would go about using static queues. We are using tomcat -- we used JBoss for a bit with it's messaging capabilities, but recently switched back to tomcat/ActiveMQ. Best of luck, Brian On 28 Mar 2007 02:38:09 -0700, elmiguelestaaqui [EMAIL PROTECTED] wrote: Hello

[flexcoders] Re: UIComponent: focus problem?

2007-03-28 Thread carlo.cavallieri
first of all: now i get it working, implementing the IFocusManagerComponent and adding a crationComplete=myComp.setFocus() in the mx:Application tag i can log the keystrokes; so, thanks Alex. But i'm still curious about systemManager, i always get null (I run the test in the stand-alone

Re: [flexcoders] Data binding will not be able to detect changes... ?

2007-03-28 Thread Valy Sivec
Per my knowledge for Array and XMLList data binding won't detect data changes. I suggest you use XMLListCollection and the warning will go away. Regards, Valy - Original Message From: Greg Morphis [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, March 27, 2007 10:25:24

RE: [flexcoders] List Control with checkbox items

2007-03-28 Thread Alex Harui
I was looking at the source. You'll need an inline renderer with selectedField set to some property in your data that will record whether it is selected or not. If you want to store that elsewhere, then you'll need more subclassing and set up a centralized repository of what is selected.

[flexcoders] Accessing Item Renderer in a List.

2007-03-28 Thread ivansebastiansurya
Hi everyone, I need bit of a help in displaying items from a List. I have an item renderer which is associated to the List. The items in the list contains lots of data, one of which is an indication of how many percent a task has been completed. My custom item renderer has a ProgressBar in

[flexcoders] Re: Flex access to cookies

2007-03-28 Thread Tony Obermeit
Thanks a lot! :-) - any code snippets to guide me as to how to do that, or links to related examples? Tony Posted by: Clint Tredway [EMAIL PROTECTED] clinttredway Tue Mar 27, 2007 5:33 pm (PST) pass in the cookie value thru the flashVars. On 3/27/07, Tony Obermeit [EMAIL PROTECTED] wrote:

[flexcoders] HTTPService/ArrayCollection/DataGrid/Tree/

2007-03-28 Thread Alain Thibodeau
Hi all, I was wondering if someone could please point me in the correct direction. I have an HTTPService that I am using with a datagrid, the Service's data is loaded into an ArrayCollection and I filter the ArrayCollection with a filterFunction. All works great. I now want to take the same

[flexcoders] VideoDisplay bug?! How to extend to change a private variable?

2007-03-28 Thread beecee1977
Hi, I would normally spend more time trying to work this out first, but I'm under a bit of pressure... There appears to be a bug in the VideoDisplay code. vid.close() = within the videoDisplay a private variable called closeCalled is set to true. vid.play() = the closeCalled variable is set

[flexcoders] Re: Flex access to cookies

2007-03-28 Thread Maury Sword
You can modify the flashvars in index.template.html file under the html-template directory of your project. In the follwoing snippet I have added username and pwd parameters. // if we've detected an acceptable version // embed the Flash Content SWF when all tests are passed AC_FL_RunContent(

Re: [flexcoders] Re: Flex access to cookies

2007-03-28 Thread Clint Tredway
you can also reference them like this: this.parameters.paramName. I typically bind these to bindable vars in my initApp function. On 28 Mar 2007 06:32:51 -0700, Maury Sword [EMAIL PROTECTED] wrote: You can modify the flashvars in index.template.html file under the html-template directory of

Re: [flexcoders] Accessing Item Renderer in a List.

2007-03-28 Thread Roman Protsiuk
All the interaction with item renderer is expected to be done via data set to it. And the feedback may be for example bubbling event (though, I use this technique very seldom). When list-based control is created it creates as many item renderer instances as needed and only substitutes data

[flexcoders] Problem with measureHTMLText when using different font-sizes

2007-03-28 Thread ewoermann
Hi I need to resize a TextArea to show all the text it got populated with. The TextArea has to display htmlText, so I use measureHTMLText to get the width and height of a string. According to that I calculate the dimensions of the TextArea. Now this all works, unless I change the font, its

[flexcoders] Question

2007-03-28 Thread midwest_consulting_group
Dear Flex Mamabers, I am a recruiter currently conducting a search for a Flex developer position in the DFW area. Without breaking any of your group rules i want to know, is there is a place where i can share this opportunity with you all? Let me know how i can go about this so that if there

Re: [flexcoders] Question

2007-03-28 Thread Clint Tredway
there is a flex jobs list that you can post it to. http://tech.groups.yahoo.com/group/flexjobs/ On 3/28/07, midwest_consulting_group [EMAIL PROTECTED] wrote: Dear Flex Mamabers, I am a recruiter currently conducting a search for a Flex developer position in the DFW area. Without breaking

Re: [flexcoders] Problem with measureHTMLText when using different font-sizes

2007-03-28 Thread Daniel Freiman
yeah, measureHTMLText will give you trouble for this type of problem. If you're only resizing the height and keeping the same width, you can use textArea.textHeight and resize the textarea to that (plus border, padding, etc). The only thing to look out for is that the textHeight property is up

[flexcoders] Connecting two tree views

2007-03-28 Thread Harald Kucharek
Hi, I'm new to Flex and want the following: I have two Tree views side by side, based on the same XML-datasource. When I click one node in the left tree, I want the node holding the same data to be expanded on the right tree. Naive :-) Code: ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] storing data in models within Flex 2

2007-03-28 Thread jmwhittaker007
How can I store data within my Flex application as XML that can be used again in a DataGrid? I have created an mx:XML data model in MXML. It seems that this only stores one model at a time from my form. How can I keep adding data from my form getting it to add to the model?

[flexcoders] Re: VideoDisplay bug?! How to extend to change a private variable?

2007-03-28 Thread beecee1977
P.S. If it's any easier to access an mx_internal variable than a private variable (when sub-classing/extending a control) that'll work too! Cheers Bill --- In flexcoders@yahoogroups.com, beecee1977 [EMAIL PROTECTED] wrote: Hi, I would normally spend more time trying to work this out

[flexcoders] List Box in a DataGrid

2007-03-28 Thread jitender_instacoll
Hello, How do i add a listbox in a datagrid control so that it is populated from the dataprovider of the datagrid control? mx:datagrid dataprovider={httpMyService.lastResutls.CARS.CAR} mx:columns mx:List dataField=COLOR headerText=Color / mx:DataGridColumn dataField=Type headerText=Type /

[flexcoders] Connect and Retrieve from MS SQL Server 2005

2007-03-28 Thread hugocorept
Hello all, In your opnion, witch is the simple/best way to connect a MSSQLServer 2005. I prefer java-less.. Thank you , Very Much!

[flexcoders] HTML-like Table/Textbox behavior possible?

2007-03-28 Thread missgiggygirl
As a pilot project to see if we can make the move to flex, I am trying to convert some common widgets/screens that we use in the HTML/Ajax world into Flex. One widget that we have uses a standard HTML table based on percentages (100% width, various percentage TDs) that has many date picker

RE: [flexcoders] HTML-like Table/Textbox behavior possible?

2007-03-28 Thread Dimitrios Gianninas
Yes you can, but I recommend you do not use the Grid container, just VBoxes and HBoxes will allow you to place items as you need them. mx:VBox width=100% mx:DateField width=100%/ mx:DateField width=100%/ /mx:VBox Dimitrios Gianninas Developer Optimal Payments Inc.

[flexcoders] Re: Connect and Retrieve from MS SQL Server 2005

2007-03-28 Thread Shaun
If you want to use .NET, check out the open-source Fluorine project: http://www.thesilentgroup.com/fluorine/fluorine/index.html --- In flexcoders@yahoogroups.com, hugocorept [EMAIL PROTECTED] wrote: Hello all, In your opnion, witch is the simple/best way to connect a MSSQLServer 2005.

Re: [flexcoders] Connect and Retrieve from MS SQL Server 2005

2007-03-28 Thread Clint Tredway
you can use just about any server side language (ColdFusion, PHP, ASP, .NET, etc) to connect to SQL Server On 3/28/07, hugocorept [EMAIL PROTECTED] wrote: Hello all, In your opnion, witch is the simple/best way to connect a MSSQLServer 2005. I prefer java-less.. Thank you , Very Much!

Re: [flexcoders] Re: Flex 2, AMFPHP and charset

2007-03-28 Thread Ryan Barrett
It sounds to me like a problem with differing character sets between PHP and the database or the client you're using to connect to the database. I'd guess that both should be Latin-1 / Windows 1252.. You might get more info by looking at the communication between flex and php, this is easy

[flexcoders] Flex Data Services installation

2007-03-28 Thread chqdzn
I am evaluating this software for purchase for our UI Development teams, 50+ people. I'm posting this question here because the FLEX forum is continually undergoing maintenance which is making it temporarily unavailable until 1:00pm PST. I'm on the east coast, and although I tried over

Re: [flexcoders] Re: VideoDisplay bug?! How to extend to change a private variable?

2007-03-28 Thread Daniel Freiman
mx_internal is easy to access because it's just a namespace. Simply import mx.core.mx_internal. After the imports type the line: use namespace mx_internal; There should be a complete discussion if you just search through the mailing list archives for 'mx_internal' specifically or you can

RE: [flexcoders] Flex Data Services installation

2007-03-28 Thread Dimitrios Gianninas
should be as simple as: 1) under tomcat/webapps create a folder called test 2) extract the samples.war contents to the test folder you just created 3) start tomcat 4) goto http://localhost:8080/test and u should see the sample page and start using the demo apps Dimitrios Gianninas Developer

Re: RE: [flexcoders] HTML-like Table/Textbox behavior possible?

2007-03-28 Thread John Mark Hawley
...and if you have columns of varying percentage-based widths, you should be able to proportionally tweak those 100%'s in order to make the V/HBox setup work just the same as your HTML table. -Mark Hawley From: Dimitrios Gianninas [EMAIL PROTECTED] Date: 2007/03/28 Wed AM 09:14:53 CST To:

RE: [flexcoders] Flex Data Services installation

2007-03-28 Thread Messer, Jon
Are you sure you need to use FDS? I think you will be much better off evaluating Flex first as a UI development environment. If you then decide you like it for UI and you know you will need to use FDS then evaluate FDS after you have a grip on Flex. A good way to check out FDS is to use the

[flexcoders] Re: How heavyweight is data binding?

2007-03-28 Thread One Person
Collin, We are using a similar approach for our I18N strings. We don't have nearly as many strings are you have indicated you are using, but we are wondering the same thing. Will a large number of data bound string cause problems in the app? We are trying to come up with a different plan if

[flexcoders] DataGrid cell effect

2007-03-28 Thread Nick Durnell
Hi all, I'd like my datagrids to have an effect whereby a cell's background briefly flashes a different colour when its data changes. For example if row 2 gets updated and column 4 has changed value, I want that cell (and that cell only) to flash to draw the attention of the user. Does

[flexcoders] Re: Connect and Retrieve from MS SQL Server 2005

2007-03-28 Thread iko_knyphausen
If you are using the full version of SQL 2005 (meaning not Express) you may be able to use the built-in Web Services Endpoints ... Have not tried it myself, but I think in theory that should work. -Iko --- In flexcoders@yahoogroups.com, Clint Tredway [EMAIL PROTECTED] wrote: you can use just

[flexcoders] Re: How heavyweight is data binding?

2007-03-28 Thread Paul DeCoursey
I'm going to jump in here and say that if you try binding a very large number of strings you are going to have a performance penalty. I think the only benefit to not using the built in localization and ResourceBundles is a user could switch locales dynamically within the app and not have to reload

[flexcoders] Re: VideoDisplay bug?! How to extend to change a private variable?

2007-03-28 Thread beecee1977
That did the trick thanks. For when I get a chance I should really log a bug... anyone got the url for that handy? For anyone else with this problem, so long as you know you'll be ALWAYS calling load() before play(), having done a close() this will do the job: package libraries.utility {

[flexcoders] Re: Custom Component Width when 100%?

2007-03-28 Thread Nate Pearson
In my measure function I have: override protected function measure():void{ measuredWidth = getExplicitOrMeasuredWidth() measuredHeight = getExplicitOrMeasuredHeight() } That makes them both zero though. although my updateDisplayList gets called twice my measure function is

[flexcoders] Re: Scaling Custom Components

2007-03-28 Thread Nate Pearson
Thanks everyone for your response. Now that I understand how children are added/removed i can take out some of my work arounds in other projects! The scaling works great now. New question: Is this the best way to scale? Is it expensive to remove and re-add all the components when I want to

[flexcoders] space between MenuBar - menuitems

2007-03-28 Thread Vinoth Babu
Hi All, How to give a custom gap between two menuItems in a menubar component For e.g. Assume menubar contains File,Edit, View,... menuitems I need to give custom gap between File and Edit Thanks, Vinoth - Expecting? Get great

[flexcoders] How to invoke WebService via Proxy script?

2007-03-28 Thread rzilist
Hi folks, I'm consuming webservice from a server with no crossdomain file. So, I've generated a proxy script based on wsdl file. The proxy script resides on the same server as my SWF file (I have no access to the data server, and FDS is not an option). Now, in my MXML file, I have

[flexcoders] Xml result / repeater weirdness (w Rails)

2007-03-28 Thread rowanhick
Hey Everyone, I'm wondering if someone can shed light on this, I've had a search of the archives but no joy and don't seem to be missing anything obvious. PROBLEM: I have a repeater iterating over a dataproviders currentItem, which if only one element is in the provider works perfectly fine,

Re: [flexcoders] Problem with measureHTMLText when using different font-sizes

2007-03-28 Thread masi woermann
Thanks for the quick reply. I've changed the code in the example as you said and with validation it works like a charm. Somehow it does not measures accurately in the app where I actually need it, but that problem obviously resides somewhere else. Cheers Masi

[flexcoders] Draw Icon in Text Area

2007-03-28 Thread billbejeck
Hi, I have an application where users can add comments about contents of a file that is displayed in a TextArea. The user selects some text, right clicks and a dialog pops up for the user to enter some comments. I would like to embed an icon at the end of the selected text range, but so far I

[flexcoders] Re: TypeError: Error #1034: Type Coercion failed :

2007-03-28 Thread nxzone
You are right. Now i use a generic library (myLib.swc) as RSL. The RSL is loaded first and my problem is solve... I can use RSL or link-report to load repetitive class, but what is the advantage to use link-report? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Because

[flexcoders] Variable width ListItems

2007-03-28 Thread Shaun
I have a horizontal list with items that can have variable widths. However, all items end up with the same width as the first item in the list. How do I allow variable width list items? Is there something similar to the datagrid's variableRowHeight setting that I'm missing? Thanks, Shaun

RE: [flexcoders] Re: Bad Results referencing local variables in nested loops

2007-03-28 Thread Gordon Smith
I forwarded this to a compiler engineer. He says that it looks like a compiler bug, but he thinks he found a workaround: Don't name the three Function objects in verifyContainer(). For example, instead of passing function myContainerFunction( itemNo : int, numItems : int, items : Array )

[flexcoders] Re: Scaling Custom Components

2007-03-28 Thread Nate Pearson
The browser window is resizing. How would I just set the scaleX, scaleY in that situation? By setting those would i redraw for me? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: removing and readding is a bit expensive. Are you scaling the content of a component?

[flexcoders] Re: TypeError: Error #1034: Type Coercion failed :

2007-03-28 Thread nxzone
My question was more why should I use link-report? If i have a RSL library, each module or application that link this RSL will not export class that are inside this RSL. So what is the difference? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: RSLs contain code to load

RE: [flexcoders] List Box in a DataGrid

2007-03-28 Thread Alex Harui
Consider using Canvas with Repeater instead of List. I doubt you need scrollbars and selection for the list of colors. Or if you know you'll only have three colors, just put that many Labels on a Canvas. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] storing data in models within Flex 2

2007-03-28 Thread Alex Harui
if you have mx:XML id=foo ... You now have a variable names foo that you can use E4X to add to. See the doc on the XML class. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jmwhittaker007 Sent: Wednesday, March 28, 2007 7:52 AM To:

RE: [flexcoders] Re: How heavyweight is data binding?

2007-03-28 Thread Alex Harui
The plan is for Flex to officially support a runtime-localization strategy in the next major release. One team has managed to customize systemManager to allow an RSL of resource bundles to be brought in before the app starts up, and they choose which RSL based on locale, but that's because they

RE: [flexcoders] Re: Custom Component Width when 100%?

2007-03-28 Thread Alex Harui
measure requires some math, usually. you will never call getExplicitOrMeasuredWidth() on yourself since that just reads the meausredWidht property you are trying to set. If I had a component that drew a circle and a triangle next to it, my measure would look like measuredWidth=

[flexcoders] Re: Draw Icon in Text Area

2007-03-28 Thread nathanpdaniel
You can alter the htmlText property to add an img tag at the end... works good until the user deletes it... :D But that was pre-apollo which has a whole lot better support for HTML - but I don't know if you can use that support outside Apollo, haven't tried yet. But hopefully that'll get you

RE: [flexcoders] Re: TypeError: Error #1034: Type Coercion failed :

2007-03-28 Thread Alex Harui
RSLs contain code to load (so do modules). link-report is a list of classes that don't need to be in a module because you guarantee they'll be found elsewhere. THis makes your modules smaller so they load faster. Usually you need both when using modules and RSLs

RE: [flexcoders] Re: Scaling Custom Components

2007-03-28 Thread Alex Harui
removing and readding is a bit expensive. Are you scaling the content of a component? You should just set the scaleX,scaleY and reposition. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nate Pearson Sent: Wednesday, March 28, 2007 9:57

Re: [flexcoders] HTML-like Table/Textbox behavior possible?

2007-03-28 Thread missgiggygirl
Thanks Dimitrios and John Mark, I will follow your advice and see what I come up with... Thanks, Ann

Re: [flexcoders] Are Events OK in the MVC (S) pattern

2007-03-28 Thread Troy Gilbert
On 3/27/07, shaun etherton [EMAIL PROTECTED] wrote: Troy Gilbert wrote: Brett, Events are actually an a pretty fundamental component of an MVC implementation. Events are most often used by the model to notify the view and/or controller of changes (Observer pattern). Usually the

[flexcoders] TextArea htmltext parsing

2007-03-28 Thread jmfillman
How would I go about taking the htmltext of a TextArea and parsing it based on a space and assigning each piece to an Array or ArrayCollection?

RE: [flexcoders] Re: TypeError: Error #1034: Type Coercion failed :

2007-03-28 Thread Alex Harui
I use link-report to be sure that there is no duplication of classes. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nxzone Sent: Wednesday, March 28, 2007 11:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: TypeError: Error

[flexcoders] Programmatically create MovieClip frames?

2007-03-28 Thread mtthwnthnyhys
Hey all, I have a bit of an odd question. I'm working on a project in which I'd like to include some somewhat intricate Flash animations... unfortunately... (sort of)... I'm working on one of those new MacBook Pros, with the Intel chip. No Flash 9 AS3 preview for me. I'd like to keep

RE: [flexcoders] Re: Scaling Custom Components

2007-03-28 Thread Alex Harui
I think I need more context. If I had a component with a circle and triangle and the browser window resized, if I set the component's widht/height to use %, updateDisplayList will be called with different numbers and I would just set scaleX/scaleY on either the entire component or the circle and

[flexcoders] PopUpManager Problem

2007-03-28 Thread Mark
I need some help with an error I am getting when using the popupmanager. Essentially the problem I am having is if I dynamically load SWFs from my main application and more than one of the SWF uses the popupmanager I receive an error. The specific error I am getting is: TypeError: Error #1009:

[flexcoders] Cairngorm and compile time generated errors

2007-03-28 Thread bparvizi1
I'm using Cairngorm in Flex Builder Eclipse. However, in my .as and mxml files the compile time error checking in the problems panel does not work. Compile time errors fall silent. I made sure to have the Build Automatically checked as well, so I know I am compiling it. I have to run the

RE: [flexcoders] PopUpManager Problem

2007-03-28 Thread Alex Harui
See sharedCode portion of my presentation on modules at blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Sent: Wednesday, March 28, 2007 11:48 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] PopUpManager

Re: [flexcoders] space between MenuBar - menuitems

2007-03-28 Thread Cutter (Flex Related)
I don't remember the exact style attribute, but if you go in to the Flex Start Page of Flex Builder you will see a link for the Style Editor, and I know that was one of the examples on there, giving you the complete attribute/value information you would need. Steve Cutter Blades Adobe

RE: [flexcoders] Programmatically create MovieClip frames?

2007-03-28 Thread Merrill, Jason
Why would you want to? It seems whatever you're trying to do could be accomplished in some other way. Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] Cairngorm and compile time generated errors

2007-03-28 Thread Douglas McCarroll
If I recall correctly, this is because you are using the SWC for your Cairngorm code. Point your project at some Cairngorm source code, and give it a try. Douglas bparvizi1 wrote: I'm using Cairngorm in Flex Builder Eclipse. However, in my .as and mxml files the compile time error checking

RE: [flexcoders] Variable width ListItems

2007-03-28 Thread Alex Harui
Unfortunately, this is not supported. Do you have tons of items? If it is only a few, I'd use HBox From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shaun Sent: Wednesday, March 28, 2007 10:40 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Personalized Popup

2007-03-28 Thread leoaraguas
It works... now i want make some effects.. i will try. Thanks Again.

[flexcoders] Center alignment problem

2007-03-28 Thread cardinalflexjeremy
I have a viewstack, that contains two sub components. One (the first) is simply a small login panel. (its actually just a canvas with text fields and a header etc inside it). The second is what is shown once the user is logged in; its also a large canvas, with a function app inside that component.

[flexcoders] Re: Variable width ListItems

2007-03-28 Thread Shaun
There aren't tons of items, but I need the dataprovider binding functionality provided by the horizontallist. (right now I bind to an arraycollection that changes regularly) How would you recommend achieving this with an HBox? I'd rather not manage the HBox's children manually, though I will

[flexcoders] Re: Center alignment problem

2007-03-28 Thread Shaun
a couple of options: 1) change your login control to a popup titlewindow instead and use popupmanager to center it to the viewstack 2) put your login control in a mx:Box control that takes up the full size of the viewstack and has verticalAlign set to middle and horizontalAlign set to

[flexcoders] Re: TextArea htmltext parsing

2007-03-28 Thread Doug Lowder
There's a String.split() method that might be what you're looking for. var eachPieceArray: Array = myTextArea.htmlText.split( ); --- In flexcoders@yahoogroups.com, jmfillman [EMAIL PROTECTED] wrote: How would I go about taking the htmltext of a TextArea and parsing it based on a space and

[flexcoders] Creating overlay controls for UIComponents

2007-03-28 Thread pavanpodila
Hello, I am working on a project where I will have a bunch of images. I need to positions some overlay controls on some of them when selected. These control are meant to manipulate the visual appearance of the image (for example: resizing handles, etc). I wanted to know what is the best

[flexcoders] Is anybody else getting duplicate messages?

2007-03-28 Thread Paul DeCoursey
I've been getting 2 sometimes 3 copies of many messages. It's quite annoying and this is on top of an already high volume list.

[flexcoders] Re: Is anybody else getting duplicate messages?

2007-03-28 Thread Shaun
Yeah, I'm see the same thing. Rather annoying indeed. Yahoo must be having some problems --- In flexcoders@yahoogroups.com, Paul DeCoursey [EMAIL PROTECTED] wrote: I've been getting 2 sometimes 3 copies of many messages. It's quite annoying and this is on top of an already high

RE: [flexcoders] TextArea htmltext parsing

2007-03-28 Thread Gordon Smith
What are you trying to do? If you want a list of words wouldn't you want to parse the 'text' rather than the 'htmlText', which includes a bunch of HTML markup? You can use the split() method of String to create an Array. For the first argument pass a RegExp representing one or more whitespace

Re: [flexcoders] Is anybody else getting duplicate messages?

2007-03-28 Thread Cutter (Flex Related)
Yes, quite a few times today Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Paul DeCoursey wrote: I've been getting 2 sometimes 3 copies of many messages. It's quite annoying and

Re: [flexcoders] Re: Flex 2, AMFPHP and charset

2007-03-28 Thread Rafael Guédez
Thanks again Ryan! This theme about the specials chars drive me crazy! I test all en 3 different servers, with php5 and 4 and checking the data with phpMyAdmin and with two diffents local clients, cocoaMySQL and YourSQL (Mac), and using the Terminal too. With the Terminal the data look

Re: [flexcoders] Is anybody else getting duplicate messages?

2007-03-28 Thread Doug McCune
I've been getting 2 sometimes 3 copies of many messages. It's quite annoying and this is on top of an already high volume list. On 3/28/07, Cutter (Flex Related) [EMAIL PROTECTED] wrote: Yes, quite a few times today Steve Cutter Blades Adobe Certified Professional Advanced Macromedia

Re: [flexcoders] Re: Variable width ListItems

2007-03-28 Thread Mark Doberenz
You put a repeater inside a hbox and set dataprovider of the repeater to what you're using on the list box. It's not normally best practice to do this, that's why Alex asked if you had a lot of items in the list. Using a repeater is much slower in rendering time than a list. On 28 Mar 2007

  1   2   >