RE: [flexcoders] Flash Component runs slower?

2007-10-31 Thread Alex Harui
Only if the animation is causing other code in Flex to run. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Roy J. Tang Sent: Tuesday, October 30, 2007 7:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flash Component

RE: [flexcoders] Re: Problem importing component from Flash CS3

2007-10-31 Thread Alex Harui
File it under Flex. Your workaround is probably ok From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Roy J. Tang Sent: Tuesday, October 30, 2007 6:28 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problem importing

RE: [flexcoders] Re: Type coercion error for ToggleButtonBar in very simple example.... possibly

2007-10-31 Thread Alex Harui
Up to you. See my blog on modules in the presentations From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lytvynyuk Sent: Tuesday, October 30, 2007 6:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Type coercion error for

Re: [flexcoders] parseFloat vs Number

2007-10-31 Thread Abdul Qabiz
Is there anything that Number() parses that parseFloat doesnt? There are differences:- 1) Number is type where as parseFloat () is a global-function 2) Number (x) tries to cast x to Number where as parseFloat (x) reads, or * parses*, and returns the numbers in a string until it reaches a

[flexcoders] Re: parseFloat vs Number

2007-10-31 Thread reflexactions
Thanks anyway for the reply, though I wasnt really asking what the difference is between Number and parseFloat I was asking more specifically about the difference between Number and parseFloats string parsing capabilities. --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED]

Re: [flexcoders] SOUND_COMPLETE event not firing?

2007-10-31 Thread Abdul Qabiz
There are some mp3 files with silence in the end or not proper end-of-file bytes... Sometimes it fires after some delay. Does it never fire in ur case? Not sure what is the exact problem, it also happens with FLVs... You might want to have a timer running that checks if sound is not buffering

Re: [flexcoders] fetching unicode characters

2007-10-31 Thread Abdul Qabiz
Updated code:- ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; creationComplete=onAppCreationComplete() mx:Script ![CDATA[ import mx.rpc.http.HTTPService; import mx.rpc.events.ResultEvent; private var

[flexcoders] Changing Default Timeout Period

2007-10-31 Thread subeesh a
Hi, In my flex application, I am calling a javascript function using external interface which opens a popup(an aspx page) with a rich text editor. When that popup is closed after entering some data, the same javascript function calls an actionscript function to refresh the data. The problem

RE: [flexcoders] SOUND_COMPLETE event not firing?

2007-10-31 Thread Alex Harui
Double check which thing actually sends SOUND_COMPLETE. It is not Sound, I think it is SoundChannel From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz Sent: Wednesday, October 31, 2007 12:23 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Bug in Proxy

2007-10-31 Thread Johannes Nel
I emailed them a case to replicate and i saw your code in the bug base (which is the same as mine basically), other than that no info :( On 10/30/07, Derek Vadneau [EMAIL PROTECTED] wrote: Hi Johannes, Did Adobe contact you for more info about the Proxy bug?:

Re: [flexcoders] How do I set a panel title

2007-10-31 Thread Paul Andrews
- Original Message - From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, October 31, 2007 3:25 AM Subject: Re: [flexcoders] How do I set a panel title Paul Andrews wrote: so I tried myPanel set title(This is the new title ); I didn't really expect it

Re: [flexcoders] Re: Flex Builder 3 and Coldfusion 8 with LCDS

2007-10-31 Thread Tom Chiverton
On Friday 26 Oct 2007, [EMAIL PROTECTED] wrote: What wizard are you talking about? The one in Flex Builder. Free trial. -- Tom Chiverton Helping to greatly benchmark value-added supply-chains on: http://thefalken.livejournal.com This email

[flexcoders] Will Papervision 3D be available for use in Flex Builder 3 ???

2007-10-31 Thread Robert Thompson
The Papervision 3D project seems to be going forward in sputters, but the Action Script 3.0 examples look extremely promising. Will this library and any nice physics and mathematics libraries be included in Flex Builder 3 soon ? Abdul Qabiz [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: parseFloat vs Number

2007-10-31 Thread Abdul Qabiz
AFAIK, Number (x) would return NaN as soon as it finds any character that's digit/number... Where as parseFloat (x) does some effort to find out the number until it encounters NaN character... -abdul On 10/31/07, reflexactions [EMAIL PROTECTED] wrote: Thanks anyway for the reply, though I

[flexcoders] Routines for Accurate Recording of Mouse

2007-10-31 Thread Robert Thompson
I don't want to reinvent the wheel on accurate recording of mouse position and more important delta/change so that it can be played back in unison with the events it was recorded with. Is anyone aware of any ActionScript 3.0 routines for this? thx

Re: [flexcoders] Will Papervision 3D be available for use in Flex Builder 3 ???

2007-10-31 Thread Paul Andrews
Well, I wonder how Flash player 10 is going to figure in this. Nice demos in the preview. Paul - Original Message - From: Robert Thompson To: flexcoders@yahoogroups.com Sent: Wednesday, October 31, 2007 9:52 AM Subject: [flexcoders] Will Papervision 3D be available for use

Re: [flexcoders] Re: OT: Netiquette Question

2007-10-31 Thread Tom Chiverton
On Thursday 25 Oct 2007, [EMAIL PROTECTED] wrote: An OT comment to an OT post but I do wonder why people who are forced to ad those inane legal qualifiers to their emails don't just subscribe to newsgroups and mailing lists from a gmail account. Because, in theory, GMail doesn't count as work

[flexcoders] Remoting Result Objects

2007-10-31 Thread reflexactions
If I make a remoting call and get back a result object, it seems to me that whenever I try to access anything in the result object it is being wrapped in an ObjectProxy before being handed to me. Is there a way to stop this?

[flexcoders] switching states and binding

2007-10-31 Thread johantrax
Hi All, I'm currently creating my own imagecomponent, which has 4 states: * image : display the image * text : display the uri * edit : display uri in an inputfield * both : display image+uri The idea is that when a non-edit-state is double-clicked, the editstate gets activated and my

[flexcoders] Block a LocalConnection call

2007-10-31 Thread Mark Ingram
Hi, is there anything that could stop a LocalConnection call from working, e.g. a firewall? I'm using a LocalConnection to send information between a Flex application and an embedded Flex application - it works fine here (and every where else we've tried) but for some reason our customer can't get

[flexcoders] Extra tick mark on customised categoryaxis

2007-10-31 Thread imjackson84
Hi, I'm working on a stock chart application using Flex 2 Charts. One of the graphs is an intra-day feed for 5 days. For this I am using a Category Axis with a category created for every minute of the trading hours for the 5 days. I have extended the category axis with an over-ridden

[flexcoders] Re: parseFloat vs Number

2007-10-31 Thread johantrax
Well, sometimes to discover you ought to try ;) I built you a little sample-application showing the results of parseFloat and Number() (and 'as Number', which gives, lets say 'predictable', results when used on a String) ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] file upload fails on Leopard?

2007-10-31 Thread grimmwerks
Hey - I've got a file uploader that works on Tiger at http://100grand.scribemedia.org . -- just tested it with a laptop (might be the flash version as well, because on this laptop I got the 'dismiss all' screen'). On 2 machines running Leopard I didn't get the plugin alert, but fileupload

[flexcoders] Re: parseFloat vs Number

2007-10-31 Thread reflexactions
Yeah I did exactly that already, even before asking the question. I was just asking the question of a larger group to see if there was something I might have missed before committing to overriding a function in an Adobe class that was just doing Number(string) :) It easy to write a test and

[flexcoders] Re: Extra tick mark on customised categoryaxis

2007-10-31 Thread imjackson84
Never mind, I fixed it! I just had to set ticksBetweenLabels to false... --- In flexcoders@yahoogroups.com, imjackson84 [EMAIL PROTECTED] wrote: Hi, I'm working on a stock chart application using Flex 2 Charts. One of the graphs is an intra-day feed for 5 days. For this I am using a

Re: [flexcoders] Block a LocalConnection call

2007-10-31 Thread cisnky
I would check the usual like Flash Player version. Also your local connection name might be clashing with another application the user might be running on there machine (Yahoo Messenger has been known to cause problems). Let us know how you get on. On Oct 31, 2007 11:23 AM, Mark Ingram [EMAIL

[flexcoders] Re: parseFloat vs Number

2007-10-31 Thread johantrax
I agree that in most (if not all) cases, small tests indeed will skip some situations (as did mine, i forgot the empty string) But for most functions you can find solid documentation within the language reference. f.e. (under Global functions): Number()function public function

[flexcoders] Using custom checkBox in datagrid

2007-10-31 Thread candysmate
I'm using a custom itemRenderer (centered checkBox), based upon Alex Harui's excellent blog in a dataGrid. My dataGridColumn has: mx:DataGridColumn headerText=

Re: [flexcoders] Using custom checkBox in datagrid

2007-10-31 Thread Scott Melby
Dispatch a custom event with bubbles set to true. In the event include the checkbox that was checked so the code that catches it can get the selected state. Then in the code that sets up your datagrid add an event listener to the grid itself as follows

[flexcoders] Re:Placing TitleWindow source file in custom folder

2007-10-31 Thread srikanth reddy
Use the following code instead of this use Application.application which is a pointer to the application and give the xmlns:ns=MyWindows.* where ever u call it in mxml; private function showWindow() :void { var login:SimpleTitleWi ndowExample= SimpleTitleWindo wExample( PopUpManager.

[flexcoders] Re: client side image loading

2007-10-31 Thread wouterv2000
Ok, so when a client selects a file it ok to upload the file to ANY server on the internet the flex author owns, but NOT OK to load it in memory of the client that owns the file! Seems kinda backwards to me. Wouter --- In flexcoders@yahoogroups.com, Seth Caldwell [EMAIL PROTECTED] wrote:

[flexcoders] PopUp / GridItem / localToGlobal

2007-10-31 Thread mark00bradley
Hi all, I am trying to outline some GridItem components with a popup canvas component. I have it working nicely if the Grid is not in a popup, but once it is contained in the popup, I run into problems, as the GridItem gives me an x value that appears to be incorrect. Can anyone tell me how to

[flexcoders] good examples of imagecropping?

2007-10-31 Thread Noyes, Jeff
I'd like to see some good code examples of uploading images, cropping, then saving. Can anyone point me in the right direction? http://geo.yahoo.com/serv?s=97359714/grpId=12286167/grpspId=1705007207/ msgId=91860/stime=1193360231/nc1=4507179/nc2=3848640/nc3=4840954

[flexcoders] Re: Help with XML Data

2007-10-31 Thread aseelund
you could try making a repeater that creates a label for each item.. HBox repeater id=rpt dataprovider=theXMLListCollection label text={rpt.currentItem.label} / /repeater /HBox --- In flexcoders@yahoogroups.com, markcavins [EMAIL PROTECTED] wrote: Ok so here's the skinny: I have

Re: [flexcoders] comboBox as itemRenderer and rendererIsEditor

2007-10-31 Thread Scott Melby
Looks like you could just override set data(value:Object):void in your mxmlcomponents.TypeComboBoxRenderer class. That override could looks something like: override public function set data(value:Object):void { if(value != null) { super.data = value;

[flexcoders] Re: Text word wrapping

2007-10-31 Thread ninobronzed
Thanks Alex, My VBox (that had the quirky textfield as a child) had a sibling with a varying width, and when the width was set to 0, this problem occurred. Instead of setting the width to 0, I set includeInLayout=false; and the bug disappeared. Thanks. --- In flexcoders@yahoogroups.com, Alex

[flexcoders] comboBox as itemRenderer and rendererIsEditor

2007-10-31 Thread johnskidgel
Hi All, I'm using a comboBox as an itemRenderer in a DataGrid's DataGridColumn. I'm also using the same itemRenderer as the editor and have set the rendererIsEditor to true. My problem is in initializing the comboBox to use the original value specified by the dataProvider and not the first

Re: [flexcoders] switching states and binding

2007-10-31 Thread Edward Yakop
Can anyone clarify this behaviour out for me, because I don't see where the altered value can be saved, except for the variable imgURL. But if that is the case, then why isn't the text-view updated? Have you try to use [data={imgURL}] instead of [text={imgURL}]? Regards, Edward Yakop

Re: [flexcoders] How do I set a panel title

2007-10-31 Thread Paul Andrews
- Original Message - From: Paul Andrews [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, October 31, 2007 8:45 AM Subject: Re: [flexcoders] How do I set a panel title - Original Message - From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

[flexcoders] Re: Using custom checkBox in datagrid

2007-10-31 Thread candysmate
--- In flexcoders@yahoogroups.com, Scott Melby [EMAIL PROTECTED] wrote: Dispatch a custom event with bubbles set to true. In the event include the checkbox that was checked so the code that catches it can get the selected state. Then in the code that sets up your datagrid add an event

[flexcoders] Re: Deep binding with Cairngorm question

2007-10-31 Thread dbronk
The problem with this solution is that it is assuming that the same class that is setting the prodList is also listening to it. Or at least it knows all of the places that it is listening to it. I may have several different classes listening to this list and each binding to a different function.

[flexcoders] In panic - Flex Builder 3 Beta 2 sandbox violation error

2007-10-31 Thread msabljic
Hello, Until today, i've been using FB 3 Beta 1 but now i am forced to use Beta 2 since Beta 1 release expired today. I was working on the project which consists of HorizontalList in which i load images from remore url. Today i opened project in Flex 3 Beta 2 and got following error:

Re: [flexcoders] In panic - Flex Builder 3 Beta 2 sandbox violation error

2007-10-31 Thread Edward Yakop
That's because your flash player is updated. U could reset the global security and set your URL to be a trusted location. http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html Regards, Edward Yakop Note: click on the third icon from the left and set the

Re: [flexcoders] comboBox as itemRenderer and rendererIsEditor

2007-10-31 Thread Charles Galpin
Yup, but since it's a combobox he should iterate over his array collection and when the value matches, set the selectedIndex to the index of the matching element. Something like for (var i:int=0;idataProvider.length;i++) { var type:String = dataProvider[i]; if(type == value) {

Re: [flexcoders] file upload fails on Leopard?

2007-10-31 Thread grimmwerks
It's definately something with leopard. Can someone from adobe confirm please? On Oct 31, 2007, at 7:50 AM, grimmwerks wrote: Hey - I've got a file uploader that works on Tiger at http://100grand.scribemedia.org . -- just tested it with a laptop (might be the flash version as well,

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-31 Thread lrdvadersith
I stripped out as much code as I could, and the error does still happen. I think the error has something to do with one of 2 files: roles.mxml: mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:test=components.* xmlns:model=com.pinnacol.test.model.*

[flexcoders] datagrids and data changes

2007-10-31 Thread Ramsey, Robert L
Hi, I have the feeling I'm being very stupid about something, but here goes. I have a datagrid, myDatagrid, bound to a dataprovider, myData. myData is an ArrayCollection based on an xml list of data returned from a php script with an httpservice call, but I don't think that should make a

[flexcoders] Re: Using custom checkBox in datagrid

2007-10-31 Thread ben.clinkinbeard
You don't need a custom event as MouseEvent.CLICK already bubbles. Simply listen for that event and then check if(event.target is CenteredCheckBox). HTH, Ben --- In flexcoders@yahoogroups.com, candysmate [EMAIL PROTECTED] wrote: I'm using a custom itemRenderer (centered checkBox), based upon

Re: [flexcoders] datagrids and data changes

2007-10-31 Thread Scott Melby
I believe you need to include dataField and editorDataField on your column definition. For instance dataField=myBooleanProperty editorDataField=selected This should end up setting the myBooleanProperty property of the object in your data provider to the checkbox.selected state whenever it

Re: [flexcoders] comboBox as itemRenderer and rendererIsEditor

2007-10-31 Thread Edward Yakop
Hi. My problem is in initializing the comboBox to use the original value specified by the dataProvider and not the first option in the combobox. (which may or may not be the actual value) I've pasted a simple example to see if someone can point out what I'm doing wrong. All you have to do is

RE: [flexcoders] datagrids and data changes

2007-10-31 Thread Nate Nielsen
Have you set an item renderer for the check box column? Something like the following: mx:DataGridColumn dataField=Confirmed editable=true rendererIsEditor=true itemRenderer=mx.controls.CheckBox editorDataField=selected/

[flexcoders] Sort object by property name

2007-10-31 Thread Claudia Barnal
Hi, How can I sort an Object? For example I have the following object: {banana:yellow, apple:green, lemon:yellow, cherry:red} and I need to sort it so that it looks like this: {apple:green, banana:yellow, cherry:red, lemon:yellow} I need to assign the colors in a for in loop, for which the

[flexcoders] Re: Type coercion error for ToggleButtonBar in very simple example.... possibly

2007-10-31 Thread lytvynyuk
Can you give me a link ? BTW I fixed problem when changed Framework Linkage option to Runtime Shared Library (RSL) BUT I would like to know more about physics of this. Up to you. See my blog on modules in the presentations From:

[flexcoders] Re: switching states and binding

2007-10-31 Thread johantrax
No difference using data. I solved it by explicitly setting the property in the revertState()-function: this.imgURL = this.editImage.text; I assume the edit-view could hold it's altered value because, when altering it's value, only the text/data-value for the textfield is changed, and

Re: [flexcoders] file upload fails on Leopard?

2007-10-31 Thread Andriy Panas
http://weblogs.macromedia.com/emmy/archives/2007/10/adobe_products.cfm#comments -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Sort object by property name

2007-10-31 Thread Edward Yakop
Hi, Hi How can I sort an Object? For example I have the following object: {banana:yellow, apple:green, lemon:yellow, cherry:red} and I need to sort it so that it looks like this: {apple:green, banana:yellow, cherry:red, lemon:yellow} code var notSorted:Object= {banana:yellow,

Re: [flexcoders] Re: switching states and binding

2007-10-31 Thread Edward Yakop
On Oct 31, 2007 3:20 PM, johantrax [EMAIL PROTECTED] wrote: No difference using data. Opps :( I just copy and paste the example. Another way that u can solve it is by changing it this way. mx:TextInput id=editImage text={this.imgURL} change={imgURL=editImage.text} / But, obviously your solution

Re: [flexcoders] datagrids and data changes

2007-10-31 Thread Edward Yakop
Since the previous question is already answered by Scott. I won't repeat the answer here. My ultimate goal is that when the user clicks the submit button, I get only the records in myDatagrid that have changed. By the time the app is done there may be hundreds of rows of records with up to 10

Re: [flexcoders] datagrids and data changes

2007-10-31 Thread Scott Melby
That'd work... but I'd be more inclined to save off a copy of my initial data when I stick it in the ArrayCollection, then on submit walk the two collections seeing what changed. But, that's really just my preference. hth Scott Scott Melby Founder, Fast Lane Software LLC

[flexcoders] Yuwie is similar to MySpace but with difference. Yuwie pay its members to use the site!!

2007-10-31 Thread Gavin Go
Yuwie is like MySpace but it pays you to use their site It is not a get rich quick scheme but if you like socialising and you use Yuwie for just that you will recieve some money! Money is made on Yuwie through advertising and Yuwie want to give back to us and pay us for what most of us already

Re: [flexcoders] Yuwie is similar to MySpace but with difference. Yuwie pay its members to use the site!!

2007-10-31 Thread Jon Bradley
On Oct 31, 2007, at 10:36 AM, Gavin Go wrote: Yuwie is like MySpace I adore first-time-poster spam. Can we remove this address from the list? :P - jon

[flexcoders] Upload file in chunks

2007-10-31 Thread Dennis van Nooij
Hi all, I'm a bit stuck here in finding a solution for uploading files to our server. Problem is that is has to be sent in DIME format (binary data with some xml in it). What I was wondering is that for this solution it looks like I have to read the file first, wrap it in a bytearray and then

[flexcoders] SequenceCommand

2007-10-31 Thread Giles Roadnight
Hi All I'm quite new to sequence commands but they are used extensively at my new job. At the moment I am trying to save a large number of items. I am using a sequenceCommand to do this although in this case it is not being used as part of a sequence. In the command I have a private variable

[flexcoders] Flex camp Frankfurt(Germany)?

2007-10-31 Thread Paul Dale
Hi folks ... just wanted to put a feeler out and see if anyone on the list would be interested in a Flex camp in Frankfurt. If so, please mail me offlist and indicate if you have a preference between english or german. Cheers :) Paul

Re: [flexcoders] Sort object by property name

2007-10-31 Thread Claudia Barnal
Thank you Edward... just what I needed. On 10/31/07, Edward Yakop [EMAIL PROTECTED] wrote: Hi, Hi How can I sort an Object? For example I have the following object: {banana:yellow, apple:green, lemon:yellow, cherry:red} and I need to sort it so that it looks like this:

Re: [flexcoders] Question about adding dynamically populating a visible element ...

2007-10-31 Thread Edward Yakop
Is there a way to do what I want, or do I always need to use addChild? You have to use addChild and, A child can only be added to 1 parent at any time. So, this idea will not work, unless if u can somehow create a new instance of [confbox] all the time. Regards, Edward Yakop

[flexcoders] Re: Using custom checkBox in datagrid

2007-10-31 Thread candysmate
--- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: You don't need a custom event as MouseEvent.CLICK already bubbles. Simply listen for that event and then check if(event.target is CenteredCheckBox). HTH, Ben Much cleaner. Many thanks for your input Ben.

RE: [flexcoders] Block a LocalConnection call

2007-10-31 Thread Mark Ingram
Surely being able to load the application means they've got flash player 9? Or are there different versions of flash 9 that could work differently with LocalConnection? Unfortunately the problem has occurred one more than one computer and more than one location (but all within the same district).

[flexcoders] Question about adding dynamically populating a visible element ...

2007-10-31 Thread Paul Dale
I have a dynamically created popup where I am trying to use ClassFactory to populate a visible item. It does get populated, but it doesn't show up on the stage. If I use var newformcreator:ClassFactory = new ClassFactory(ConvertibleFieldForm); newformcreator.properties = {

Re: [flexcoders] Question about adding dynamically populating a visible element ...

2007-10-31 Thread Paul Dale
Thanks for the help ... I also just realized that if you're adding a mxml component it's children are not added until it's added to the stage ... Which explains the problems I was having trying to add a child to a component within a component before adding it to the stage ... It has to be added

Re: [flexcoders] SequenceCommand

2007-10-31 Thread Giles Roadnight
Actually, I stand corrected. Each call is sent from a different Command object, the results are all passed back to the same instance however. The delegate call looks like this: var call : Object = new Object( ); call = _service.Execute( Shopping. + obj.type + methods[ obj.saveType ], meta,

[flexcoders] State and Transition Tutorials

2007-10-31 Thread Daniel Freiman
Does anyone know of any advanced Transition tutorials? I'm looking for examples of interspersing addChild, remove child, and effects within transitions. Also I'd like to be able to edit a state at runtime (add and remove items from the state definition) and have transitions handle this. I

RE: [flexcoders] datagrids and data changes

2007-10-31 Thread Ramsey, Robert L
Thanks for all the information about the dataField and editorDataField properties, but I'm still screwing something up. The application is designed to let students decide if they want to tape a class or not(thus explaining some variable names). I have a very simplified version of the final app

RE: [flexcoders] How to have a seperator in the list renderer of the combobox

2007-10-31 Thread Alex Harui
http://blogs.adobe.com/aharui/2007/06/disabling_list_selection.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of srikanth_reddy_007 Sent: Tuesday, October 30, 2007 2:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to

RE: [flexcoders] Problem with Label showing ... when the size exceeds the actual given size

2007-10-31 Thread Alex Harui
Set minWidth=0 on the Label From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of srikanth reddy Sent: Monday, October 29, 2007 11:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problem with Label showing ... when the size exceeds

[flexcoders] Re: SequenceCommand

2007-10-31 Thread ben.clinkinbeard
Without thoroughly digesting your issue description, SequenceCommand has proven buggy in the past. Just FYI. Ben --- In flexcoders@yahoogroups.com, Giles Roadnight [EMAIL PROTECTED] wrote: Actually, I stand corrected. Each call is sent from a different Command object, the results are all

RE: [flexcoders] IE6 breaks LocalConnection (was - Block a LocalConnection call)

2007-10-31 Thread Mark Ingram
I've just found out that it's IE6 that is causing the problem - does anyone know of any issues that causes IE6 not to let LocalConnection work? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Ingram Sent: 31 October 2007 15:23

RE: [flexcoders] Block a LocalConnection call

2007-10-31 Thread Alex Harui
LC can fail because of security restrictions, but it can also fail because your app dies unexpectedly with the LC open. This leaves the LC with that name in limbo until you close all player instances (for me, all browsers and Yahoo IM), or reboot. From:

RE: [flexcoders] Re: Type coercion error for ToggleButtonBar in very simple example.... possibly

2007-10-31 Thread Alex Harui
http://blogs.adobe.com/aharui/2007/03/modules.html And yes, that will solve your problem as well, but requires the latest player that isn't officially released yet. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lytvynyuk Sent:

[flexcoders] Hold execution untill result from database

2007-10-31 Thread johantrax
Hi all (again... I'm having a productive day ;) ) I'm trying to lift the creation of components to a new level (at least, for me) What I have: (if it is possible...) 1. I have an .AS-class which describes a person. To keep it simple, the person only has a name(String) and a photo(String - the

RE: [flexcoders] In panic - Flex Builder 3 Beta 2 sandbox violation error

2007-10-31 Thread Alex Harui
That's a bug in the beta. A workaround is to subclass SWFLoader, override notifyStyleChangeInChildren and regenerateStyleCache and have them just return w/o doing anything. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Edward Yakop

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-31 Thread Alex Harui
Just a wild guess: Don't use variables with the same name as namespaces. Xmlns:model actually creates a namespace object. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Wednesday, October 31, 2007 7:09 AM To:

RE: [flexcoders] Hold execution untill result from database

2007-10-31 Thread Mike Krotscheck
I assume you're talking AIR rather than true Flex, right? Synchronous database queries were added in beta 2. Michael Krotscheck Senior Developer RESOURCE INTERACTIVE http://www.resource.com/ www.resource.com http://www.resource.com [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

RE: [flexcoders] datagrids and data changes

2007-10-31 Thread Ramsey, Robert L
Thank you, Alex. You've saved me on a few occasions now! J Thanks again, Bob From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Wednesday, October 31, 2007 11:18 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] datagrids and data

[flexcoders] gotoAndPlay in loaded SWF not working

2007-10-31 Thread Matthias Dittgen
Hello, I am loading a SWF using the ClassLoader class described in the LiveDoc examples for ApplicationDomain. (http://livedocs.adobe.com/labs/flex3/langref/flash/system/ApplicationDomain.html#includeExamplesSummary) In the loaded SWF, I have a MovieClip exported to AS. I load its Class like

[flexcoders] Re: Mouse-Over events work on Linux but not Windows

2007-10-31 Thread Reid Priedhorsky
Reid Priedhorsky wrote: Hi folks, I have a UIComponent subclass with Mouse-Over and Mouse-Out event handlers: this.addEventListener(MouseEvent.MOUSE_OUT, UI.mouseoutover_wrap(this, this.on_mouseout), false, 0, true);

[flexcoders] help with using Matrix() to skew an Image -- not skewing the right amount

2007-10-31 Thread tddclare
I'm trying to skew an Image object to a varying amount, right down the center. I'm using the example math that I found in the help and in examples online, but for some reason the math doesn't seem to be working out. A cookie for anyone who can help me figure it out. I published the sample of my

RE: [flexcoders] How do I set a panel title

2007-10-31 Thread Tracy Spratt
Getter and setter functions are a way of implementing public properties in a way that gives you control over what happens when a value is set or gotten. Since it is a function, you not only set the value of the internal private value holding variable, but you can also do other stuff. Tracy

[flexcoders] Re: Handling uncaught errors

2007-10-31 Thread Hob Spillane
Has anyone found any creative solutions to this? I'm trying to create a logger that traps all exceptions that aren't caught anywhere else in the application and logs them back to the server for analysis. I'd very much like to accomplish this without having to add hundreds of try-catch blocks

[flexcoders] Re: Handling uncaught errors

2007-10-31 Thread Hob Spillane
Has anyone found any creative solutions to this? I'm trying to create a logger that traps all exceptions that aren't caught anywhere else in the application and logs them back to the server for analysis. I'd very much like to accomplish this without having to add hundreds of try-catch blocks

[flexcoders] Application x-browser height problem

2007-10-31 Thread davidch204
In testing I have the height of my application set to 100% and when I run it, sure enough in Firefox and Safari the application expands to 100%. However when I embed the .swf into my page the height of the application in Firefox seems to be cut in half and in Safari the height seems to be 1.5x

Re: [flexcoders] Re: [javaflexcoders] Official Maven 2 support from the source?

2007-10-31 Thread Peter Connolly
Thanks for setting up the bug. I've voted for it because I've had miserable luck with both the israfil and servebox plugins. Everything else I have builds neatly from Maven2. pc On 10/30/07, Sebastien ARBOGAST [EMAIL PROTECTED] wrote: That's another thing that I love about Adobe's effort

[flexcoders] TweenEffect does NOT trigger bindings(?)

2007-10-31 Thread slangeberg
I am using the Flex Scheduling Framework in FlexLib, and notice that the AnimateProperty (a TweenEffect) class does not trigger binding on the property that it animates. In this case, it is the 'xPosition' property that is animated. When changing this property in code, your bindings will fire.

RE: [flexcoders] Hold execution untill result from database

2007-10-31 Thread Tracy Spratt
Perhaps set creationPolicy=none, then trigger a call to createChildren() from the resultHandler. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of johantrax Sent: Wednesday, October 31, 2007 12:25 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] In panic - Flex Builder 3 Beta 2 sandbox violation error

2007-10-31 Thread Mirko Sabljić
Can you Alex please be kind enough to explain a little bit more detailed how to solve this since i am no Flex expert but would really like to solve this problem that just appeared from nowhere since everything worked just fine in previous release? thank you very much in advance, Mirko Alex

[flexcoders] HELP! unable to install flash plaer

2007-10-31 Thread Jeff Schuenke
I am unable to reinstall flash plaer. I recently updated to the pre- release version 9.0.60, then uninstalled to go back to the current release 9.0.47. Now I cannot install. I run the unitaller and rebooted, but get a message: The version of Adobe Flash player ActiveX that you are trying to

[flexcoders] Re: htmlText in text that originates in XML

2007-10-31 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: In my example code, each repeated component has a reference to the underlying dataProvider xml node. Changes to that node are reflected in the parent xml. I do not understand why writing to the local drive is needed.

Re: [flexcoders] Hold execution untill result from database

2007-10-31 Thread Paul Andrews
I'm not sure having a visual component doing database calls is a good architecture, though I haven't really gone through your code. In an MVC architecture the UI should raise an event. The model should recognise the event, initiate the DB transfer, on transfer complete you can raise another

RE: [flexcoders] HELP! unable to install flash plaer

2007-10-31 Thread Tracy Spratt
Get the latest uninstaller from Adobe, and try that first. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Schuenke Sent: Wednesday, October 31, 2007 2:35 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] HELP! unable

[flexcoders] Re: HELP! unable to install flash player

2007-10-31 Thread Jeff Schuenke
Less panic !! I was able to do a /clean uninstall and get the installer to work. Seems OK now. jeff --- In flexcoders@yahoogroups.com, Jeff Schuenke [EMAIL PROTECTED] wrote: I am unable to reinstall flash plaer. I recently updated to the pre- release version 9.0.60, then uninstalled to

  1   2   >