[flexcoders] Re: FileReference to ByteArray

2008-09-30 Thread aytuganov
Thanks Jon. I discovered this issue and found the way to solve my task with java servlet. But now I have other problem. I can add listeners for COMPLETE, IO_ERROR,HTTP_STATUS, DataEvent.UPLOAD_COMPLETE_DATA events. But I can not find the way to receive a respond from servlet with the generated

[flexcoders] Resolved Re: Have a question about Weborb

2008-09-30 Thread bhaq1972
hi Tim I'd like to try out you've done. Is there a tutorial anywhere you can recomend. regadrs Bod --- In flexcoders@yahoogroups.com, timgerr [EMAIL PROTECTED] wrote: OK, I found out how to do this. When updating a row I have to specify the row id, I think that is all. That is how I got

[flexcoders] How to stop the updateDisplay event propagation?

2008-09-30 Thread Manu Dhanda
Hi, I am having mouse pointer flickering issue while one of the component is still preparing it's data. And that flicking is caused because I am assigning renderer's through a for loop to a grid. Can someone give me a pointer like what I need to do? Because I am really tired of looking for this

Re: [flexcoders] How to stop the updateDisplay event propagation?

2008-09-30 Thread jitendra jain
Provide with some test code..  Thanks, with Regards, Jitendra Jain - Original Message From: Manu Dhanda [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, 30 September, 2008 2:25:00 PM Subject: [flexcoders] How to stop the updateDisplay event propagation? Hi, I am

Re: [flexcoders] catching uncaught exception

2008-09-30 Thread Tom Chiverton
On Friday 26 Sep 2008, Stefaan_Nachtergaele wrote: Java has a method on the thread class: setUncaughtExceptionHandler(Handler). This way you can ensure that all exception will be handled. Does flex have something like this? No. -- Tom Chiverton Helping to efficiently orchestrate synergies

Re: [flexcoders] Upload file to server from AIR app

2008-09-30 Thread Tom Chiverton
On Monday 29 Sep 2008, gilbert_mizrahi wrote: I am getting a I/O Error: Error #2038. What's the full text and stack trace ? -- Tom Chiverton Helping to adaptively brand interfaces This email is sent for and on behalf of Halliwells LLP.

[flexcoders] Debug mode or normal mode?

2008-09-30 Thread Manu Dhanda
Hii guyz, How do u identify from inside your application whether your app is running in Debug Mode or Normal Mode? Thanks. -- View this message in context: http://www.nabble.com/Debug-mode-or-normal-mode--tp19739663p19739663.html Sent from the FlexCoders mailing list archive at Nabble.com.

Re: [flexcoders] Debug mode or normal mode?

2008-09-30 Thread jitendra jain
when your application is running on the server while in debug mode you will have the following address in your browser window   http://localhost:8081/myApp/main.html?debug=true   for normal mode it will be:   http://localhost:8081/myApp/main.html   and also right click on the flash player to see

[flexcoders] determine if image source exists

2008-09-30 Thread bhaq1972
How can I check if a the jpg source defined by a string really exists. eg var image1:Image = new Image(); var sHello:String = images/hello.jpg; if(sHello exists) // this is the bit i need help on { image1.source = sHello; } tia bod

Re: [flexcoders] determine if image source exists

2008-09-30 Thread jitendra jain
Use Embed keyword that will help embedding the image in a class while compiling.[Embed(assets/status.png)] private var status:Class;Thanks, with Regards, Jitendra Jain - Original Message From: bhaq1972 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, 30 September,

Re: [flexcoders] determine if image source exists

2008-09-30 Thread Paul Andrews
..but understand that it's no longer an external asset and will be embedded in your swf. If the png changes after you publish the swf, the change won't be picked up until you republish. - Original Message - From: jitendra jain To: flexcoders@yahoogroups.com Sent: Tuesday,

Re: [flexcoders] determine if image source exists

2008-09-30 Thread jitendra jain
Yes, Paul you are absolutely right. Please take a note of this while handling with images specially dealing with Embed keyword.  Thanks, with Regards, Jitendra Jain - Original Message From: Paul Andrews [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, 30 September, 2008

[flexcoders] Re: Problem referring to TextInput in itemRenderer

2008-09-30 Thread oneworld95
Hi, Tracy. I was hoping there'd be an answer! Here's the thing: The user first does a Browse to choose a file, then clicks the Upload button. Then, if the upload was successful, we refresh the datagrid. What if the user doesn't click Upload on that item, but instead scrolls the grid? I've found

[flexcoders] extend titlewindow ?

2008-09-30 Thread greg_knight_66
hi all, i am looking for an example illustrating how to extend/modify the header of the titlewindow. im assuming this is possible? specifically, i am looking to add a minimize button. thanks for your help. greg

[flexcoders] Re: Problem referring to TextInput in itemRenderer

2008-09-30 Thread oneworld95
[I tried using the Rich-Text Editor but somehow my reply didn't end up here. So a second attempt...] I've read up on the itemRenderers recycling issue here, - http://www.adobe.com/devnet/flex/articles/itemrenderers_pt1.html -

[flexcoders] Sound class - File headers, IOErrors, and 404s

2008-09-30 Thread horizens
Hi, all I'm developing an mp3 player for a rather large music search engine. The files that are played are found on the web, so it's increasingly difficult to gracefully determine to the validity of them. This file for instance: http://boxstr.com/files/2863558_hqzwk/lil%20wayne%20freestyle.mp3

Re: [flexcoders] determine if image source exists

2008-09-30 Thread Scott Melby
You can use a Loader and attempt a load as follows: /** * The Loader used to load images. */ private var _imageLoader:Loader = new Loader(); ... var urlRequest:URLRequest = new URLRequest(someURLString); try {

[flexcoders] Re: flex dynamic instantiation of classes or class names

2008-09-30 Thread flexaustin
Thanks for the advice. That one is good to remember. --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Don't store things in dictionary unless you need to use an object as the key (in most cases you don't). In fact I nearly only use dictionary when I need the weak

[flexcoders] Re: Upload file to server from AIR app

2008-09-30 Thread gilbert_mizrahi
I found the error is caused because var fileToUpload:File = new File(path+captureTest.flv); is expecting a File object and not a String (path+captureTest.flv). The problem I have is that I have no idea what constitutes a File Object. Using the File.browse the file selected passed an event and

[flexcoders] Re: TabNavigator - have to click twice on tab to display page

2008-09-30 Thread donald_d_hook
_rico - you may be right. Thanks! --- In flexcoders@yahoogroups.com, rleuthold [EMAIL PROTECTED] wrote: Maybe the issue is related to this bug - http://bugs.adobe.com/jira/browse/SDK-15974 _rico --- In flexcoders@yahoogroups.com, donald_d_hook donald_d_hook@ wrote: Tracy - thanks

RE: [flexcoders] extend titlewindow ?

2008-09-30 Thread Gregor Kiddie
If you subclass TitleWindow, titleBar is a protected variable, so you can do to it pretty much whatever you want. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577

[flexcoders] DataVisualization RSL Issues

2008-09-30 Thread Battershall, Jeff
Trying to use the datavisualization_3.1.0.2710.swz as an RSL. I've worked through the stream errors and I've used the most recent version avaiable from http://blogs.adobe.com/flex/archives/2008/09/updated_rsl_for_flex_data_v isu.html. However, row text is not rendering in an AdvancedDataGrid I'm

[flexcoders] Re: determine if image source exists

2008-09-30 Thread bhaq1972
thanks scott. btw. I can't use Embed because the images are only available at runtime. --- In flexcoders@yahoogroups.com, Scott Melby [EMAIL PROTECTED] wrote: You can use a Loader and attempt a load as follows: /** * The Loader used to load images. */ private

Re: [flexcoders] Debug mode or normal mode?

2008-09-30 Thread Manu Dhanda
It's not user. I want my application to be intelligent enough that it could get this knowledge whether it's running in debug mode or in normal mode. Thanks. jitendra jain wrote: when your application is running on the server while in debug mode you will have the following address in your

[flexcoders] Flex poster and Lynda.com free trial

2008-09-30 Thread hworke
Hello every one. Did you get a free 1 month lynda.com subscription offer flier with the flex 3 and AIR posters? If so, could you please let me know the URL where I need to go to redeem this new Flex 3 buyer offer. Unfortunately I lost my flier but I wrote down the offer code.

[flexcoders] Re: Upload file to server from AIR app

2008-09-30 Thread maximecowez
The File() constructor does take a String as an argument, but it has to be formatted correctly. Take a look in the docs: http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/filesystem/File.html#File() Max --- In flexcoders@yahoogroups.com, gilbert_mizrahi [EMAIL PROTECTED] wrote: I

Re: [flexcoders] Flex poster and Lynda.com free trial

2008-09-30 Thread Paul Andrews
Hmm. I've heard talk of this fabled Flex 3 poster yet haven't seen any info about how to get one. I had thought it might happen automagically when I upgraded to Flex 3 from Flex 2 (some time ago), but it didn't. Go on give me a clue.. ;-) Paul - Original Message - From: hworke [EMAIL

[flexcoders] AIR release build: how to deal with huge assets?

2008-09-30 Thread George
Hey guys, The AIR application I'm working with have huge assets, say, big number of videos more than two gigabytes. I tried to build a release version with everything but failed to install that .air. Maybe I should make a small .air not includes any assets. After it installed by clients, ask

[flexcoders] Resolved Re: Have a question about Weborb

2008-09-30 Thread timgerr
I am learning, what you want to do is download Weborb and put your browser on the root of that directory. There is an example tab that you will have to crate a database (with the given SLQ file). That is how I learned. I have to do a writeup on what I have learned to a group of people I will

[flexcoders] Resolved Re: Have a question about Weborb

2008-09-30 Thread timgerr
Mark I was looking for somthing like that last night at about 2am. I found somthing like that at http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/Flex/Q_23267099.html in the guys script. Mark, I cannot tell you how much thanks I want to give you. Thank, timgerr --- In

[flexcoders] Movable content

2008-09-30 Thread timgerr
I was wondering if there was a way to have flex content dynamically place it's self in the center of the screen no matter what the screen resolution is. Here is what I mean, I have a login pane that I want to be always be in center of the screen, can stuff dynamically move? Thanks for the

Re: [flexcoders] Movable content

2008-09-30 Thread Brendan Meutzner
verticalCenter=0 and horizontalCenter=0 On Tue, Sep 30, 2008 at 10:02 AM, timgerr [EMAIL PROTECTED] wrote: I was wondering if there was a way to have flex content dynamically place it's self in the center of the screen no matter what the screen resolution is. Here is what I mean, I have a

[flexcoders] Re: Movable content

2008-09-30 Thread timgerr
Thanks, That did it. --- In flexcoders@yahoogroups.com, Brendan Meutzner [EMAIL PROTECTED] wrote: verticalCenter=0 and horizontalCenter=0 On Tue, Sep 30, 2008 at 10:02 AM, timgerr [EMAIL PROTECTED] wrote: I was wondering if there was a way to have flex content dynamically place it's

[flexcoders] Re: Flex poster and Lynda.com free trial

2008-09-30 Thread nathanpdaniel
Lynda.com site: http://www.lynda.com/go/flex3 Fabled Flex 3 Posters: http://www.onflex.org/ted/2007/04/want-flex-api-posters.php :D --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: Hmm. I've heard talk of this fabled Flex 3 poster yet haven't seen any info about

Re: [flexcoders] Debug mode or normal mode?

2008-09-30 Thread Tom Chiverton
On Tuesday 30 Sep 2008, jitendra jain wrote: when your application is running on the server while in debug mode you will have the following address in your browser window http://localhost:8081/myApp/main.html?debug=true That's the default, but it could be anything. The URL parameter doesn't

Re: [flexcoders] URLRequest, ByteArray, and the 0 byte

2008-09-30 Thread Maciek Sakrejda
That is not what the documentation says: If the object is a ByteArray object, the binary data of the ByteArray object is used as POST data. For GET, data of ByteArray type is not supported. Also, data of ByteArray type is not supported for FileReference.upload() and FileReference.download().

Re: [flexcoders] Re: Flex poster and Lynda.com free trial

2008-09-30 Thread Vivian Richard
Hey Paul, Please take a look at Nathan's link. The posters do not come unless you request for it!!! You need your flex builder's serial number to request for it. Please go there and submit a request for it. By the way thanks Nathan. Regards, On Tue, Sep 30, 2008 at

Re: [flexcoders] URLRequest, ByteArray, and the 0 byte

2008-09-30 Thread Maciek Sakrejda
Ah, interesting. This seems related, but different. I was just setting URLRequest.data to a ByteArray directly. In your case, if I understand application/x-www-form-urlencoded correctly, then zero bytes should just be replaced with %00. Have you filed a bug? I'd like to add that to my Adobe JIRA

[flexcoders] More questions on weborb, creating my own services

2008-09-30 Thread timgerr
OK, so I have created this hello world service and then had WebOrb create the code I see in the actionscript comments This: (If using Model-View-Controller) - Modify the constructor of the class below to accept the controller object - Modify response handlers to pass return values to the

[flexcoders] Re: Debug mode or normal mode?

2008-09-30 Thread valdhor
Check out flash.system.Capabilities.isDebugger. --- In flexcoders@yahoogroups.com, Manu Dhanda [EMAIL PROTECTED] wrote: Hii guyz, How do u identify from inside your application whether your app is running in Debug Mode or Normal Mode? Thanks. -- View this message in context:

RE: [flexcoders] Re: passing complex objects through LocalConnection

2008-09-30 Thread Jonathon Stierman
More fun - Correction: If you are using a Loader to load in the receiver SWF (and the receiver SWF contains registerClassAlias code), then your sender SWF does not need the registerClassAlias code. If your SWFs do not load eachother, then you *do* need the registerClassAlias code in both

RE: [flexcoders] DataVisualization RSL Issues

2008-09-30 Thread Battershall, Jeff
I've narrowed this down a bit. First of all, the behavior is restricted to the ADG and to the rendering of row data. Secondly, the AGD seems to not render fonts that have been imported. If I reference a system font (without importing it) it renders. If I choose to import that font, it won't

[flexcoders] Print Image and Text Problem

2008-09-30 Thread wwwpl
I am trying to print a text header with an image control. I scale the image to fit the page, but the text gets scaled also. Is there a way to scale the image without the text scaling as well. I am printing as a bitmap. Here is the code: ?xml version=1.0 encoding=utf-8? mx:VBox

[flexcoders] [AD] SLF4Fx new project to integrate Flex logging api with Java logging api

2008-09-30 Thread dmotylev
SLF4Fx is an open source suite of Flex3 logging target that send messages to slf4fx server. The server writes all incoming messages to log using java Simple Logging Facade for Java (SLF4J). SLF4J works with all well-known java logging projects. SLF4Fx uses simple binary protocol to transfer

[flexcoders] Template Engine for Flash?

2008-09-30 Thread Weyert de Boer
Hello! Does anyone know some simple text-based template engine for Flash? I would like to generate some text files based on code snippets/templates in my Flash project. Only I am curious if anyone know some simple template engine written in ActionScript which might support token replacement

Re: [flexcoders] URLRequest, ByteArray, and the 0 byte

2008-09-30 Thread Troy Gilbert
Ah, interesting. This seems related, but different. I was just setting URLRequest.data to a ByteArray directly. In your case, if I understand application/x-www-form-urlencoded correctly, then zero bytes should just be replaced with %00. Have you filed a bug? I'd like to add that to my Adobe

[flexcoders] Re: Upload file to server from AIR app

2008-09-30 Thread gilbert_mizrahi
Ok. I was able to solve the problem creating a temporary newFile:File object and copying the content of the file I wanted to upload. Then, I upload the newFile. Thanks for the help. Gilbert --- In flexcoders@yahoogroups.com, maximecowez [EMAIL PROTECTED] wrote: The File() constructor does

[flexcoders] What would be the equivalent asp.net script of this PHP one (to upload a file)

2008-09-30 Thread gilbert_mizrahi
I have been playing around uploading files from Flex/AIR to php with this script: ?php $tempFile = $_FILES['Filedata']['tmp_name']; $fileName = $_FILES['Filedata']['name']; if(move_uploaded_file($tempFile, ./videos/ . $fileName)) { echo The file . basename(

Re: [flexcoders] URLRequest, ByteArray, and the 0 byte

2008-09-30 Thread Maciek Sakrejda
I'm not sure I agree--if it's a feature of the implementation that prevents valid use of the API, that sounds like a bug ;). As far as I can tell, a null byte should be encoded to %00 in the application/x-form-urlencoded scheme and is a valid character. If calling toString() on a ByteArray

Re: [flexcoders] What would be the equivalent asp.net script of this PHP one (to upload a file)

2008-09-30 Thread Fidel Viegas
On Tue, Sep 30, 2008 at 6:16 PM, gilbert_mizrahi [EMAIL PROTECTED] wrote: I have been playing around uploading files from Flex/AIR to php with this script: ?php $tempFile = $_FILES['Filedata']['tmp_name']; $fileName = $_FILES['Filedata']['name']; if(move_uploaded_file($tempFile, ./videos/

Re: [flexcoders] DataVisualization RSL Issues

2008-09-30 Thread Matt Chotin
Jeff, were you suing Modules as well? Is this your bug? http://bugs.adobe.com/jira/browse/FLEXDMV-1719 Matt On 9/30/08 9:37 AM, Battershall, Jeff [EMAIL PROTECTED] wrote: I've narrowed this down a bit. First of all, the behavior is restricted to the ADG and to the rendering of row data.

Re: [flexcoders] What would be the equivalent asp.net script of this PHP one (to upload a file)

2008-09-30 Thread Derrick Anderson
do u know where u posted this? On Tue, Sep 30, 2008 at 1:16 PM, gilbert_mizrahi [EMAIL PROTECTED] wrote: I have been playing around uploading files from Flex/AIR to php with this script: ?php $tempFile = $_FILES['Filedata']['tmp_name']; $fileName = $_FILES['Filedata']['name'];

[flexcoders] Re: Flex poster and Lynda.com free trial

2008-09-30 Thread nathanpdaniel
No problem! :D I've had them for a few months now but we're moving to a new office in the near future so they're still rolled up in the tube! One day they'll be out on the wall - I've got dedicated space in the new office! I'll be the cool kid with posters on the wall... :D --- In

[flexcoders] Format LI Bullets in htmlText

2008-09-30 Thread edlueze
I am trying to format a set of bullets within a Text control using htmlText but the bullets seem to be really far apart (think of a really big line-height). I can't seem to figure out how to modify the style (CSS or inline) for the LI tag so that the line-height is smaller. This is my MXML:

[flexcoders] Possible to get more information in a Send Failed error?

2008-09-30 Thread jennie_mai_nguyen
Hi there, When I'm throwing an exception in a web filter before the request gets processed by the Blaze MessageBroker servlet. I get a generic Send Failed error. Is it possible to somehow access this exception information? The work-around I have right now is using the pub/sub messaging

[flexcoders] Re: Template Engine for Flash?

2008-09-30 Thread wesley.petrowski
StringUtil.substitute might help with the token replacement. --- In flexcoders@yahoogroups.com, Weyert de Boer [EMAIL PROTECTED] wrote: Hello! Does anyone know some simple text-based template engine for Flash? I would like to generate some text files based on code snippets/templates in

RE: [flexcoders] Re: FileReference to ByteArray

2008-09-30 Thread Tracy Spratt
The uploadCompleteData event has a data property that contains whatever the server returns from the upload call. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aytuganov Sent: Tuesday, September 30, 2008 4:05 AM To:

RE: [flexcoders] Format LI Bullets in htmlText

2008-09-30 Thread Tracy Spratt
Look into the LEADING property. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of edlueze Sent: Tuesday, September 30, 2008 2:24 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Format LI Bullets in htmlText I am trying

[flexcoders] Re: More questions on weborb, creating my own services

2008-09-30 Thread valdhor
This seems to be a convoluted way to do this. I have created a simple example to show you how I use WebOrb. On my server I have the WebORB directory at the root level. In the Services directory I have a MyServices directory and in this directory I have a ValueObjects directory. For this example

RE: [flexcoders] Format LI Bullets in htmlText

2008-09-30 Thread Ryan Graham
Also, try condenseWhite=true on the Text control... HTH, Ryan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday, September 30, 2008 11:53 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Format LI

[flexcoders] Re: What would be the equivalent asp.net script of this PHP one (to upload a file)

2008-09-30 Thread gilbert_mizrahi
Hi Fidel, Thanks for the links. I did search before, but I don't know much about asp.net, so nothing looked like the equivalent to the php script I posted. Hence, my asking for help. Hi Derrick, Yes, I know this is a flex list. Even though it seems my question was not related to Flex, The

[flexcoders] Re: Format LI Bullets in htmlText

2008-09-30 Thread edlueze
Thanks guys! I was definitely barking up the wrong tree on that one. condenseWhite seems to have done the trick. The leading property had surprisingly little effect. --- In flexcoders@yahoogroups.com, Ryan Graham [EMAIL PROTECTED] wrote: Also, try condenseWhite=true on the Text control...

Re: [flexcoders] Re: Flex poster and Lynda.com free trial

2008-09-30 Thread Paul Andrews
Thanks guys, job done! Paul - Original Message - From: Vivian Richard [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, September 30, 2008 4:51 PM Subject: Re: [flexcoders] Re: Flex poster and Lynda.com free trial Hey Paul, Please take a look at Nathan's link. The

Re: [flexcoders] Adobe has no love for Mac users?

2008-09-30 Thread Arleston Lueders
Hey Fellas, Anyone figure this out? When the ColdFusion/Flex Application Wizard feature will be avaliable? Thanks! On Sun, Aug 31, 2008 at 10:08 AM, Alan [EMAIL PROTECTED] wrote: Thank you Howard That is all I needed. I don't mind so much if a feature is not implemented, I would;

[flexcoders] User credentials

2008-09-30 Thread markgoldin_2000
Is it possible to get user credentials or at least a user name within Flex application? Thanks

[flexcoders] Re: Hide a list item without changing (filtering) the dataprovider?

2008-09-30 Thread kyleashipley
Sorry to dredge up an old thread, but I'm having a similar problem that can't be helped by the links provided. In our system, we have a shared list collection that is filtered in different ways for different views, but no button to enact the filter. For example, we have a list of users that

Re: [flexcoders] User credentials

2008-09-30 Thread Douglas Knudsen
Might want to share what context you are posing here. Do you mean J2EE credentials? OD credentials? Cookie based? DK On Tue, Sep 30, 2008 at 4:06 PM, markgoldin_2000 [EMAIL PROTECTED]wrote: Is it possible to get user credentials or at least a user name within Flex application? Thanks

[flexcoders] Loading images fron cache ?

2008-09-30 Thread Stephane Guyot
Hi list, I'm currently using URLLoader and loadBytes API to avoid server side round-trip when fetching images , with HTTP get request. Everything works fine, but , actually the server doesn't put any headers cache directive, to allow expires in distant future.

[flexcoders] Re: User credentials

2008-09-30 Thread markgoldin_2000
I am looking for user's domain name. --- In flexcoders@yahoogroups.com, Douglas Knudsen [EMAIL PROTECTED] wrote: Might want to share what context you are posing here. Do you mean J2EE credentials? OD credentials? Cookie based? DK On Tue, Sep 30, 2008 at 4:06 PM, markgoldin_2000

RE: [flexcoders] Re: User credentials

2008-09-30 Thread Tracy Spratt
Users do not have domain names. Try again. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, September 30, 2008 4:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: User credentials I

Re: [flexcoders] Re: User credentials

2008-09-30 Thread Matt Chotin
Unless you mean NT domain, in which case you're definitely out of luck :-) On 9/30/08 2:30 PM, Tracy Spratt [EMAIL PROTECTED] wrote: Users do not have domain names. Try again. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Re: Hide a list item without changing (filtering) the dataprovider?

2008-09-30 Thread Scott Melby
iirc what I usually do is store my master list data (the one in my model) in an appropriate collection (more on this later). I then create a second ArrayCollection in each view that needs to filter and set the source of that one to the model collection (property that exposes an Array). I

[flexcoders] html and swf file gone

2008-09-30 Thread flexaustin
So I was working on my project and flex builder 3 started acting funny. Hit one keystroke and it would type 10 more and I keep getting really weird errors when nothing was wrong with the file. So I did project clean. Now my .html and .swf in bin-debug is gone and I can't build another one?

RE: [flexcoders] html and swf file gone

2008-09-30 Thread Ryan Graham
Clean deletes all the files in the output bin and replaces them with fresh copies on build (very useful for externally loaded assets like images and xml files that may be updated during dev). You just need to get your project back to a point where the compiler can successfully complete a build.

RE: [flexcoders] Re: User credentials

2008-09-30 Thread Tracy Spratt
Jeez, yeah I didn't even think of that. Come on Mark, tell us what you want in a bit more detail, please? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Tuesday, September 30, 2008 5:20 PM To:

RE: [flexcoders] html and swf file gone

2008-09-30 Thread Tracy Spratt
Yes, look at the Problems pane. It is at menu, Windows, Problems. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Graham Sent: Tuesday, September 30, 2008 6:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders]

Re: [flexcoders] Re: Hide a list item without changing (filtering) the dataprovider?

2008-09-30 Thread Josh McDonald
Also something I do (and recommend), although I use ListCollectionView rather than ArrayCollection, as you don't need the (admittedly small) overhead of the internal ArrayList. -Josh On Wed, Oct 1, 2008 at 7:51 AM, Scott Melby [EMAIL PROTECTED] wrote: iirc what I usually do is store my master

[flexcoders] how do I send a custom event from an application to a component?

2008-09-30 Thread luvfotography
Hi, I'm able to send a custom event from a component to an application, but how do I send a custom event from the application to a component? example code: mycomp.mxml: ?xml version=1.0 encoding=utf-8? !--this is myapp.mxml-- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] how do I send a custom event from an application to a component?

2008-09-30 Thread Scott Melby
Rather than sending an event to a component, what you do is declare a public function in your component, then call it from the application. so... in myComp public function someFunction(var param1:type):void { //do stuff } and out in your main code you need to give your myComp an id...

Re: [flexcoders] Loading images fron cache ?

2008-09-30 Thread Troy Gilbert
Does the URLLoader or URLStreamLoader be able to extract the image directly from cache , when images are in cache with expires date in the future ? When the Flash Player is running in the browser it uses the browser's network stack for all HTTP requests. So, it's up to the browser whether or

[flexcoders] images not appearing in AIR app

2008-09-30 Thread Andrew Wetmore
Hi: I have an AIR application going into alpha test. Images embedded in buttons appear fine, but several images that I display using the mx:Image component are not appearing. This started on the Mac a colleague uses, and I thought it was maybe a lab issue; but now it is happening in the installed

RE: [flexcoders] how do I send a custom event from an application to a component?

2008-09-30 Thread Tracy Spratt
But you can dispatch an event from Application and listen for it in a component. Code in the component: Application.application.addEventListener(EventDispatchecInMainapp, listenerInThisComponent); Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: Strange List Behavior

2008-09-30 Thread Ben
I was wrong. Changing the firefox property I mentioned does not fix anything. --- In flexcoders@yahoogroups.com, Ben [EMAIL PROTECTED] wrote: Where should I report this behavior on the adobe website? Should I report it somewhere else too? --- In flexcoders@yahoogroups.com, Ben

Re: [flexcoders] URLRequest, ByteArray, and the 0 byte

2008-09-30 Thread jitendra jain
Please check the following and it will clear what i need to say..   The way in which the data is used depends on the type of object used: * If the object is a ByteArray object, the binary data of the ByteArray object is used as POST data. For GET, data of ByteArray type is not supported.

[flexcoders] Re: how do I send a custom event from an application to a component?

2008-09-30 Thread EddieBerman
In this case, Application.application.addEventListener... won't work. This will, though: parentApplication.addEventListener(appEvent, appEventHandler); -Eddie --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: But you can dispatch an event from Application and listen

[flexcoders] FileReference upload to multiple request

2008-09-30 Thread limhy0306
Hi, Currently, I am trying to upload a file to multiple URLRequest. - FileReference.upload(URLRequest) is called several times; one after another when the upload has finished for the previous one. However I found that the 2nd time the upload occurs, the Event.COMPLETE is not getting

[flexcoders] Re: More questions on weborb, creating my own services

2008-09-30 Thread timgerr
Thanks for the reply, can you tell me what the RemoteClass metadata looks like, this is an entry in your weborb\Weborb\WEB-INF\flex\remoting-config.xml??? Thanks for the help, I just want to learn. timgerr Note the RemoteClass metadata. This tells flex the location of the class on the server