[flexcoders] Re: repeater with TextArea -- TextArea not sizing to internal text?

2008-04-03 Thread Dmitri Girski
only. > Also, since the resize happened in creationComplete, it will NOT work in > an item renderer or in a Repeater with recycleChildren="true". there is also no guarantee that data binding will happen before the creationComplete event, so you have to override set text method as well. Dmitri.

[flexcoders] Re: repeater with TextArea -- TextArea not sizing to internal text?

2008-04-03 Thread Dmitri Girski
By a coincidence I created yesterday a component you are talking about. http://mitek.id.au/flex/ElasticTextField.as The important thing is - it works in Flex "Printing Plant/Engine". PS This is a readonly thing as my primary goal was printing. I tried to use TextArea - it does not work in printi

Re: [flexcoders] Save an image file from Flex application to my local disc

2008-04-03 Thread Anirudh Sasikumar
Hi, On Fri, Apr 4, 2008 at 10:45 AM, Remya <[EMAIL PROTECTED]> wrote: > > My Flex application displays several pictures after a search. I would > like to save a particular selected image to my local disc, on the > click of a button "Save". > > How can i proceed with this matter? > You'll have

[flexcoders] Re: How to set the datetime format in datagrid?

2008-04-03 Thread dougco2000
One way to display a human readable date in a datagrid and have it be sortable, is to use labelFunction="{convertDate}" and have the server send over unix milliseconds. This is important if you want to be able to properly sort the column. A sample function looks like: private function convertDate

[flexcoders] Re: flex-config vs .actionScriptProperties

2008-04-03 Thread Bjorn Schultheiss
yes, thanks bjorn --- In flexcoders@yahoogroups.com, "Bjorn Schultheiss" <[EMAIL PROTECTED]> wrote: > > From the docs regarding compiler options precendence > > Flex Builder > Default settings > Configuration file specified by > load-config option > Options panel > > Does that mean that if

[flexcoders] Save an image file from Flex application to my local disc

2008-04-03 Thread Remya
My Flex application displays several pictures after a search. I would like to save a particular selected image to my local disc, on the click of a button "Save". How can i proceed with this matter? Thanks Remya

[flexcoders] Re: flex-config vs .actionScriptProperties

2008-04-03 Thread Bjorn Schultheiss
>From the docs regarding compiler options precendence Flex Builder > Default settings > Configuration file specified by load-config option > Options panel Does that mean that if the framework is removed in project > properties > library path it overrides the settings in flex-config?

[flexcoders] flex-config vs .actionScriptProperties

2008-04-03 Thread Bjorn Schultheiss
Is it possible to remove the flex framework linkage from Project > Properties > Library Path and add it to a custom flex-config.xml within a Flex Library Project.. Basically i want to control the build via the options in the flex-config reducing the dependencies on the ide options.

RE: [flexcoders] After exiting Fullscreen flex doesn't repaint

2008-04-03 Thread Alex Harui
Try a simpler test to see if you have the same problem. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Charlie Hubbard Sent: Thursday, April 03, 2008 8:45 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] After exiting Fullscreen

Re: [flexcoders] Where is adobe? Come to universities!

2008-04-03 Thread Jon Bradley
On Apr 3, 2008, at 11:58 PM, Sherif Abdou wrote: Most Flash/Flex books do not even explain namespaces, how many bytes are int,uint and bitwise operations etc... I had to read a C+ + book first to actually be able to use ActionScript. Also there needs to be scenarios of say when it is better

Re: [flexcoders] Where is adobe? Come to universities!

2008-04-03 Thread Sherif Abdou
Adobe needs to have a Book for Flex/Flash sort of like C++ books that teach you how to program from 0 to 100 and i think university adoption should not be a problem. Most Flash/Flex books do not even explain namespaces, how many bytes are int,uint and bitwise operations etc... I had to read a C+

[flexcoders] After exiting Fullscreen flex doesn't repaint

2008-04-03 Thread Charlie Hubbard
Hi, I'm having problems after leaving full-screen in that my application doesn't repaint. I get a grey rectangle that I have to click or scroll the browser frame in order to get it to redraw. I tried executing an invalidateDisplayList() on my screen, but it didn't work. The only thing that seem

RE: [flexcoders] LCDS / Blaze Proxy service external proxy

2008-04-03 Thread Tim Stewart
I've looked a little more into this in the BlazeDS source, and it seems it's not possible to specify exclusions to the external proxy policy. I've logged a minor enhancement request at bugs.adobe.com (BLZ-120) along with details of Blaze classes affected. Cheers, Tim _

FW: [flexcoders] Re: How to group the displayObjects

2008-04-03 Thread Jeff Tapper
The Flex 3 version of the book is indeed out now! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Thursday, April 03, 2008 2:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to group the displayObjects --- In flexcoders@yahoogroups.com

RE: [flexcoders] Event Debugging

2008-04-03 Thread Alex Harui
You can subclass and override addEventListener and track who is listening. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ilikeflex Sent: Thursday, April 03, 2008 4:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Event Debugg

RE: [flexcoders] Font.registerFont() throws error when called from partitioned ApplicationDomain

2008-04-03 Thread Alex Harui
Flex generally won't work in distinct appdoms From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mydarkspoon Sent: Thursday, April 03, 2008 7:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Font.registerFont() throws error when c

RE: [flexcoders] Overriding a rest parameter

2008-04-03 Thread Alex Harui
Something like: override function foo(... rest):void { rest[1] = "bar' super.foo.apply(this, rest) } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of caffeinewabbit Sent: Thursday, April 03, 2008 8:06 AM To

RE: [flexcoders] Add text field to CursorManager "busy cursor"

2008-04-03 Thread Alex Harui
I don't know for sure that it is doable, but you should be able to find the cursor in systemManager.cursorChildren and hack it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dnk Sent: Thursday, April 03, 2008 8:09 AM To: flexcoders@yah

[flexcoders] Re: How to get flex popup modal dialog to fade entire browser window?

2008-04-03 Thread janenemcc2424
Thanks, Bob. Do you know of any examples of this that I could use to get started? I'm trying to learn too many things at once and it's confusing the heck out of me. Janene --- In flexcoders@yahoogroups.com, "Bob Wohl" <[EMAIL PROTECTED]> wrote: > > Well, unfortunately you will need to use javasc

RE: [flexcoders] Re: How can I stop/kill a running SWF which was loaded with SWFLoader ?

2008-04-03 Thread Alex Harui
It will not stop the SWF, just dereference the SWF bytes. If the SWF has timers, enterFrame events, is playing video or sounds or things like that it won't forcibly unhook those From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of helihobby

Re: [flexcoders] Unable to send HTTP parameters via Socket Digest Auhtorization

2008-04-03 Thread Dave Cragg
On 3 Apr 2008, at 22:11, e_baggg wrote: > anyone see anything wrong with this?: > > POST /xmsv2/api/usermgmt/createUser.cmd HTTP/1.0 > Host: www.example.com I don't think HTTP/1.0 supports the Host header. Can you try with HTTP/ 1.1 > > Authorization: Digest username="dev", realm="myapp", > no

[flexcoders] Re: Flex 3.0 + Artificial Intelligence

2008-04-03 Thread navice32
Your Summary has only "Specialities" not the actual summary. In any case, it is our problem ... will fix it an push to PROD tonight. Thanks for pointing it out. Jindrich --- In flexcoders@yahoogroups.com, "Merrill, Jason" <[EMAIL PROTECTED]> wrote: > > The "import from LinkedIn profile" featur

[flexcoders] .errorTip borderStyle has no effect when using Tooltip custom borderSkin. BUG?

2008-04-03 Thread Thibaud Van Vreckem
Tooltip and .errortip styling are crap. when using: ToolTip { borderSkin: Embed("/assets/skins/tooltip/ToolTip_borderSkin.png"); } then .errorTip is always using Tooltip borderSkin and most errorTip style attribute are simply ignored. I did try forcing it with this, with no success .errorT

RE: [flexcoders] Embedded fonts + modules = weirdness

2008-04-03 Thread Alex Harui
OK, I also was reminded that you might need to bake a DataGridItemRenderer into the module with the font. I'll assume you have it working for now. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Clinkinbeard Sent: Thursday, April 03

RE: [flexcoders] repeater with TextArea -- TextArea not sizing to internal text?

2008-04-03 Thread Alex Harui
Use Text and not TextArea? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Thursday, April 03, 2008 9:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] repeater with TextArea -- TextArea not sizing to internal t

RE: [flexcoders] How to set the datetime format in datagrid?

2008-04-03 Thread Alex Harui
There should be an example somewhere of hooking up a Formatter to a column's labelFunction From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Thursday, April 03, 2008 12:55 PM To: flexcoders@yahoogroups.com Subject: [flex

RE: [flexcoders] can you translate keyCode or charCode from number into letter?

2008-04-03 Thread Alex Harui
fromCharCode From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of blc187 Sent: Thursday, April 03, 2008 1:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] can you translate keyCode or charCode from number into letter? Is it poss

Re: [flexcoders] How to get flex popup modal dialog to fade entire browser window?

2008-04-03 Thread Bob Wohl
Well, unfortunately you will need to use javascript along with CSS and then have your embeded content in that. Flex does not natively do this w/o the other 2. Using lightbox you can embed your swf in one of their containers and use flex to do the fade effect for you if so desired. B. On Thu, Apr

Re: [flexcoders] Re: actionScriptProperties

2008-04-03 Thread Bjorn Schultheiss
nice one : ) thanks. On 04/04/2008, at 1:45 AM, Paul Spitzer wrote: that was supposed to read, eclipse / FB, as in Flex Builder. Paul Spitzer wrote: > In eclipse / FP go to Window > Preferences > General > Workspace > > Linked Resources > > Create a new resource, CUSTOM_VAR, or whatever you

Re: [flexcoders] Where is adobe? Come to universities!

2008-04-03 Thread Matt Chotin
So we're actually in the middle of rolling some of this out too :-) In North America today we can offer some posters for you to help recruit people to an event, we can give you an honorary title of "Adobe Community Representative" (or something like it) and we can also offer some level of reimb

RE: [flexcoders] repeater

2008-04-03 Thread Tracy Spratt
Not I. Post the code containing the offending line. Also, delete the offending code and do Project, clean. And please do not hijack threads. Start your own new thread. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] WS call returning error from Flex 2

2008-04-03 Thread Tracy Spratt
Event though it is an update call, is the web service returning anything to the client? Also, add a FaultEvent listener. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mailamannow Sent: Thursday, April 03, 2008 4:39 AM To:

RE: [flexcoders] help with databinding -- repeater listening for event?

2008-04-03 Thread Tracy Spratt
I may not be understanding correctly, but if you re-assign the Repeater.dataProvider, the repeater should re-execute. You should not have to do anything else. Are you re-assigning the dataProvider? Or are you counting on the binding updating the dataProvider? If the second, verify that t

RE: [flexcoders] repeater with TextArea -- TextArea not sizing to internal text?

2008-04-03 Thread Tracy Spratt
Well, TextArea does not automatically resize to its content height. I think you will need to extend that component to do that. I did something like this for the Text component and will post the code below. Warning, I have not used this in a year, and post it as an example only. Also, since the re

[flexcoders] Re: Flex 3.0 + Artificial Intelligence

2008-04-03 Thread navice32
Good point ... we are currently focusing on the US market but you can still register to see it inside. For ZIP you can use 02118 - Boston, MA. --- In flexcoders@yahoogroups.com, VELO <[EMAIL PROTECTED]> wrote: > > Non US resident can't register. > > Zip code is required. Any alternative? > >

RE: [flexcoders] Re: How to Clear/Reset Item Renderers When the Data Provider Changes?

2008-04-03 Thread Tracy Spratt
How are you creating the empty object, and how are you re-assigning the dataProvider? This would be the first case I have heard of where re-assigning a dataProvider failed to completely re-render a DG. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: Problem with DataGrid itemFocusIn event

2008-04-03 Thread Tracy Spratt
Maybe I am misunderstanding, but the selected "row" is the DataGrid.selectedItem. The DG need not be editable. This property changes when the user clicks on a row. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen More

RE: [flexcoders] Re: Menu System

2008-04-03 Thread Tracy Spratt
Result is already at the root of the xml. In your handler, use toXMLString() to verify your format. Try: mainAppMenuBar.dataProvider = resultXML.menuitem; Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David C. Moody

Re: [flexcoders] Re: Flex Webcam Recorder

2008-04-03 Thread Bob Wohl
I'm thinking the same since it is the client side. The methods would be the same, only the server side changes. Though I would check Red5 and WoWza's documentation to find out for certain. A couple of the people from both are on a few of these flash/flex list. Maybe they will chime in :) B. On T

[flexcoders] Re: How to Clear/Reset Item Renderers When the Data Provider Changes?

2008-04-03 Thread dougco2000
I had success with the dataChange event handler, see: http://blog.dougco.com/coding/flex/datagrid-with-multiple-pulldowns/ --- In flexcoders@yahoogroups.com, "Paul Whitelock" <[EMAIL PROTECTED]> wrote: > > After a bit more investigation it appears that it might be a redraw > issue since the last

Re: [flexcoders] How to Clear/Reset Item Renderers When the Data Provider Changes?

2008-04-03 Thread Douglas Knudsen
Are you overriding the data mutator in your itemRenderer? Sounds like maybe a re-use issue. Read up on this stuff on Alex Harui's blog. Sorry no link at hand but Google will hit on it I'm sure. DK On 4/3/08, Paul Whitelock <[EMAIL PROTECTED]> wrote: > I just tried removing the DataGrid from th

Re: [flexcoders] How to set the datetime format in datagrid?

2008-04-03 Thread Muzak
Look up DataGridColumn.labelFunction and DateFormatter in the docs. http://livedocs.adobe.com/flex/3/langref/mx/controls/dataGridClasses/DataGridColumn.html http://livedocs.adobe.com/flex/3/langref/mx/formatters/DateFormatter.html - Original Message - From: "markflex2007" <[EMAIL PROTECT

Re: [flexcoders] Can embedded fonts have tracking and word spacing?

2008-04-03 Thread Daniel Freiman
The TextFormat, TextRange, and StyleSheet classes enumerate all your options. Each class has the same capabilities as the others so just pick the one you're most comfortable with. As for what the Flash Player has available, it has letterspacing (I think this is the same as tracking) and it suppor

[flexcoders] How to get flex popup modal dialog to fade entire browser window?

2008-04-03 Thread janenemcc2424
I have a flex app embedded in an html page and within the app I have a need to pop-up some content, in a flex application component. I need the pop-up to fade out the entire html page, however, which the flex pop-up does not do: it fades only the flex app. I've experimented with the javascript "L

[flexcoders] Can embedded fonts have tracking and word spacing?

2008-04-03 Thread Dennis Falling
I'm trying to make fonts more readable by adding character spacing to them. Is this possible? It's an embedded font, but I haven't been able to find a list of what parameters are valid when embedding a font. Thanks!

Re: [flexcoders] Any way to make legend scroll vertically?

2008-04-03 Thread Dennis Falling
In case anyone else hits this... To make a legend scroll, just give it an unbounded width/height and wrap it in a canvas that has a bounded width and height. This will trigger the canvas to create scrollbars when necessary. On Wed, Mar 26, 2008 at 1:31 PM, dfalling <[EMAIL PROTECTED]> wrote: >

Re: [flexcoders] Browse Button Equivalent in Flex

2008-04-03 Thread Remya Subramanyam
Does any one have any information regarding the usage of browse button in Flex? Please help. Thanks, Remya - Original Message From: Remya <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, 2 April, 2008 9:28:53 PM Subject: [flexcoders] Browse Button Equivalent in Flex

Re: [flexcoders] Close an application window

2008-04-03 Thread Remya Subramanyam
But will I be able to run the .swf file then? I guess it works only if I run the .html file. Thanks Remya - Original Message From: Jehanzeb Musani <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 3 April, 2008 12:43:00 AM Subject: Re: [flexcoders] Close an appli

Re: [flexcoders] Re: Export release build copying PHP files

2008-04-03 Thread Troy Gilbert
> I think that I know why it is happening - when I do the Export release > build this smart thing also copies ./php directory from bin-debug. If you look through the bugs related to "Export Release Version" (the component your bug is filed under) you'll see one from the beta period (from an inter

[flexcoders] Unable to send HTTP parameters via Socket Digest Auhtorization

2008-04-03 Thread e_baggg
I am using flash.net.Socket to write HTTP requests and receive HTTP responses. I'm using Tomcat Digest Authorization and everything works fine for logging in and retrieving data. However, any request that requires parameters does not work. I am using Ethereal to sniff a valid requests and trying to

[flexcoders] Re: Problem with DataGrid itemFocusIn event

2008-04-03 Thread Stephen More
Yes, a mx.events.ListEvent should be used instead of a mx.events.DataGridEvent; On Thu, Apr 3, 2008 at 1:33 PM, Stephen More <[EMAIL PROTECTED]> wrote: > Is there anyway to get the selected row from a DataGrid without it > being editable ? > > It seems others have had this problem also: >

[flexcoders] Re: Flex Webcam Recorder

2008-04-03 Thread Gilbert Mizrahi
How that code will differ if using Red5 o Wowza? Gilbert The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any act

[flexcoders] Need some help with charts

2008-04-03 Thread Phill B
I'm trying to make a chart that will show a total for each month. I'm trying to do this with Flex 3 Pro and CF 8 Enterprise. I have a CFC that can return the data for the chart in a 2D array or XML by using it as a remote object. The CFC works fine but I cant get the results of the CFC into a chart

[flexcoders] Re: Menu System

2008-04-03 Thread David C. Moody
Here's the XML the script returns: This is what I have in my function to assign the dataprovider: var resultXML:XML = new XML(evt.result); Alert.show(resultXML.toString()); mainAppMenuBar.dataProvider = resultXML.menuitems.menuitem; But all I get with thi

[flexcoders] can you translate keyCode or charCode from number into letter?

2008-04-03 Thread blc187
Is it possible to capture a keyboard event and tell which letter key was pressed? The KeyboardEvent has a charCode and keyCode but these are numbers, is there a way to associate them with the specific letter they represent? For example, I want to trace out which letter was pressed on key_down h

Re: [flexcoders] Question regarding FLex JVM termination

2008-04-03 Thread cool buddy
i got it working..i was trying to embed a flash movie in the main application.so the flex builder got terminated. When i removed the movie it was working fine... So anyinsights into it. why this happens?? - Original Message From: cool buddy <[EMAIL PROTECTED]> To: flexcoders@yahoogrou

[flexcoders] Question regarding FLex JVM termination

2008-04-03 Thread cool buddy
Hello all, I am running eclispe and Flex builder on local machine. Suddenly Flex builder got terminated\ and gave the following message JVM terminated . Exit code=1 C:\ProgramFiles\Adobe\FlexBuilder 3\jre\bin\javaw.exe -xms128m -xmx512m -XX:MaxPermSize=256m -XX:PermSize=64m -Djava.net.prefrIPv4

[flexcoders] Re: Export release build copying PHP files

2008-04-03 Thread Dmitri Girski
I think that I know why it is happening - when I do the Export release build this smart thing also copies ./php directory from bin-debug. There is no setting for that or warning. And why not to copy ./config, ./images? Good idea, but implemented in Apple way - "we know better what you need" Dmi

[flexcoders] Need help to recreate a Flash layout/component in Flex

2008-04-03 Thread oneproofdk
Hi. I'm currently looking into converting a existing Flash app into a Flex app. In this Flash app, there is a specific layout that I would like to emulate. Have a look at The object is something like a filemanager, where the user can see what status eac

[flexcoders] How to set the datetime format in datagrid?

2008-04-03 Thread markflex2007
Hi, I have a program the read datetime fields for SQL Server and show in datagrid. I do not know how to set the date format in datagrid (mx:DataGridColumn), Please help me. Please let me know if you have demo link. Thanks.

Re: [flexcoders] File upload to amazon S3 from Flex

2008-04-03 Thread Peter Connolly
Have you taken a look at the Salsa Air application? http://download.macromedia.com/pub/labs/air/sample_apps/b1/Salsa.air It uploads files to Amazon S3.

[flexcoders] Does the defaultValue parameter in the LCDS getItem call work?

2008-04-03 Thread Kevin
I am trying to use the defaultValue parameter in the DataServices getItem call in actionscript. public function getItem(identity:Object, defaultValue:Object = null):ItemReference As far as I can tell from the docs it should persist a new object if the id that the getItem searches for is not fou

[flexcoders] Does the defaultValue parameter in the LCDS getItem call work?

2008-04-03 Thread Kevin
I am trying to use the defaultValue parameter in the DataServices getItem call in actionscript. public function getItem(identity:Object, defaultValue:Object = null):ItemReference As far as I can tell from the docs it should persist a new object if the id that the getItem searches for is not fou

Re: [flexcoders] Where is adobe? Come to universities!

2008-04-03 Thread Daniel Freiman
All of the on-campus Microsoft events I remember were official Microsoft events. Even if it was just an alumn coming back for a visit and deciding to take the extra hour to talk about their current project, Microsoft would still give them some official backing. If I visit school and want to talk a

[flexcoders] repeater

2008-04-03 Thread Willy Ci
did anyone ever see this error message? Type was not found or was not a compile-time constant: repeater. [Generated code (use -keep to save): Path: repeater-generated.as, Line: 205, Column: 14] the repeater just not working, and this error message show up all the time, even I delete the repeater

[flexcoders] Re: How to Clear/Reset Item Renderers When the Data Provider Changes?

2008-04-03 Thread Paul Whitelock
I just tried removing the DataGrid from the display list and then immediately re-adding it. The "ghost data" did not go away, so perhaps it's not a redraw issue. I can't understand why the last item edited in the grid sticks around when the data provider is changed. --- In flexcoders@yahoogroups

[flexcoders] Re: Export release build copying PHP files

2008-04-03 Thread Dmitri Girski
Hi Troy, My *.jpgs/gifs went haywire as well. Cheers, Dmitri. > > You're telling me. And its not all files, it's only PHP files.

[flexcoders] Re: How to group the displayObjects

2008-04-03 Thread Amy
--- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > I can't really take the time to walk you through this. Hopefully others > can help. The dragImage is basically a copy of an item, or a container > that contains multiple copies of an item. You can draw just about >

[flexcoders] Re: Partial result from HTTPService call

2008-04-03 Thread Dmitri Girski
Hmmm, I just re-read your post and realised that you are getting the binary data via the HTTPService. I am not sure if you can do this. If I were you I would save the generated image as .jpg file on server in some temp location and then return the path+name of it to the client. And then just set

[flexcoders] Re: How To Refresh the Date Field...

2008-04-03 Thread Dmitri Girski
Hi Ganesh, If you talking about DateChooser class, then you have to reset hours, mins, seconds and ms to 0 in source Date object. Otherwise it won't display the current date. NB I wonder why this is a undocumented feature. Cheers, Dmitri. --- In flexcoders@yahoogroups.com, Ganesh Suyampira

[flexcoders] Re: How to Clear/Reset Item Renderers When the Data Provider Changes?

2008-04-03 Thread Paul Whitelock
After a bit more investigation it appears that it might be a redraw issue since the last cell that is clicked is the one where the "ghost data" appears. Is there a way to force the DataGrid and all custom renderers to redraw? I've tried calling validateNow() on the DataGrid but it did not have an

[flexcoders] Re: Partial result from HTTPService call

2008-04-03 Thread Dmitri Girski
Hi Tracy, I can assure you, that it is exactly the same. I use it everywhere in AS and never had a problem - it is always the same as event.result. Cheers, Dmitri. --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > It is in the docs somewhere, but I couldn't find i

[flexcoders] Re: Menu System

2008-04-03 Thread David C. Moody
OK guys, in my example I'm returning XML to set as the dataProvider for my menuBar Example of what's being returned: But when I set this string as the dataprovider, the button on the menubar is what you see above, then it actually has the menu items when you click on the button. Not exactly

Re: [flexcoders] Loading XML in preloader/ before application onComplete

2008-04-03 Thread Varun Shetty
Wow, that is pretty descriptive... thank you very much Rico...! umm.. so Extending the downloadprogressbar class is the way... I will try it out in sometime. Thank you very much for your help.. regards, Varun Shetty On Thu, Apr 3, 2008 at 1:26 PM, Rico Leuthold <[EMAIL PROTECTED]> wrote: >

[flexcoders] Re: Problem with DataGrid itemFocusIn event

2008-04-03 Thread Stephen More
Is there anyway to get the selected row from a DataGrid without it being editable ? It seems others have had this problem also: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg41468.html https://bugs.adobe.com/jira/browse/SDK-11690 -Thanks Flex newbie

Re: [flexcoders] Menu System

2008-04-03 Thread justSteve
I have similar needs - my menu items' skin depend on each user's completion status. I've been generating the menu at the back-end after the login validation - but mine isn't a large, multi-user app. Looking forward to how other approach it. On Thu, Apr 3, 2008 at 11:17 AM, David C. Moody <[EMAIL

[flexcoders] Re: FLEX Images sandbox error

2008-04-03 Thread Todd
I don't have specifics for #2 right now, but regarding #1, the cross-domain file will need to exist for the servers t hat are actually serving the images. I seem to remember something similar happening over at Flickr 6 minths ago where the API had a cross-domain, but none of the image farms did.

Re: [flexcoders] Loading XML in preloader/ before application onComplete

2008-04-03 Thread Rico Leuthold
Extend the DownloadProgressBar Class (name it e.g myPreloader) and override the preloader: override public function set preloader(value:Sprite):void { value.addEventListener(FlexEvent.INIT_COMPLETE, FlexInitComplete); // I added my download function to the INIT_COMPLETE event }

[flexcoders] Menu System

2008-04-03 Thread David C. Moody
Hi guys, I'm developing a pretty large multi-user application. I need a good menu system for and was looking for some help, maybe someone has come up with something they'd like to share or at least has some ideas. The general menu will be the same for everyone. But some users will have acces

Re: [flexcoders] Where is adobe? Come to universities!

2008-04-03 Thread Matt Chotin
Hi all, We definitely hear you. Adobe is definitely interested in making larger impact in education when it comes to our developer offerings. We just hosted an event for universities here in San Francisco that had very good attendance. Additionally we are beginning to reach out to a number o

Re: [flexcoders] Flex Webcam Recorder

2008-04-03 Thread Bob Wohl
You will need to have FMS installed and attach the camera to the netStream with a param "record" here's some really awesome code to help you get started: http://www.pmko.net/category/flash-media-server/ (props to the owner of this blog for converting the code to AS3/mxml!) B. On Thu, Apr 3, 20

[flexcoders] Re: FLEX Images sandbox error

2008-04-03 Thread noam.malter
Hi Tod, 2 things: 1. There is a crossdomain.xml at the following address: http://api.facebook.com/crossdomain.xml but I'm not sure if this is the same server 2. If the crossdomain file does not exist, why isn't the error 'A policy file is required, but the checkPolicyFile flag was not set whe

[flexcoders] Re: Simple Image Rotator

2008-04-03 Thread Amy
--- In flexcoders@yahoogroups.com, "byte.sensei" <[EMAIL PROTECTED]> wrote: > > I'm trying to implement a simple image rotator that just rotates > among 5 different images. I have it working except that I want a > smooth fade out/in between each image. > The problem I'm having is that the imag

Re: [flexcoders] Re: Where is adobe? Come to universities!

2008-04-03 Thread João Fernandes
Mark, regarding the FlexCamp, I can tell you that they will do what they can. We setup in February our FlexCamp here in Portugal and it was a very successful event and Adobe ( Portugal and International ) helped a lot. As you can imagine, Portugal might not be the most interesting market and no

[flexcoders] repeater with TextArea -- TextArea not sizing to internal text?

2008-04-03 Thread grimmwerks
I'm using a Repeater to loop through chunks of text and toss them in a VBox. Trouble is all the text boxes are the same = there doesn't seem to be a way to set a box to it's own internal text size? I'd like the boxes to be all different heights, just enough to view the text. Help?

[flexcoders] Re: FLEX Images sandbox error

2008-04-03 Thread Todd
I believe Facebook will need to have a crossdomain.xml policy file on their servers. --- In flexcoders@yahoogroups.com, "noam.malter" <[EMAIL PROTECTED]> wrote: > > I am trying to write a simple application that retrieves my pictures > from my Facebook account and then displays the images and run

Re: [flexcoders] Embedded fonts + modules = weirdness

2008-04-03 Thread Ben Clinkinbeard
I guess fontWeight/fontName was indeed the problem, though the whole issue is still a mystery to me. Especially the part about the problem only affecting certain button instances. Anyhow, I changed the font embeds from this: @font-face { src: url("assets/fonts/Gotham-Medium.otf"); fontFami

RE: [flexcoders] Flex 3.0 + Artificial Intelligence

2008-04-03 Thread Merrill, Jason
The "import from LinkedIn profile" feature doesn't seem to work - says I am missing title and summary data from my profile, even though I am not. Jason Merrill Bank of America GT&O and Risk L&LD Solutions Design & Development eTools & Multimedia Bank of America Flash Platform Developer Comm

[flexcoders] Re: Flex & PHP

2008-04-03 Thread David C. Moody
Hi, I'm using AMFPHP to perform all the database operations such as insert, update, delete, select, etc. In the example I'm giving, I have a report that I need to show the user. So I'm just directing them directly to the report page using the navigateToURL, but wanted a way to mask the variab

[flexcoders] Re: How can I stop/kill a running SWF which was loaded with SWFLoader ?

2008-04-03 Thread helihobby
Thx. I will try it. Regards, Sean - HeliHobby.com --- In flexcoders@yahoogroups.com, "mickaelairial" <[EMAIL PROTECTED]> wrote: > > May be you can use the Loader class instead the SWFLoader. > > The Loader class have an unload() method... > > May be this can really unload your movie ? > > > --

Re: [flexcoders] Flex 3.0 + Artificial Intelligence

2008-04-03 Thread VELO
Non US resident can't register. Zip code is required. Any alternative? VELO On Thu, Apr 3, 2008 at 12:18 PM, navice32 <[EMAIL PROTECTED]> wrote: > > > > > > > We recently launched a second generation job search portal and sure > enough, we are using Flex as a front-end to our artificial > inte

Re: [flexcoders] Export release build copying PHP files

2008-04-03 Thread Troy Gilbert
> Did you log a bug yet ? What was the number ? Dmitri did: https://bugs.adobe.com/jira/browse/FB-12306 Troy.

[flexcoders] Re: Where is adobe? Come to universities!

2008-04-03 Thread Mark Piller
Certainly deep financial pockets help when it comes to promoting and evangelizing a technology. What Adobe has consistently failed to do is tapping into its user base to get some help with marketing and evangelism. Lots of people are excited about Flex/AIR. Those who can and is willing to talk abou

RES: [flexcoders] Question on calling multiple Functions in sequence

2008-04-03 Thread Luciano Manerich Junior
Hi, if you just need to start and finish a function before the next one execute, i'll have no problems, thats the default behavior. private function doThisFunction():void { myFunctionOne(); // execute and wait for it returns myFunctionTwo(); // execute and wait for it returns myFunctionThree();

RE: [flexcoders] Question on calling multiple Functions in sequence

2008-04-03 Thread Mike Anderson
Thank you Rick - I will take a peek at this, and see if I can integrate this into my app. Again, thank you everybody else - I appreciate it :) Mike From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Winscot Sent: Thursday, April 03, 2

RE: [flexcoders] Where is adobe? Come to universities!

2008-04-03 Thread matt wicks
Adobe (certainly UK) does do campus days and there is considerable interest in Flex.. They also do on site lectures .. I'm doing a 3 hr session on Flex at Stafford next week for them - www.adobe.co.uk/campusdays generally students are pretty keen : unfortunately they have also not any idea t

[flexcoders] FLEX Images sandbox error

2008-04-03 Thread noam.malter
I am trying to write a simple application that retrieves my pictures from my Facebook account and then displays the images and run some effects on it, e.g. fade, move, iris etc. Everything seems to work except for the iris effect. I have done some research and found that when I import pictures

[flexcoders] Loading XML in preloader/ before application onComplete

2008-04-03 Thread Varun Shetty
Hi, I am creating a flex application that has its UI elements and some basic data that are dependent upon a config.xml. Loading the config.xml on application preinitialize/initialize/onComplete would not be appropriate as my application preloading would be complete and I still dont see any UI ele

[flexcoders] Re: compc directory="true" - Error: directory is not empty

2008-04-03 Thread email2markt
Ok thanks, Yeah, you guessed right. My aim was to simplify our ant build file to reduce compile times, removing unzip and move calls, trying to integrate fcsh, but it seems like 1 step forward, 2 back at the mo. --- In flexcoders@yahoogroups.com, "Gregor Kiddie" <[EMAIL PROTECTED]> wrote: > > N

[flexcoders] Flex 3.0 + Artificial Intelligence

2008-04-03 Thread navice32
We recently launched a second generation job search portal and sure enough, we are using Flex as a front-end to our artificial intelligence engine. You can see a demo at: www.vitruva.com - click on the demo screenshot We are currently porting this to Flex 3 and naturally

  1   2   >