Re: [flexcoders] Data Grid with dynamic columns ignoring % width or right style.

2009-01-15 Thread Wesley Acheson
Okay sorry If I wasn't clear enough about it basically the data grid stretches, but not enough to accomidate all columns. Nor even enough to fill the container. Setting a width of 0 makes the datagrid remember its constraint layout. Some other intresting factors in my test case if I

[flexcoders] AIR and flex together

2009-01-15 Thread Kenneth Sutherland
I'm looking for some samples/tutorials/general pointers in doing either of the following. 1)Create an AIR app that can load a live flex app and use that for testing. So We have a app which is live and if I could load that into a AIR app which can edit a config file and then test that config

[flexcoders] Accessibility stopped working

2009-01-15 Thread Guy Morton
I had been successfully compiling my app via flexbuilder 3 using the - accessible compiler flag. Then it stopped working, for no apparent reason. I tried reinstalling fb but it made no difference. The compiler option is still set but now my app gets compiled with no accessibility features.

[flexcoders] Re: BlazeDS server environment configuration

2009-01-15 Thread grg_blls
Hi again, following the information provided, I tried the tutorial Wesley provided, only the information in the article is of course rather sketchy - as the complete detailed description was provided in the source code used for that banner example. Unfortunatelly the sources provided are not

[flexcoders] setSelection method is missing from IUITextField interface? (Flex SDK 3.1)

2009-01-15 Thread Andriy Panas
Dear all, In my code I have variable typed as IUITextField /* The internal IUITextField that renders the text of this text control. */ protected var textField : IUITextField; In Flex Builder I am able to select with code complete feature setSelection method on typed variable with

[flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Sceneshift
Hey guys, I have a project coming up where I need to capture the Microphone input and then push it to a byteArray. I know this isn't possible without first recording the input and analyzing it afterward, which is fine. I was wondering which is the best flash server to push and send the data, I

[flexcoders] String encoding comparison

2009-01-15 Thread Mike Chang
I need to do this comparison: if (string a == string b) a is hi and b is also hi, but extracted from an XML file that has characters in other encoding (shift-JIS, japanese to be exact). this statement comes back false in Flex, which is not what I want. the statement comes back true if the XML

[flexcoders] Zoom Effect with ColumnChart

2009-01-15 Thread webbymary
I am trying to zoom in on different areas of a columnchart but the Zoom effect is ignoring(?) my assignments of the OriginX and OriginY values which I get from the mouse's X Y properties on the click event. Zooming also adds a weird effect of zooming just the axes if I happen to click on one of

[flexcoders] Re: Read xml files in relative path

2009-01-15 Thread narayanaweb
Hi GK, Thank you for your timely reply. I realize after reading your mail that we were using applicationStorageDirectory instead of applicationDirectory and thus were not able to resolve the path to the local XML files. Thank you once again, Regards, Satya V Enlume Inc.,

[flexcoders] Issue while opening a flex store project

2009-01-15 Thread shakeb_sikander
HI All, My first Post here. I am new to Flex Hardly 10 days old. I want to open the flexstore project in flex builder 3 and could not able to do so. What I did: file-import- got the error msg as The folder does not contain a valid Flex Builder Project. also tried file-import-general-.

[flexcoders] Dragging problems in and firefox/safari, works perfectly in Inetnet Explorer

2009-01-15 Thread robert.ross27
I have some code which performs a drag and drop from one custom component into another. The actual drag operation works perfectly in all browsers. But the Image shown while performing the drag does not appear in Firefox or Safari. You can see it for a split second and then it disappears.

[flexcoders] Re: Dragging problems in and firefox/safari, works perfectly in Inetnet Explorer

2009-01-15 Thread robert.ross27
Internet Explorer, even.

[flexcoders] Re: BlazeDS server environment configuration

2009-01-15 Thread valdhor
OK, how about: http://backbeatlabs.com/?p=3 http://www.bfaig.org/blog/?cat=14 http://www.adobe.com/devnet/flex/articles/flex_hibernate.html --- In flexcoders@yahoogroups.com, grg_blls grg_b...@... wrote: Hi again, following the information provided, I tried the tutorial Wesley provided,

[flexcoders] Re: Issue while opening a flex store project

2009-01-15 Thread valdhor
Yes, this is not obvious. This is how I got the sample running... - Unzip the file to a directory of your choice. - Create a new Project in Flex Builder (I called it FlexStore). - Copy the assets, data, productsView and samples directories into the src directory of your Flex Builder Project. -

[flexcoders] Why this error with getDefinitionByName?

2009-01-15 Thread enriirne
trace(getDefinitionByName('mx.controls::TextInput')); ReferenceError: Error #1065: Variable TextInput is not defined. Enri

Re: [flexcoders] Why this error with getDefinitionByName?

2009-01-15 Thread Howard Fore
Is this in a SWF that's loaded into another SWF? If so see http://richardleggett.co.uk/blog/index.php/2008/09/08/getdefinitionbyname_vs_getdefinition On Thu, Jan 15, 2009 at 10:28 AM, enriirne enrii...@yahoo.it wrote: trace(getDefinitionByName('mx.controls::TextInput')); ReferenceError: Error

[flexcoders] Re: Accessibility stopped working

2009-01-15 Thread Anthony DeBonis
Try compiling with accessible turned off and get the swf size - when you turn accessible compile back on the swf size should be a bit larger. This will tell you if the compile is backing in the needed classes. If so it may be the client tool you're using to run the application. Can you give

Re: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Nate Beck
Red5 is a great open source project, and a great solution for your needs. However, if you want support on your project, I've found Red5 to be a bit... lacking. If you have the funds... my recommendation would be to use Wowza Media Server (http://www.wowzamedia.com/). A single license will run

[flexcoders] Populating a Flex Container in Flash

2009-01-15 Thread specdout
Hi All, I'm currently developing a Flex application that loads a Flash SWF for use as a background image. In other words, the app's main window has as its first child a SWFLoader component into which I've loaded a SWF developed in Flash. So far, so good. Now, rather than open up dialogs or

RE: [flexcoders] setSelection method is missing from IUITextField interface? (Flex SDK 3.1)

2009-01-15 Thread Alex Harui
Because we use include files to save typing. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Andriy Panas Sent: Thursday, January 15, 2009 2:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] setSelection method is missing from IUITextField interface?

RE: [flexcoders] String encoding comparison

2009-01-15 Thread Alex Harui
Hmm. Everything should be in Unicode by then. Dump each string's charcodes From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Mike Chang Sent: Wednesday, January 14, 2009 4:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] String encoding comparison I

Re: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Sceneshift
Thanks for the replace Nate, I didn't consider Wowza but I'll certainly check it out. Just wondering if you had any thoughts on BlazeDS? Nate Beck wrote: Red5 is a great open source project, and a great solution for your needs. However, if you want support on your project, I've found

Re: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Sceneshift
Ah I see, in that case I shall scrub BlazeDS off my list! Even though Wowza is moderately priced in comparison to FMS, looks like Red5 is my only option within my budget. It's a shame there is barely any documentation online for this kind of thing! Thanks again Nate. Nate Beck wrote: I

Re: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Nate Beck
I haven't used BlazeDS on anything other than some of my small pet projects. However, I'm pretty sure that BlazeDS (Data Service) doesn't have an RTMP end-point. Meaning you can't make a NetConnection and NetStream call to it, which also means you can't use attachMicrophone to send your audio to

RE: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Ryan Graham
Also, depending on what server technology you're comfortable developing in, you may want to check out WebORB - the .Net version is free, and they also provide versions for Java, PHP, CF, and Rails. I've only played with it a little bit, but what I saw seemed pretty solid. HTH, Ryan

RE: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Sceneshift
I use WebOrb currently for PHP remoting, I had no idea it supports RMTP? Bare in mind I want to record live microphone input, does WebOrb really support that? Ryan Graham-3 wrote: Also, depending on what server technology you're comfortable developing in, you may want to check out WebORB

Re: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Nate Beck
That's kind of my point with Red5. It's a GREAT project, and I think what the developers on it have done is nothing short of amazing. That being said, it's still an open source project and as such there is no guarantee that your questions will be answered. Now.. another option you have with

Re: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Nate Beck
WebORB is great, but it's not a media server. Also Jon, you can email me off list if you need any help with the recording of microphone input. There are a whole bunch of common pitfalls you can run into. On Thu, Jan 15, 2009 at 11:08 AM, Sceneshift j...@sceneshift.com wrote: I use WebOrb

Re: [flexcoders] Accessibility stopped working

2009-01-15 Thread Matt Morgan-May
Hi Guy, I'm not sure why you're setting the compiler flag, when you're using FB. You can enable accessibility at the project level in FB via the options panel. You can also enable it by setting accessibletrue/accessible in flex-config, inside the mxml-compiler block. But on the command line,

[flexcoders] disclosureOpenIcon/disclosureClosedIcon + Tree + change position

2009-01-15 Thread ilikeflex
Hi I have a Tree Control and i am using the disclosureOpenIcon disclosureClosedIcon styles. But i want to change the location where are the disclosureOpenIcon/ disclosureClosedIcon icons are displayed. I want to display them after the label of the tree. Bydefault icons are displayed

RE: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Ryan Graham
I'm not sure when they added it, maybe as recent as version 3.4, but it should support video streaming and recording. The datasheet suggests this as well: Video Streaming streaming flash video, video broadcast, server initiated video, video recording, video chat Not sure if the

RE: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Ryan Graham
Oh, there it is... In the RTMP section in the datasheet, it says client stream recording is supported in the .Net, Java, and CF versions of the product. www.themidnightcoders.com/fileadmin/downloads/WebORBDatasheet.pdf HTH, Ryan From: flexcoders@yahoogroups.com

Re: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Nate Beck
Well I'll be darned, didn't know they added support for RTMP. I just recently met Mark Piller and the Midnight Coders guys at their booth at MAX. I'll have to try it out, and put it through it's paces. :D I'm planning on testing all the different Media Servers and posting my results on my blog

Re: [flexcoders] Populating a Flex Container in Flash

2009-01-15 Thread Paul Andrews
Does anything get added to the display list? If nothing else I think you'll need addChild(fc), or something similar. - Original Message - From: specdout ratu...@shaw.ca To: flexcoders@yahoogroups.com Sent: Thursday, January 15, 2009 5:42 PM Subject: [flexcoders] Populating a Flex

[flexcoders] Re: Interfaces not working the way I understand anyway

2009-01-15 Thread mmormando
--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Sounds like an applicationDomain topology problem. See the modules presentation on my blog. Make sure the interface is linked into the main app. That got it! Thanks!! (maybe modules should be marked experimental or something)

RE: [flexcoders] Microphone BlazeDS (Red5?)

2009-01-15 Thread Ryan Graham
I'd be very interested to see that. Most of our projects are rooted in FMS due to ease of setup, but that server-side actionscript has left me scratching my head more than a few times. It would be nice to switch to a free solution that can be coded in a language I'm more comfortable with if the

[flexcoders] Playing Mp4 audio with Sound class?

2009-01-15 Thread Charlie Hubbard
So I'm trying to play Mp4 audio files with Sound, but it doesn't seem to work. I have gotten it working with NetStream class, but I'd really like to use the extract() method to get the underlying samples form the mp4 files just as I can with mp3. Am I correct in that Sound class doesn't support

[flexcoders] Re: Populating a Flex Container in Flash

2009-01-15 Thread specdout
Thanks for your reply, Paul. --- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: Does anything get added to the display list? When the example code executes I do see the FlexContentHolder symbol (Fx) on the display where I would expect it to be, i.e. positioned where I would expect,

[flexcoders] Re: How to avoid red borders created by validators at page loading

2009-01-15 Thread b.kotireddy
Hi, Could any one tell me what is the better way to validate a Combo Box. Please post me some sample code or reference please --- In flexcoders@yahoogroups.com, b.kotireddy koti_reddy...@... wrote: Hi, In my page i have textInput's and Combo Box fields. When my page loads Text Input fields

[flexcoders] Re: Interfaces not working the way I understand anyway

2009-01-15 Thread mmormando
--- In flexcoders@yahoogroups.com, mmormando m...@... wrote: --- In flexcoders@yahoogroups.com, Alex Harui aharui@ wrote: Sounds like an applicationDomain topology problem. See the modules presentation on my blog. Make sure the interface is linked into the main app. That got it!

RE: [flexcoders] Playing Mp4 audio with Sound class?

2009-01-15 Thread Ryan Graham
I believe that is the case. You can only use extract on mp3 files with the Sound object and not on streams with Netstream - unfortunately this feature didn't make it into FP10 (hopefully FP11?). Depending on your setup, one option might be to use a tool like ffmpeg to convert the mp4 to an mp3

RE: [flexcoders] Re: How to avoid red borders created by validators at page loading

2009-01-15 Thread Thomas, Erik
A typical way to validate a combobox is to validate the index to ensure someone has selected a value. To do this, create a NumberValidator instance like this: mx:NumberValidator id=myComboValidator source={validateAssignee} lowerThanMinError= property=selectedIndex minValue=1

[flexcoders] AIR: Detecting when window resize is complete (mouse up)

2009-01-15 Thread Aaron Hardy
Hey folks, In my project I have a component that is a percentage width of its containing window. When the user resizes the window, it triggers the component to update its display list WHILE the user is dragging the window resize handle. Rather than updating the component's display while the

[flexcoders] DataGrid selection w/ filtered contents

2009-01-15 Thread dfalling
Is there a way of getting accurate selectedIndex from an datagrid that's bound to a filtered data provider? I'm running into the same problem from several different angles... I ask a datagrid what its selectedIndex is and it claims it's 10. I tell it to select index 0 instead, at which

[flexcoders] Flex 3 DragManager with dynamic image proxy

2009-01-15 Thread dannyocean7722
Hi there, I'm struggeling with the drag manager and external loaded dynamic images. I do need this for controls with no images displayed. (i.e. dragging with an advanced datagrid should display a image corresponding to the selected data row - So I do need to load the image on demand). if i

[flexcoders] LocalConnection issue in AIR to AIR application

2009-01-15 Thread Pete Appleby
Hi, all. I am attempting to get started with two AIR applications talking to each other. Unfortunately, the StatusEvent basically just says error in the event.level after the Send request. How do I go about debugging this? I am not getting any Security or Async errors from the send. Where

Re: [flexcoders] Accessibility stopped working

2009-01-15 Thread guy
Hi Matt I probably should have mentioned I'm building on a Mac. Yes, there are several ways to tell the compiler to build with accessibility on and I've used all of them. None appear to do it any more. You can imagine how frustrating this is. It surely looks like a bug, but one which even

Re: [flexcoders] Re: Accessibility stopped working

2009-01-15 Thread guy
Hi Anthony Yes, I had the same idea. I checked the binary size from my build against one built by another user using the same codebase - both had accessibility on and his was about 20k biigger than mine. His is accessible, mine isn't. So, it's my FB that's no longer including the

Re: [flexcoders] Playing Mp4 audio with Sound class?

2009-01-15 Thread Charlie Hubbard
No can do. I'm in an AIR app so I'm trying not to rely on the server for this type of operation. Uggg. Adobe... Any chance you know what's the Jira Issue number? I'd like to bump up the vote on it. Charlie On Thu, Jan 15, 2009 at 3:46 PM, Ryan Graham ryan.gra...@phoenix.edu wrote: I

Re: [flexcoders] Re: Accessibility stopped working

2009-01-15 Thread Guy Morton
To answer your other question, I also wondered if it was my client, so have checked the binary in Safari, Firefox and Opera and all agree there is no accessibility on offer. On 16/01/2009, at 4:21 AM, Anthony DeBonis wrote: Try compiling with accessible turned off and get the swf size -

Re: [flexcoders] Playing Mp4 audio with Sound class?

2009-01-15 Thread Nate Beck
Hey... another situation that can be solved with Merapi ( http://merapiproject.net/) I'm not on the Merapi team... but maybe I should be :D On Thu, Jan 15, 2009 at 1:45 PM, Charlie Hubbard charlie.hubb...@gmail.comwrote: No can do. I'm in an AIR app so I'm trying not to rely on the server

RE: [flexcoders] LocalConnection issue in AIR to AIR application

2009-01-15 Thread Kevin Benz
Have you looked to see how Arthropod does it? There is a unique identifier that is shared between Air apps to allow them to interact. http://arthropod.stopp.se/ KFB From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Pete Appleby Sent: Thursday, January

RE: [flexcoders] Flex 3 DragManager with dynamic image proxy

2009-01-15 Thread Tracy Spratt
I found this post just the other day, and it appears to bear on your issue: http://www.arlingtondev.com/thoughts/?p=17 But I cannot figure out how it would work. Particularly the line: var bmp:Bitmap = new Bitmap(Bitmap(this.content).bitmapData); More particularly, this expression:

[flexcoders] Padding in status message

2009-01-15 Thread Fabio Serra
Hi, is there a way to apply a padding-right to the status message in a Panel container? I have a custom Panel with an icon at the right corner and I want a padding to the status message. I tried using: mx:Panel status=Test test test statusStyleName=statusResult .statusResult {

[flexcoders] Re: disclosureOpenIcon/disclosureClosedIcon + Tree + change position

2009-01-15 Thread Amy
--- In flexcoders@yahoogroups.com, ilikeflex ilikef...@... wrote: Hi I have a Tree Control and i am using the disclosureOpenIcon disclosureClosedIcon styles. But i want to change the location where are the disclosureOpenIcon/ disclosureClosedIcon icons are displayed. I want to

[flexcoders] Date Datatype revisited

2009-01-15 Thread Gregory Kelley
Can anyone direct me to a resource that could help me determine why the following creates invalid date objects? The date objects have date parts filled with NaN. public static const MIN_DATE:Date = new Date(-Number.MAX_VALUE); public static const MAX_DATE:Date = new Date(Number.MAX_VALUE);

Re: [flexcoders] Re: Interfaces not working the way I understand anyway

2009-01-15 Thread Josh McDonald
Just the interfaces, but your modules should be using interfaces defined (and used) in the main app anyway, no? -Josh 2009/1/16 mmormando m...@mormando.com --- In flexcoders@yahoogroups.com, mmormando m...@... wrote: --- In flexcoders@yahoogroups.com, Alex Harui aharui@ wrote: Sounds

Re: [flexcoders] Why this error with getDefinitionByName?

2009-01-15 Thread Josh McDonald
Also, if you do that in a SWF that doesn't actually *use* the TextInput symbol, the class won't be compiled in. Try adding a reference to TextInput - not just an import, you actually have to have a reference. import mx.controls.TextInput; TextInput; should do it. -Josh 2009/1/16 Howard Fore

[flexcoders] Re: disclosureOpenIcon/disclosureClosedIcon + Tree + change position

2009-01-15 Thread ilikeflex
Hi Amy It helped very much. Before your pointer i was looking inside Tree Control instead of default itemRenderer. Thanks a lot. Regards ilikeflex --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, ilikeflex ilikeflex@ wrote: Hi I

[flexcoders] Using StyleSheet with TextField inside of a custom Label Component

2009-01-15 Thread devenhariyani
I've created a custom Label field, in which I dynamically apply a styleSheet, and then highlight a particular word or phrase in the text of the Label. I had to extend the Label class to do this, because the internal TextField obj is protected, and I needed access to that obj in order to apply

[flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread anuj181
Hi I have implemented Log Out functionality in my App, All I did is that as soon as user clicks Log Out button, the code is going to reload the whole App which will automatically take the user to the login screen as login is the first screen in my flex App. Now My probelm is that I need some

[flexcoders] Re: DataGrid selection w/ filtered contents

2009-01-15 Thread Tim Hoff
One way is to bind a variable to the selectedIndex of the DataGrid: [Bindable] private var selectedIndex:int = -1; mx:DataGrid selectedIndex={ selectedIndex }/ Then when you filter the collection: myCollection.filterFunction = myFilterFunction; myCollection.refresh(); selectedIndex =

[flexcoders] File changes when Exporting new Release Build

2009-01-15 Thread brucewhealton
Hello all, I hope I can explain my question clearly. Let's say that I create a Flex Project, Export a Release build and then incorporate it into a website. Then I realize I want to make a change to the application that I brought into my website. I will have to export the release build again.

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread Paul Andrews
When the user clicks logout, tell him that he is logged out, do any clearing up and after a short delay (so he can read the message), reload the application. - Original Message - From: anuj181 anuj...@gmail.com To: flexcoders@yahoogroups.com Sent: Thursday, January 15, 2009 11:46 PM

[flexcoders] Overriding margins using FlexPrintJob

2009-01-15 Thread Jeff Hindman
Flex AIR gurus, Is it possible to force printing to be borderless without setting it in the printer dialog box? I'm printing from an AIR application ... or at least trying to. I'm trying to duplicate the wallet-sized option of the Windows Photo Printing Wizard. Thanks, -- Jeff

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread anuj sharma
Hi Paul If thats the best we can do then I have already created the delay, i was thinking may be there is better way for achieving this. Thanks for your help Anuj On Thu, Jan 15, 2009 at 4:22 PM, Paul Andrews p...@ipauland.com wrote: When the user clicks logout, tell him that he is logged

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread Paul Andrews
- Original Message - From: anuj sharma To: flexcoders@yahoogroups.com Sent: Friday, January 16, 2009 1:30 AM Subject: Re: [flexcoders] Need some Help in implementing Log out functionality Hi Paul If thats the best we can do then I have already created the delay, i was

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread anuj sharma
Okay I Like it to reload the app but the main login screen of the app should have the label which is going to say that you have been logged out, that as what I was trying to achieve but Now what i did is the moment user clicks log out , I start the timer and pop up message logging out and after

Re: [flexcoders] Re: Accessibility stopped working

2009-01-15 Thread Guy Morton
And as mysteriously as it stopped working, it started working again *shrug* Guy On 16/01/2009, at 8:45 AM, Guy Morton wrote: To answer your other question, I also wondered if it was my client, so have checked the binary in Safari, Firefox and Opera and all agree there is no

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread Paul Andrews
I think that displaying a login page is a pretty good clue that the user is logged out. - Original Message - From: anuj sharma To: flexcoders@yahoogroups.com Sent: Friday, January 16, 2009 1:37 AM Subject: Re: [flexcoders] Need some Help in implementing Log out functionality

Re: [flexcoders] Need some Help in implementing Log out functionality

2009-01-15 Thread anuj sharma
I 120% agree with you Paul , but our User Interaction folks want more and more feedback for user which is little pain to implement with my deadline, So I guess I will end up challenging that feedback thing, but thanks for ur help Anuj On Thu, Jan 15, 2009 at 6:04 PM, Paul Andrews

Re: [flexcoders] AIR: Detecting when window resize is complete (mouse up)

2009-01-15 Thread Lushen Wu
I use mouseup in my application.. it seems to work for me. you coudl also play around with MOUSE_LEAVE and ROLL_OVER for the stage (activate the rollover listener for resize whenever you get a RESIZE event, then remove the listener when you have satisfactorily resized) Cheers, Lushen On

[flexcoders] Security sandbox violation on Bitmapdata.draw( rtmpVid ) despite crosspolicy.xml

2009-01-15 Thread jwebbsuccess
Take a look at this video player; notice there is an image on screen before the video begins playback: http://www.huffingtonpost.com/2009/01/14/obama-on-inauguration- you_n_157881.html I'm trying to create similar 'preview frame' functionality in my own custom-built Flex/AS3-based RTMP video

[flexcoders] Security sandbox violation on Bitmapdata.draw( rtmpVid ) despite crosspolicy.xml

2009-01-15 Thread jwebbsuccess
Take a look at this video player; notice there is an image on screen before the video begins playback: http://www.huffingtonpost.com/2009/01/14/obama-on-inauguration- you_n_157881.html I'm trying to create similar 'preview frame' functionality in my own custom-built Flex/AS3-based RTMP video

[flexcoders] Security sandbox violation on Bitmapdata.draw( rtmpVid ) despite crosspolicy.xml

2009-01-15 Thread jwebbsuccess
Take a look at this video player; notice there is an image on screen before the video begins playback: http://www.huffingtonpost.com/2009/01/14/obama-on-inauguration- you_n_157881.html I'm trying to create similar 'preview frame' functionality in my own custom-built Flex/AS3-based RTMP video

[flexcoders] Data Binding to Paged Data (w/ LCDS 2.5.1)

2009-01-15 Thread foobone9
Does anyone have any experience applying watch bindings to items that are paged and throw IPEs? I have a managed object that has relationships to other managed objects. I want to perform operations on the related items when they are pulled client side (from DGs or other view controls) and any

RE: [flexcoders] Using StyleSheet with TextField inside of a custom Label Component

2009-01-15 Thread Alex Harui
I'd start by overriding measure() and setting measuredWidth/Height appropriately based on the TextFIeld's textWidth/Height and some padding From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of devenhariyani Sent: Thursday, January 15, 2009 3:15 PM To:

[flexcoders] Illegal override of WindowedSystemManager in mx.managers.WindowedSystemManager

2009-01-15 Thread Jesse Warden
I keep getting this error for Flex 3.1 in AIR in the Flex Builder IDE 3.0.2. If I switch the SDK to 3.2, the app doesn't event launch. I've even tried targeting flash player 10 via -target-player=10.0.0, but no dice. Any clue? Here's some more debug info that appears in the Output panel that

[flexcoders] Re: Illegal override of WindowedSystemManager in mx.managers.WindowedSystemManager

2009-01-15 Thread Jesse Warden
I removed an SWC from my libs dir, a debug window component that has nothing to do with AIR and air related classes... and it fixed my problem. wtf? On Fri, Jan 16, 2009 at 1:20 AM, Jesse Warden jesse.war...@gmail.comwrote: I keep getting this error for Flex 3.1 in AIR in the Flex Builder IDE

Re: [flexcoders] Re: Illegal override of WindowedSystemManager in mx.managers.WindowedSystemManager

2009-01-15 Thread Doug McCune
Did the SWC include any classes that have the same names (but not the same package structure) as some built-in AIR or flash classes? I recently heard a report of someone unable to compile an app with player 10 for AIR 1.5 if the project had a custom class named Vector. Doug On Thu, Jan 15, 2009