[flexcoders] How to create a new file and write the contents to it.

2008-04-01 Thread bhaskar M
Hi I am new to flex environment... I have a requirement to create a new file in flex and write some contents to it then promt the user to save the file. in Java we can create a file using new file(); and write the data into it.. is there any mechanism in flex similar to

RE: [flexcoders] Re: Embedded fonts in DataGrid

2008-04-01 Thread Alex Harui
With embedded fonts, it is never simple. There are lots of things to be checked out. 1) The DataGridItemRenderer must be in the same SWF as the embedded font. 2) In DataGridColumn.as:saveFontContext, make sure the logic there thinks there is an embedded font 3) If so, you

Re: [flexcoders] Re: Embedded fonts in DataGrid

2008-04-01 Thread Bjorn Schultheiss
Thanks Alex.. I'll get back to you if i need any more help.. On 01/04/2008, at 5:30 PM, Alex Harui wrote: DataGridItemRenderer

[flexcoders] Disabling mouse scroll wheel for datagrid column

2008-04-01 Thread Paul Steven
I am experiencing a problem where the mouse scroll wheel is causing the text in a column of my data grid to disappear when you move the scroll wheel. Not sure if its the best solution but I was wondering how to disable the mouse scroll wheel for this datagrid column or for the entire datagrid

[flexcoders] Flex3: MXML file diffing is slow as a dog

2008-04-01 Thread Dmitri Girski
While comparing mxml files Flex3 just kills itself - 50% CPU usage, takes about 30 seconds to compare 700 lines of code. It didn't happen in Flex2. What I am doing wrong?

[flexcoders] Re: Flex3: MXML file diffing is slow as a dog

2008-04-01 Thread Dmitri Girski
Hmmm... Seems like there is a problem http://www.actionscript.org/forums/showthread.php3?p=720343 --- In flexcoders@yahoogroups.com, Dmitri Girski [EMAIL PROTECTED] wrote: While comparing mxml files Flex3 just kills itself - 50% CPU usage, takes about 30 seconds to compare 700 lines of code.

RE: [flexcoders] [AIR] Load image return null

2008-04-01 Thread Jim Hayes
Not as far as I know, if anyone can tell me one then I'd love to know also! -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giro Sent: 01 April 2008 11:05 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] [AIR] Load image return null

RE: [flexcoders] Re: Flex Beta 3 to Flex 3 Migration Problems

2008-04-01 Thread Randy Martin
I second this. The problems I had all went away after I got rid of the config files for prior versions of FB. You might also try starting FB with the -clean option. In the flexbuilder.ini file (or the eclipse.ini file if you're using the FB plug-in), insert -clean as the first line and save the

Re: [flexcoders] Image centering

2008-04-01 Thread Vadim Alekseevski
You must set position from Matrix. area:BitmapData = *new* BitmapData(200,200); *var* myBitmap:Bitmap = *new* Bitmap(bitmappicturefrom); area.draw(myBitmap,*new* Matrix(1,0,0,1,x,y)); where x,y is position of image.

Re: [flexcoders] Re: Read Contents of a Web Page

2008-04-01 Thread Tom Chiverton
On Friday 28 Mar 2008, kenny14390 wrote: From the Flex application, just call proxy.php?proxy_url=http://otherdomain.com Congrats, you are now an open relay for spammers :-) If anyone puts code like this in production, please remember to lock it to only one destination domain... -- Tom

RE: [flexcoders] [AIR] Load image return null

2008-04-01 Thread Jim Hayes
the bitmapdata in loader wll only be valid when the loaders contentLoaderInfo Complete event fires. So add a listener for it and only then access the data. loader.contentLoaderInfo.addEventListener(Event.COMPLETE,loaderCompleteHandler); This one got me also :( See

[flexcoders] ResourceBundle

2008-04-01 Thread Ali Anil SINACI
Hello All, I am going through the internet but i cannot get an answer to my question. I want to add a ResourceBundle at run-time. That is, I will get the name of the bundle from somewhere and I will load it. Is there any way to do it? Thanks in advance, ANIL

[flexcoders] Objectproxy cast in MyObject

2008-04-01 Thread xavixxxx
Hi, I have a problem on the ObjectProxy object. I saw a lot of posts which talk about Objectproxy, but they don't help me to solve my problem. I develop using Flex/actionScript and grails. I d'like retrieve MyObject after a service call (get()) Here is my code : main.mxml ?xml version=1.0

RE: [flexcoders] Re: Flex Beta 3 to Flex 3 Migration Problems

2008-04-01 Thread Glenn Williams
this is how I did it. create a new project in 3 final. then copy the code I'd written in 3 beta and assets into new project. the problem I had was with the files in the old project that aren't code (configs n stuff) Glenn From: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Flex Beta 3 to Flex 3 Migration Problems

2008-04-01 Thread Tom Chiverton
On Sunday 30 Mar 2008, a3leggeddog_ca wrote: comboboxes are tied to ArrayCollections dynamically derived from web service calls. Everything worked fine in BETA but when we switched, all hell broke loose. If you post your test case code here people will be more able to help. -- Tom Chiverton

[flexcoders] Re: Flex Beta 3 to Flex 3 Migration Problems

2008-04-01 Thread Bjorn Schultheiss
My developers are also complaining that their 'and my' applications have broken since Beta 3 to the Final release. This has hit me unexpectedly as I did not test. On top of that I have deadlines to meet this week. Is there a doc i can refer to get a complete list of changes.. What's the best

Re: [flexcoders] RSL loader problem - it stops

2008-04-01 Thread Paul Spitzer
I haven't used RSLs enough to have experienced this problem but this sounds suspiciously similar to problems I've been having loading SWFs that have been extracted from a SWC (see the thread Runtime Class Loading). As I understand it when you link a SWC as an RSL Flex Builder extracts the SWF

RE: [flexcoders] [AIR] Load image return null

2008-04-01 Thread Giro
And don't exists a solution to load an image that I need a complete event? Thk. Giro. -Mensaje original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de Jim Hayes Enviado el: martes, 01 de abril de 2008 11:55 Para: flexcoders@yahoogroups.com Asunto: RE:

RE: [flexcoders] Having trouble with e4x and for each -- getting empty XML value inside loop

2008-04-01 Thread Jim Hayes
Try: trace(t3= + opt.toXmlString()); (I think it's tracing the actual value of each node, which is ) The toXmlString() value is a much bigger help when you're testing/debugging e4x code. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of peter

Re: [flexcoders] Flex Beta 3 Beta to Flex 1.0 - Need help on Air Migration

2008-04-01 Thread Tom Chiverton
On Monday 31 Mar 2008, djhatrick wrote: Output from command: invalid application descriptor: descriptor version does not match runtime version Did you update your Project-app.xml ? -- Tom Chiverton Helping to collaboratively scale proactive IPOs on: http://thefalken.livejournal.com

[flexcoders] [AIR] Load image return null

2008-04-01 Thread Giro
Because this piece of code, that user AlivePDF make error and say that image variable is null. var fileimg:File = File.desktopDirectory.resolvePath(images/1.jpg); var filestream:FileStream=new FileStream(); filestream.open(fileimg,read); var bytesRead:ByteArray=new ByteArray();

[flexcoders] Re: How to create a new file and write the contents to it.

2008-04-01 Thread ben.clinkinbeard
No, the Flash Player does not have access to the local filesystem since its a browser plugin. You could build an AIR application with Flex that would meet your needs. HTH, Ben --- In flexcoders@yahoogroups.com, bhaskar M [EMAIL PROTECTED] wrote: Hi I am new to flex environment...

[flexcoders] How to change the mouse scroll range of datagrid component?

2008-04-01 Thread bigbb_kimo
Hi dear all I have a datagrid with information from web service. Each row of the datagrid fulfill the screen, so each time only one row will represent in the screen. However, I find that when I use the scroll button of my mice to browse the datagrid, it scroll down two rows, and display the 3rd

RE: [flexcoders] Re: memory leak in converting string to xml

2008-04-01 Thread Rick Winscot
Worth noting - that the profiler image that I sent you shows that the total consumption of memory to be around 9ish mb for the single running instance with the 25k line xsl spec. I didn't look at your memory calculations. might want to spot check those. Rick Winscot From:

RES: [flexcoders] How to change the mouse scroll range of datagrid component?

2008-04-01 Thread Luciano Manerich Junior
Hi, you may override the method scrollVertically from the dataGrid. When you scroll the mouse, it dispatch an even with the delta, telling you how fast was the scroll. And calling the super.scrollVertically() with an fixed delta = 1. De:

Re: [flexcoders] How to change the mouse scroll range of datagrid component?

2008-04-01 Thread Paul Andrews
- Original Message - From: bigbb_kimo [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, April 01, 2008 2:00 PM Subject: [flexcoders] How to change the mouse scroll range of datagrid component? Hi dear all I have a datagrid with information from web service. Each row of

RE: [flexcoders] compc error (Flex3 only, works in Flex2)

2008-04-01 Thread Gregor Kiddie
We came across this when doing our own migration. It's when you have comma separated lists in the ant task. If there is a space between them (which Flex 2 was happy with), the Flex 3 compc compiler fails. HTH, Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered

[flexcoders] Cairngorm and Service Locators

2008-04-01 Thread Nicholas Watson
I new to Flex, so please excuse the newbie question. Within my ServiceLocator.mxml file, I have a listing of HTTPServices. Each one of them has the URL hard coded in to the file. I would like to make this a configurable setting, depending on which environment the app is running off of (dev,

[flexcoders] Re: Flex Beta 3 to Flex 3 Migration Problems

2008-04-01 Thread maunger
I third this the only way i got up and running correctly was to purge my old workspace (rename it before opening FB) - that way it builds a new workspace and everything has run fine since. Mitch --- In flexcoders@yahoogroups.com, Randy Martin [EMAIL PROTECTED] wrote: I second this. The

[flexcoders] Re: [AIR] Load image return null

2008-04-01 Thread dannyvenier
Since the load method is asynchronous, it relies on a completion (or any other of the supported events). You can't block on a load call. --- In flexcoders@yahoogroups.com, Jim Hayes [EMAIL PROTECTED] wrote: Not as far as I know, if anyone can tell me one then I'd love to know also!

Re: [flexcoders] Cairngorm and Service Locators

2008-04-01 Thread Jon Bradley
On Apr 1, 2008, at 9:37 AM, Nicholas Watson wrote: Within my ServiceLocator.mxml file, I have a listing of HTTPServices. Each one of them has the URL hard coded in to the file. I would like to make this a configurable setting, depending on which environment the app is running off of (dev,

[flexcoders] Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread Jason B
FYI: I've got no code handlers setup just creating the GUI so i can demo a basic gui to my boss and yet the basic gui with no actionscript locks up the browser ? what is causing this to happen? Error: Error #1502: A script has executed for longer than the default timeout period of 15 seconds.

RE: [flexcoders] Re: [AIR] Load image return null

2008-04-01 Thread Jim Hayes
Yes, that I know! What I am wondering and have yet to find out for myself is whether there is, somewhere, a function that synchronously converts a bytearray from a png/jpg file to a bitmapdata object. I guess I need to look into the loader source code, but it's not been a priority now I've

[flexcoders] Re: Cairngorm and Service Locators

2008-04-01 Thread ben.clinkinbeard
This is generally done in one of two ways. 1) Load a config file at startup that holds urls or url stubs and store them on your model. Have your ServiceLocator bind to values on model. 2) Pass a url stub into your app via FlashVars, store it on the model and then construct full urls from the

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread valdhor
Could you post the code? --- In flexcoders@yahoogroups.com, Jason B [EMAIL PROTECTED] wrote: FYI: I've got no code handlers setup just creating the GUI so i can demo a basic gui to my boss and yet the basic gui with no actionscript locks up the browser ? what is causing this to happen?

[flexcoders] Re: Having trouble with e4x and for each -- getting empty XML value inside loo

2008-04-01 Thread peter eakle
Jim, thanks a lot, that really helped me. So apparently this problem is due to differences between the output of toString() (the default) and toXMLString() (what you suggest). Seems like a bug in the debugger here, cause it didn't help me to figure this out -- it also shows my opt object in the

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread Jason B
No lockups occur until i add this in dataProvider={listData} to my list box weirdive got really no script at all? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute backgroundColor=white height=100% width=100% mx:Script

Re: [flexcoders] Re: Flex3: MXML file diffing is slow as a dog

2008-04-01 Thread Troy Gilbert
While comparing mxml files Flex3 just kills itself - 50% CPU usage, takes about 30 seconds to compare 700 lines of code. It didn't happen in Flex2. I've been experiencing the same thing, when comparing with repository *or* local history files. All documents less than a 1000 lines and it

[flexcoders] Re: RSL loader problem - it stops

2008-04-01 Thread Dmitri Girski
Hi Paul, I think, that this is how RSLs work. I still have not found any pattern for this behaviour - this happens sometimes and sometimes it hangs on loading phase, sometimes it hangs SWF is loaded and it is rendering them. Cheers! --- In flexcoders@yahoogroups.com, Paul Spitzer [EMAIL

[flexcoders] TileList is acting strange

2008-04-01 Thread mybgmail
Hi. Do you guys have any idea why when i click on the first button and it's state becomes selected=true and I scroll down the first button that shows is also selected? // Main.mxml mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Array id=myArray mx:Object label=1 Moskow

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread valdhor
Well, I just tried your code without the dataProvider and it worked fine (ie. As posted). I then modified the list tag to: mx:List width=100% height=100% id=list dataProvider={listData} and it still worked fine. The array elements appeared in the Main accordion item as expected. There were no

[flexcoders] using SliderDataTipClass?

2008-04-01 Thread djbrown_rotonews
I'm wanting to add a label to each of my thumbs, so that something like Start time and End time will be present under the thumb itself even when not dragging (I believe this requirement prevents me from simply using a dataTipFormatFunction). Can I do this by extending SliderDataTipClass?

[flexcoders] WebSerice status showing Transfering Data....

2008-04-01 Thread raghu kumar varma nadimpalli
Hi, After the Webservice call and we get back the target xml, still I am seeing Transfering Data from 192.168.190.117. How to set the status to Done after the webservice call is over. Thank You Regards Raghu N

Re: [flexcoders] Problem with tab navigator

2008-04-01 Thread Scott Melby
Seems you could explicitly set the selectedIndex of the tab navigator back to 0 each time you change back to that page. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com ghus32 wrote: I have a problem with a tab navigator on my page.

[flexcoders] Problem with tab navigator

2008-04-01 Thread ghus32
I have a problem with a tab navigator on my page. When I switch states and go back to the state with the tab navigator Flex remembers what tab I was on. This is very annoying Anyone know of a fix for this? Thanks

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread Jason B
Yes i had everyone in the building with MAC and Linux and windows web browsers from IE to firefox and it locks theres up i tried it locally pointing to my machine with LAMP and also on several servers even my own outside the building. as soon as i remove the listdata provider {listdata} code it

[flexcoders] Modules dont work when converting from Flex 2 to Flex 3

2008-04-01 Thread boy_trike
Took my app, imported it and recompiled it in Flex 3. When I deploy it and run it and attempt to load a module, I get the following error: ArgumentError: Error #1063: Argument count mismatch on mx.binding::PropertyWatcher(). Expected 3, got 2. at _POWatcherSetupUtil/setup() at

[flexcoders] Re: Stop header highlighting

2008-04-01 Thread markgoldin_2000
That was it. Thanks -- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: They won't highlight if you turn off sorting. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Monday, March 31,

RE: [flexcoders] Disabling mouse scroll wheel for datagrid column

2008-04-01 Thread Alex Harui
Try something like: --GrowingDGItemRenderer.as- package { public class GrowingDGItemRenderer extends DataGridItemRenderer { public function GrowingDGItemRenderer() { mouseWheelEnabled = false; } } } Then in your column

RE: [flexcoders] Modules dont work when converting from Flex 2 to Flex 3

2008-04-01 Thread Alex Harui
It sounds like you didn't recompile your 2.x modules in 3.0 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of boy_trike Sent: Tuesday, April 01, 2008 10:20 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Modules dont work when

RE: [flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread Alex Harui
You might be hitting an invalidation loop. Try setting scrolPolicies to off in the Canvas and locking down the size of the List. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason B Sent: Tuesday, April 01, 2008 10:11 AM To:

RE: [flexcoders] ResourceBundle

2008-04-01 Thread Gordon Smith
One way to add ResourceBundles at runtime is to compile them into one or more resource modules and load those modules with ResourceManager's loadResourceModule() method. Another way is to create new ResourceBundles with the 'new' operator, populate their 'content' property with key/value pairs

[flexcoders] Disable/enable menuBar menuItem

2008-04-01 Thread nhid
Hello, My menubar is like the following: In mxml file, *myFile.mxml*, I have: mx:Application xmlns:mx=http://www.adobe.com/2006/mxmlcreationComplete=initCollections(); mx:Script ![CDATA[ import mx.collections.*; [Bindable] public var

[flexcoders] Disable compiler warning: CSS type selectors are not supported in components: 'xxx'

2008-04-01 Thread Samuel Neff
Is there any way to disable the compiler warning: CSS type selectors are not supported in components: 'xxx' There are lots of warn-xxx flags in Flex 3 flex-config.xml but I didn't see anything that would correspond to this warning. The situation is we have our main App.mxml but for development

RE: [flexcoders] TileList is acting strange

2008-04-01 Thread Alex Harui
Because renderers are recycled. You can read more in the item renderers section in my blog (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mybgmail Sent: Tuesday, April 01, 2008 9:10 AM To:

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread valdhor
I tried what you said and found out that all you need to do is click on the Stations X tab and then the Info tab. At this point the entire browser crashed. After a bit of paring I found that the offending tag is: mx:Text x=113 y=71 text=Amanda width=277 id=owner fontWeight=bold/ and the problem

Re: [flexcoders] Image centering

2008-04-01 Thread Michael Wagner
Thanks a lot for your answers This also worked for me *** var content:DisplayObject = LoaderInfo( event.target ).content; var bitmapData:BitmapData = new BitmapData( content.width, content.height ); bitmapData.draw( content ); var bmp:Bitmap = new Bitmap(bitmapData.clone()); * *var*

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread Jason B
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You might be hitting an invalidation loop. Try setting scrolPolicies to off in the Canvas and locking down the size of the List. Could you please show an example im not finding anywhere what you mean?

[flexcoders] Re: Flex LOCKUPS UP BROWSER no code though is created?

2008-04-01 Thread Jason B
--- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: I tried what you said and found out that all you need to do is click on the Stations X tab and then the Info tab. At this point the entire browser crashed. After a bit of paring I found that the offending tag is: mx:Text

RE: [flexcoders] Disable/enable menuBar menuItem

2008-04-01 Thread Tracy Spratt
In literal xml declarations, the braces do not create a binding. They simply give access to the members of the parent scope. To do what you want, use an e4x expression to find the menuitem node you need, then set the attributes as desired. Tracy From:

[flexcoders] Flex DataService problem: unexpected unsubscribe and release collection ops

2008-04-01 Thread gordon_greg
Hello, I have a small, yet increasingly, complex application begun using Flex DataServics / Tomcat / Spring / Hibernate, and am running into what apparently are not uncommon limitations with regards to the complexity of the data model when using DataServices. The skinny: when deleting an item

[flexcoders] Simple Image Rotator

2008-04-01 Thread byte.sensei
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. To keep things simple, I implemented this using mx:states / mx:transitions, as follows: mx:states mx:State name=image01

[flexcoders] WebSerice status showing Transfering Data....

2008-04-01 Thread raghu kumar varma nadimpalli
Hi, After the Webservice call and we get back the target xml, still I am seeing Transfering Data from 192.168.190.117. How to set the status to Done after the webservice call is over. Thank You Regards Raghu N

[flexcoders] TabContainer with modules - how to cancel Tab change

2008-04-01 Thread guitarguy555
I have a Flex Application that has a TabNavigator. Each tab contains a moduleLoader that loads a corresponding Module. On some of these modules, I have a basic Form with Validators connected to it. I want to be able to make sure that the form values are valid before the user navigates away

RES: [flexcoders] TabContainer with modules - how to cancel Tab change

2008-04-01 Thread Luciano Manerich Junior
Hi, you can add an eventListener on the TabNavigator, listening for an IndexChangedEvent and do all your validations... And if you need to cancel the current change, you could try an evt.preventDefault(); private function changeIndex(evt:IndexChangedEvent):void { evt.preventDefault();

[flexcoders] External swf as menu in Flex App

2008-04-01 Thread Alexander Tsoukias
What is the best way to have such a menu in a flex app. http://www.reflektions.com/miniml/template_permalink.asp?id=356 Should i build it in FLEX or use this swf which is no more than 60kb? If I should/can use the swf, are there ways to communicate with it from flex? Thanks, Alexander

Re: RES: [flexcoders] TabContainer with modules - how to cancel Tab change

2008-04-01 Thread guitarguy555
Thanks for the reply, That doesn't work though. If I set up an IndexChangedEvent event listener, calling event.preventDefault() doesn't stop the tab from changing. --- In flexcoders@yahoogroups.com, Luciano Manerich Junior [EMAIL PROTECTED] wrote: Hi, you can add an eventListener on

[flexcoders] Re: Announcement: Join us in a Flex-Related Focus Group

2008-04-01 Thread lytvynyuk
Jeff I didn't want to turn this into discussion of your website design, but I think any great idea have nice visual presentation :) I like to participate to anything which gives me as much knowledge as possible, I too new to Flex/RIA sphere to know people who are great here, so cant say anything.

[flexcoders] Posted bug in Adobe with description of the problem

2008-04-01 Thread lytvynyuk
May be I do something wrong, but I will give a change to somebody from Adobe tell me what is going on. http://bugs.adobe.com/jira/browse/SDK-15121

RE: [flexcoders] Re: Announcement: Join us in a Flex-Related Focus Group

2008-04-01 Thread Glenn Williams
So true, I set up my blog a while ago www.flex-ria.com and have had zero time to write to it. I so want to add some stuff about the applications we're developing but who has the time?? I WILL get around to it soon. Glenn From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] Re: JAXB POJO to Action Script VO

2008-04-01 Thread Jhonny Everson
I'm not using FlexDAO. I'll send it to your mail. I won't post it because the code is messy. But you can use it, it's working for me. On 3/24/08, sk_acura [EMAIL PROTECTED] wrote: Hi Jhonny, Are you using the DAOFlex ?? If not could u pls post the code here.. Thanks Mars --- In

[flexcoders] Artemis

2008-04-01 Thread Jhonny Everson
hi Guys, Is anyone using Artemis to bridge Adobe Air Applications to java runtime? I want to brigde air with java without a servlet container. Artemis proposes to do what I want but looks like it is dead. The last message on the site is since April 30, 2007. Is anyone using it? Is it 'stable'? (

[flexcoders] Multiple destinations LCDS from one app

2008-04-01 Thread Alexander Tsoukias
Is it possible to access multiple Destinations (which are config in xml) from a single flex app. If so, do they all use the same RTMP connection? Is it heavy? Reason im asking, you can only define one ID and get one arraycollection returned. I want to use more. Would appreciate some

Re: RES: [flexcoders] TabContainer with modules - how to cancel Tab change

2008-04-01 Thread Scott Melby
When I did this (for validation purposes) I had to extend the TabNavigator and override the selectedIndex setter method. I then provided an inteface (ITabChild) that my views could implement. When the setter is called, you can then check if the child is an ITabChild and if so call the

RE: [flexcoders] Flex DataService problem: unexpected unsubscribe and release collection ops

2008-04-01 Thread Jeff Vroom
Hi Greg, We're working hard on this type of problem to make this type of thing more robust. One of the tricky problems you are hitting here is a weak spot in our implementation right now. When you remove an item from a managed collection, and there are no other explicit references to

Re: [flexcoders] Export release build copying PHP files

2008-04-01 Thread Troy Gilbert
This makes me so F*ING MAD! Flex Builder has once again *trashed* my webroot with its helpful copying about of PHP files. All of my PHP files are empty now... which, unsurprisingly, completely breaks everything on my development machine. Sure, I can sync back up with the test servers, but I've got

[flexcoders] WebSerice status showing Transfering Data....

2008-04-01 Thread Raghu
After the Webservice call and I get back the target xml, still I am able to see Transfering Data from IP in the status bar. How to set the status to Done after the webservice call is over.

RES: RES: [flexcoders] TabContainer with modules - how to cancel Tab change

2008-04-01 Thread Luciano Manerich Junior
Work-arounding private function changeIndex(evt:IndexChangedEvent):void { if( !validUserInteraction() ) { evt.target.selectedIndex = evt.oldIndex; } } De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de guitarguy555 Enviada

[flexcoders] converting to a specific time zone

2008-04-01 Thread Boaz MyTurnASpace
Hi all -- first time poster here. :-) Currently I'm working on a project that I need to communicate to our server that is running on US Eastern time. As I have to let user to change this time value, I'm displaying the time on the GUI in Eastern time. As I know how to get my current time zone

[flexcoders] Re: Artemis

2008-04-01 Thread Jhonny Everson
Trying to run the sample application This application requires a version of Adobe AIR which is no longer supported. Please contact the application author for an updated version. On 4/1/08, Jhonny Everson [EMAIL PROTECTED] wrote: hi Guys, Is anyone using Artemis to bridge Adobe Air

[flexcoders] How to deal with this sort of messages: CSS type selectors....

2008-04-01 Thread lytvynyuk
CSS type selectors are not supported in components: 'Alert' I getting all over the places in my application and modules, I have Alert {} style defined in external main.css files. When Flex compiler build this it always complains (Warnings) but in application actually all styles in place. HM?

[flexcoders] Sizing when dealing with custom borderSkin

2008-04-01 Thread Danny Gold
I've created a programmatic border skin that extends 'Border', but something seems a little off. I override the get borderMetrics function to return the EdgeMetrics object representing how large my custom border is, and I override updateDisplayList to draw the border. That's pretty much all this

[flexcoders] Scroll Thumb Not Dynamically Sized?

2008-04-01 Thread Ethan Miller
Hello - Wondering if there's away to have scroll bar thumbs not scale their size relative to the amount of unseen content, ie I want a scroll thumb of a permanent fixed size. I've been playing round in ScrollThumbSkin.as, no problem, but seems the scaling is elsewhere. Be great if this

Re: [flexcoders] Re: problem installing AIR linux, any way to debug install??

2008-04-01 Thread yiğit boyar
actually, yes :) no comments? will i have to change my linux ? On Tue, Apr 1, 2008 at 8:14 AM, Jerome Clarke [EMAIL PROTECTED] wrote: I'm assuming you installed it as root? On Tue, Apr 1, 2008 at 3:18 AM, yiğit boyar [EMAIL PROTECTED] wrote: it did not, but i remember checking with

[flexcoders] Re: Modules dont work when converting from Flex 2 to Flex 3

2008-04-01 Thread boy_trike
OH, but I did! I deleted the output folder, and CLEANED all of the apps and I still get that error. Bruce --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: It sounds like you didn't recompile your 2.x modules in 3.0 From:

[flexcoders] Showing progress to the user

2008-04-01 Thread markgoldin_2000
I would like to show a progress of a process. This is not a data loading process. Data loads very fast. It is a process of creating complex dataGrids with all kind of custom renderers and stuff. Thanks

Re: [flexcoders] Artemis

2008-04-01 Thread Jeffry Houser
Artemis is dead, but Google Merapi; which is the name of Artemis Reborn project. I'm not sure of the status of development, though. Jhonny Everson wrote: hi Guys, Is anyone using Artemis to bridge Adobe Air Applications to java runtime? I want to brigde air with java without a

Re: [flexcoders] Re: Artemis

2008-04-01 Thread Rob Rusher
Artemis was put on hold because it uses a capability that has been removed from AIR. So, some of the guys are now working on merapi http://www.whatanexperience.org/2008/03/its-volcano-its-framework-its-amazing.html . Rob On Tue, Apr 1, 2008 at 3:44 PM, Jhonny Everson [EMAIL PROTECTED] wrote:

[flexcoders] Can you make a method wait for an animation to finish before continuing?

2008-04-01 Thread Ljuba M
What I'd like to be able to do is call a method which does some useful things, among which is to play an animation, then have the method continue on its way. The problem now is that the rest of the method keeps running before the animation has finished. I'd like the rest of the method to

[flexcoders] How to configure LCDS 2.5.1 to make use of Flex 3.0 SDK libraries?

2008-04-01 Thread msankar_igst
Hi, I deployed LCDS 2.5.1 version which uses Flex 2.0 by default. Now i want to use Flex 3.0 with this LCDS. How to configure it? I tried to configure by modifying the library path and source path which points to Flex 3.0 SDK library and source path from the following file,

Re: [flexcoders] Artemis

2008-04-01 Thread Kelly
If Adobe was smart they would completely open source AIR and Flash Player. Then Flex/AIR could be the new GUI layer for desktop Java apps. Of course there is no reason you couldn't just bundle your application so that it automatically installs a local instance of Tomcat or some other java

RE: [flexcoders] UK rapid addressing web api

2008-04-01 Thread Glenn Williams
For those of you interested in how I've gotten along with the UK Rapid Addressing Service from PostcodeAnywhere.co.uk here's a list of the data returned from the service using the ByPostCode Call: public var barcode:String; public var building_name:String;

[flexcoders] convert MouseEvent into a DragEvent?

2008-04-01 Thread ivo
I am trying to update the feedback for my List controls with a custom dropIndicatorSkin . My drag and drop handlers tho are written to accept MouseEvent so they can be used either for NativeDragEvent or DragEvent . Unfortunately tho the ListBase calls to showDropFeedback/hideDropFeedback only

[flexcoders] Module Compiling Workflow - Making a module run like it's an application

2008-04-01 Thread Austin Kottke
Is there some way to get a module run so you can actually test a module independent of a main app? This seems like a really bad workflow if the only way to develop a module is to use the main app to view the nested module. What if one module is an application that you spend months of

Re: [flexcoders] Artemis

2008-04-01 Thread Jeffry Houser
Kelly wrote: If Adobe was smart they would completely open source AIR and Flash Player. Then Flex/AIR could be the new GUI layer for desktop Java apps. I'm curious. Why does Flash Player + AIR have to be open source for this to occur? -- Jeffry Houser Flex, ColdFusion, AIR AIM:

[flexcoders] how to be authenticated from Active directory

2008-04-01 Thread coder3
Hi, how to authenticate my flex application from Active directory? C. -- View this message in context: http://www.nabble.com/how-to-be-authenticated-from-Active-directory-tp16431324p16431324.html Sent from the FlexCoders mailing list archive at Nabble.com.

Re: [flexcoders] Un-hilite link in LinkBar 1 from LinkBar 2

2008-04-01 Thread JRBower
pingu Any help would be appreciated. :) -- View this message in context: http://www.nabble.com/Un-hilite-link-in-LinkBar-1-from-LinkBar-2-tp16395615p16432132.html Sent from the FlexCoders mailing list archive at Nabble.com.

Re: [flexcoders] Artemis

2008-04-01 Thread Jhonny Everson
Some posts about Merapi: http://www.cornilliac.com/blog/?p=50 http://adamflater.blogspot.com/2008/02/meet-merapi.html [ February 8, 2008 ] Adam Flater said - Merapi is in very early stages of development. We're hoping to get a private alpha release going in a matter of weeks and move to open

Re: [flexcoders] Artemis

2008-04-01 Thread Jhonny Everson
Thanks guys, We don't want to install anything on client's machine unless it is really necessary. We are even using embed databases. I really want to use Flex/AIR as front-end, but installing a java container is not a good option for us. I completely agree with Kelly that Adobe is missing an

[flexcoders] Handling result in webservices

2008-04-01 Thread cool buddy
HI all, I need help in handling result in webservices..following is the code. the add method takes two inputs from the user and computes the sum...at the backend which is written in Java.. so when i get the result how should i handle it..Is the below code correct to handle it..or

  1   2   >