[flexcoders] Migrate Flex to Flash Lite

2009-04-23 Thread itdanny2002
We want to use a flex program (FP7) on mobile. However, not much mobile supports. Both Flex Builder (Output Flash) and Flash CS4 (ouput Flash Lite) support ActionScript. Can I change all code to ActionScript in Flex Builder and then use it in Flash CS4 ? Please show me the way. Thank you very

Re: [flexcoders] List sizing - height=100%

2009-04-23 Thread claudiu ursica
there is a rowCount property in the list... tell you how many item should be displayed http://blog.flexexamples.com/2007/10/28/resizing-a-flex-list-control-using-the-rowcount-property/ C From: arieljake arielj...@yahoo.com To: flexcoders@yahoogroups.com

[flexcoders] Horizontal Axis

2009-04-23 Thread ak
Hi, Is there any way to check whether the horizonatl axis is Linear axis or Category axis in a class extended from the Bar Chart. Thanks Now surf faster and smarter ! Check out the new Firefox 3 - Yahoo! Edition http://downloads.yahoo.com/in/firefox/

RE: [flexcoders] Drive Letters and Ant

2009-04-23 Thread Gregor Kiddie
Which version of flexTasks.jar are you using? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our Internet Web site at www.inps.co.uk

Re: [flexcoders] Migrate Flex to Flash Lite

2009-04-23 Thread Rick Winscot
What you are asking is a huge task... even the prospect of using classes in Flash Lite will cause huge performance issues not to mention the fact that you will have to translate/port any Flex framework bits you use in your Flex app to Flash Lite. This would not be a trivial task. I wouldn¹t

[flexcoders] Re: Migrate Flex to Flash Lite

2009-04-23 Thread itdanny2002
Or, I should wait till FP 10 since it supposed to be used in all mobile ... in future. --- In flexcoders@yahoogroups.com, itdanny2002 itdann...@... wrote: Thanks for your reply. OK. Then. I may write a new small interface program to extract and display data from server rather than a full

Re: [flexcoders] Re: Migrate Flex to Flash Lite

2009-04-23 Thread Tom Chiverton
On Thursday 23 Apr 2009, itdanny2002 wrote: Or, I should wait till FP 10 since it supposed to be used in all mobile ... in future. Will your users wait ? Will they have the latest and greatest phones as soon as they come out ? -- Helping to biannually innovate one-to-one total

RE: [flexcoders] Polygon Flex Component

2009-04-23 Thread Kenneth Sutherland
http://www.flexibleexperiments.com/Flex/PrimitiveExplorer/Flex2Primitive Explorer.html From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of sbaush09 Sent: 22 April 2009 14:01 To: flexcoders@yahoogroups.com Subject: [flexcoders] Polygon Flex Component Hi

[flexcoders] Dicom Dcmtk with Alchemy

2009-04-23 Thread christophe_jacquelin
Hello, Does someone has compiled the Dicom Dcmtk library with Alchemy ? Thank you, Christophe,

[flexcoders] Blank Screen issue with application preloaders

2009-04-23 Thread b_alen
I get a blank screen for more than 10 seconds for the app that's about 700k in size. Only then the preloader appears and starts from somewhere around 70%. In the Flash days, this was easily solved by having one small SWF with preloader that would load the main SWF in empty movie clip. Is

[flexcoders] Two way binding in Flex 4

2009-04-23 Thread Gregor Kiddie
Morning all (well it is here ;) ), One for the Adobe guys I think, though anyone who's dug around in the Flex 4 SDK can chip in! Flex 4's two way binding... does it create an breakable reference in the same way as MXML binding does just now? I'm trying to judge its usefulness, and Ted

Re: [flexcoders] LCDS - For a Chat Application

2009-04-23 Thread Tom Chiverton
On Tuesday 21 Apr 2009, Anthony DeBonis wrote: pick list of available rooms. I have a basic MultiTopicProducer/ MultiTopicConsumer set up but if a user comes online late they don't get the list of rooms… only new rooms that get created. Or do we have to wait for Flash Collaboration Services

Re: [flexcoders] chart axis renderers inside data area

2009-04-23 Thread thomas parquier
Maciek, pushing axisrenderer to annotationElements array doesnt seem to work. Sam, setting negative gutters works (any negative gutter does the same) but not completely : axe is rendered in area, but only stroke and ticks, no labels... thomas 2009/4/22 Sam Lai samuel@gmail.com Can you

[flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-23 Thread Battershall, Jeff
In testing via the Profiler, binding UI objects in a module to a model (even if local to the module) appears to be causing a module's failure to unload. This happens as soon as the UI component becomes active. In fact, even if the source object (data provider) is set to null, the binding persists

Re: [flexcoders] chart axis renderers inside data area

2009-04-23 Thread Sam Lai
Thinking up the top of my head here - Maybe you could inherit and trick the axis renderer into thinking it is rendering the axis on top of the chart, and therefore the labels are above the stroke and ticks (instead of below)? That's what you want right? 2009/4/23 thomas parquier

Re: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-23 Thread Pedro Sena
Hi Jeff, The fact that you unload a module does not mean that it will be garbage collected(the memory won't be released as soon as you unload your module). Unload the module makes it available for garbage collection. As far as I know, the module 'garbage' will be collected by the GC when

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-23 Thread Battershall, Jeff
Pedro, I've been running the GC immediately after unload - programmatically. The module instance is released immediately if binding is inactive. The moment binding becomes active to a UI element of the Module, the instance will not be released. I was thinking that having the model object I'm

Re: [flexcoders] maxWidth property not working on Advanced DataGrid

2009-04-23 Thread Marco Catunda
I didn't understand very well, but If you remove height=80 property in below line, the vertical scroll bar go away. mx:AdvancedDataGrid width=318 height=80 id=dg horizontalCenter=0 dataProvider={arr} horizontalScrollPolicy=auto -- Marco Catunda On Wed, Apr 22, 2009 at 8:52 AM, labosox

Re: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-23 Thread Pedro Sena
Jeff, Calling GC programmatically does not mean that it will be executed. Like java, the GC in flex is not under programmer's control. You may call it, but it won't be executed if it is not necessary. Clicking the Run Garbage Collector button does not guarantee that all objects that are

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-23 Thread Battershall, Jeff
Thanks Pedro, I've seen what your describing in the docs - I'm looking at this via the profiler which is giving me feedback as to number of live instances, etc. Here's what I'm basing my statements on:. 1) I start up my app, which loads modules at runtime based upon user choice from a menu.

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-23 Thread Gregor Kiddie
It does sound like you are describing the bug where the focus manager holds onto the reference of the combo box and stops the module unloading... If you lose the combobox focus, does the module unload? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The

Re: [flexcoders] chart axis renderers inside data area

2009-04-23 Thread thomas parquier
Using negative labelGap draws labels inside data area. thx 2009/4/23 Sam Lai samuel@gmail.com Thinking up the top of my head here - Maybe you could inherit and trick the axis renderer into thinking it is rendering the axis on top of the chart, and therefore the labels are above the

[flexcoders] DataGrid combobox erasing items from it's list

2009-04-23 Thread netdeep
I have a DataGrid that is linked to an array of custom data objects which I call a seriesList. You are supposed to be able to choose the name of each series via a combobox in the datagrid. It works fine except when the user selects the combobox and then clicks somewhere else in the

Re: [flexcoders] e4x challenge

2009-04-23 Thread Daniel Freiman
If you want to select them, then: XMLList list = xml.descendants().(@type = file) otherwise, i'd still get that list and then loop through it and delete each by doing (exact code might need some cleaning): for (each item:XML in list) { delete item.parent()[item.childIndex()]; } On Wed,

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-23 Thread Battershall, Jeff
Gregor, Very interesting indeed. If I login, load the module, interact with the combobox, logout, the instance remains in the profiler. However if I do all that and THEN load another module and logout, the number of instances of the first module goes to zero. These modules are being loaded

RE: [flexcoders] Re: HTTPService mistery

2009-04-23 Thread Tracy Spratt
What is the result format of the HTTPService call? The default object causes the flex client to process the incoming data into a tree of dynamic objects. The speed of this process would be subject to the local cpu. You could set resultFormat to e4x, and re-run the benchmarks. Tracy Spratt,

[flexcoders] Re: Flash player 10 Debug not recognized in FB3

2009-04-23 Thread Jason
For FB3 you also need to make sure that you have I believe FB 3.0.2 in order to use FP 10 Debug player properly. Less then that and I was getting a ton warnings about not having the debug player. Thanks Mark, I see my version of Flexbuilder is 3.0.1, not 3.0.2! I'll try upgrading!

[flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread blkmajk111
Hey All, I'm having an issue that I was hoping someone can help me out with. I need to populate a datagrid based on XML being returned to Flex. The structure of the XML is as follows: root lab id=2 title=Chemical Materials assignment assignmentid=2 name=s2 s2 grade=B/

[flexcoders] Re: Stop sending data on socket aftter flush()

2009-04-23 Thread rangyjohn
--- In flexcoders@yahoogroups.com, rangyjohn debace...@... wrote: Is it possible? I tried with close() method and tested with wireshark but it continue sending data. Thanks! Is it possible that nobody run on this problem? This is something very simple and common but don't work :(

Re: [flexcoders] Re: RegEx string via cell ItemRenderer to colorize specific characters or a better method?

2009-04-23 Thread Adrian Williams
Hi Tim, This is perfect! It very nicely replaces ALL the instances of the find value. Thanks!! Adrian Tim Hoff wrote: Hi Adrian, I came across this function recently, that may suit you needs: *public* *static* *function* StringReplaceAll( source:String, find:String,

Re: [flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread Willy Ci
try this, my old code, mx:DataGrid id=dg3 width=100% dataProvider={orgXML.location} creationComplete=dg3.columns = generateCols(orgXML.location, false) rowHeight=20 click=selectStore(event) updateComplete=d3build() allowMultipleSelection=true

[flexcoders] Re: maxWidth property not working on Advanced DataGrid

2009-04-23 Thread labosox
I placed the height at 80 so that I could force a vertical scroll bar. That way I didnt have to add more data to turn on the vertical scroll bar. basically I need a grid to resize its entire width on a column resize event. When the grid's width is too large to fit in a panel, I want the grids

[flexcoders] Question about ASDocs

2009-04-23 Thread timgerr
When I run ASDocs on a project that works fine, I get some errors that somthing was not found at compile time. Is there a way to turn off errors and just write the documentation??? Thanks, timgerr

RE: [flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread Tracy Spratt
I don't see where you are you assigning the dataProvider. Either assign the data to a bindable var in the result handler, of assign the dataProvider directly. If assigning directly, you might need to use callLater() Tracy Spratt, Lariat Services, development services available _

[flexcoders] 360|Whisperings online Technical articles, looking for authors.

2009-04-23 Thread John Wilker
For those that don't know me, I'm John Wilker, co-founder of 360|Conferences (360|Flex, and 360|iDev). Tom Ortega and I have created a new venture to go along with our community oriented conferences. 360|Whisperings ( http://www.360whisperings.com). For those of you who own Amazon Kindles you know

RE: [flexcoders] e4x challenge

2009-04-23 Thread Tracy Spratt
Ah, great solution! Lots simpler than my recursive transformation suggestion. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Daniel Freiman Sent: Thursday, April 23, 2009 10:03 AM To:

RE: [flexcoders] DataGrid combobox erasing items from it's list

2009-04-23 Thread Tracy Spratt
So the scenario is: 1. user clicks cell, CB editor appears 2. user clicks away somewhere, without selecting anything 3. ComboBox closes 4. an empty string is stored in the dataProvider Yes? Is the change event and handler firing in this case? If so, then I think you

Re: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-23 Thread Marvin Froeder
Hi Jeff, Just curiosity, what Application Domain are you using? http://livedocs.adobe.com/flex/3/html/help.html?content=18_Client_System_Environment_5.html http://livedocs.adobe.com/flex/3/html/help.html?content=18_Client_System_Environment_5.html VELO On Thu, Apr 23, 2009 at 11:13 AM,

[flexcoders] How to zoom and pan everything in Stage

2009-04-23 Thread ACasualObserver
We have an Actionscript 3 application that adds several Layers (Sprite subclass) to the Stage and each of these layers other sprites that represent graphical elements. We need to implement zoom in, zoom out, and pan. What we need to do to make all the graphical elements to zoom and pan?

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-23 Thread Battershall, Jeff
I'm creating new ApplicationDomain just for the modules. -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Marvin Froeder Sent: Thursday, April 23, 2009 2:19 PM To: flexcoders@yahoogroups.com

[flexcoders] Imported SWC files don't display correctly

2009-04-23 Thread fumeng5
Hi, I am importing 4 swc files; a left arrow, right arrow, up arrow, and down arrow. The problem is that the right arrow displays as the left, and the down as the up arrow. When I preview the SWC files in their corresponding SWF files they look right. Has anyone else experienced problems

Re: [flexcoders] Dynamic Flex Stacked Column Chart

2009-04-23 Thread Maciek Sakrejda
What do you mean by aligned with each other? -Original Message- From: Richard Rodseth rrods...@gmail.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Dynamic Flex Stacked Column Chart Date: Thu, 23 Apr 2009 13:13:51 -0700 Trying one

Re: [flexcoders] Dynamic Flex Stacked Column Chart

2009-04-23 Thread Richard Rodseth
It looks like a stack of blocks where each one is shifted over a bit from the one below. On Thu, Apr 23, 2009 at 1:16 PM, Maciek Sakrejda msakre...@truviso.comwrote: What do you mean by aligned with each other? -Original Message- From: Richard Rodseth rrods...@gmail.com

[flexcoders] Re: Flash/FLex gravity

2009-04-23 Thread flexaustin
Not sure if the post went through. I have the book now. I am trying to make it work and I am almost there, but the sprite is only glides correctly when thrown if I drag from top right to lower left or lower left to top right. If I throw it directly to the right it moves up and if I throw it to

RE: [flexcoders] DataGrid combobox erasing items from it's list

2009-04-23 Thread Alex Harui
Tracy, this was posted on the Adobe forums as well with code and is being handled over there. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tracy Spratt

[flexcoders] How improve performance

2009-04-23 Thread b.kotireddy
Hi, In My application we are purly following Cairngorm framework. I am not much deep into the flex framework and its performance but my application is like the longer the application is in use, the slower it runs. Is anyone have any suggestions to improve the performance. I truly appreciate

[flexcoders] Re: Flash/FLex gravity

2009-04-23 Thread flexaustin
I have the book now. I am trying to make it work and I am almost there, but the sprite is only glides correctly when thrown if I drag from top right to lower left or lower left to top right. If I throw it directly to the right it moves up and if I throw it to directly to the left it goes down.

[flexcoders] Re: Flash/FLex gravity

2009-04-23 Thread flexaustin
I have the book now. I am trying to make it work and I am almost there, but the sprite is only glides correctly when thrown if I drag from top right to lower left or lower left to top right. If I throw it directly to the right it moves up and if I throw it to directly to the left it goes down.

[flexcoders] Re: DataGrid combobox erasing items from it's list

2009-04-23 Thread Tim Hoff
Hi, Your code looks fine. But, I believe that you need to handle the itemEditEnd event, for the DataGrid: mx:DataGrid itemEditEnd=onItemEditEnd(event);/ Something like this: private function onItemEditEnd(event:DataGridEvent):void { // Check the reason for the event. if

Re: [flexcoders] Dynamic Flex Stacked Column Chart

2009-04-23 Thread Richard Rodseth
Here's some sample code illustrating the problem, though in this version all columns in a category seem to be off: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[ private function

[flexcoders] How improve performance

2009-04-23 Thread b.kotireddy
Hi, In My application we are purly following Cairngorm framework. I am not much deep into the flex framework and its performance but my application is like the longer the application is in use, the slower it runs. Is anyone have any suggestions to improve the performance. I truly appreciate

Re: [flexcoders] How improve performance

2009-04-23 Thread Guy Morton
Use the profiler to see if you have a memory leak somewhere. Sounds like perhaps you are creating objects but not destroying them once you're done with them. Guy On 24/04/2009, at 6:03 AM, b.kotireddy wrote: Hi, In My application we are purly following Cairngorm framework. I am not

[flexcoders] module loading and progress load slow?

2009-04-23 Thread Jason B
loading modules I've been rearranging my application to use modules to reduce load time and prepare it to handle later larger development etc... All is well I've got it loading modules and such and learned a lot over the past few days. I have several modules that have large images it uses

RE: [flexcoders] How improve performance

2009-04-23 Thread Tracy Spratt
I trust you are not using creationPolicy='all anywhere? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of b.kotireddy Sent: Thursday, April 23, 2009 4:04 PM To: flexcoders@yahoogroups.com

[flexcoders] module loading and progress load slow?

2009-04-23 Thread Jason B
loading modules I've been rearranging my application to use modules to reduce load time and prepare it to handle later larger development etc... All is well I've got it loading modules and such and learned a lot over the past few days. I have several modules that have large images it uses

[flexcoders] Re: HTTPService mistery

2009-04-23 Thread markgoldin_2000
It is e4x. What have been identified, is that it runs fine for users who are local admin on the Web box ?? --- In flexcoders@yahoogroups.com, Tracy Spratt tr...@... wrote: What is the result format of the HTTPService call? The default object causes the flex client to process the incoming

[flexcoders] Download Flash Player

2009-04-23 Thread christophe_jacquelin
Hello, I have a problem when my Flex application is running on a computer without Flash Player. How to propose to the user the downloading of Flash Player ? Do you have any examples ? Thank you, Christophe,

[flexcoders] Gumbo: Styling Panels or Titlewindows when used as a popup not being styled.

2009-04-23 Thread flexaustin
Does anyone know why styling a popup in css has not bearing on the style that is shown when the popup is created? No matter what I set nothing shows up.

[flexcoders] Re: HTTPService mistery

2009-04-23 Thread markgoldin_2000
Posting again... It is e4x. It has been identified, that it works fine for users who are local admins on the Web box. How that can be??? --- In flexcoders@yahoogroups.com, Tracy Spratt tr...@... wrote: What is the result format of the HTTPService call? The default object causes the flex

[flexcoders] Popups and accessibility (JAWS)

2009-04-23 Thread KOVÁCS István
Dear All, I've been assigned the task of testing and fixing accessibility tasks in a Flex 3 application. One of the problems we're having is JAWS not reading popup windows. The Alert control works (when the alert pops up, title, message are read, focus is on the default button, and the default

[flexcoders] Re: difference between stage and application?

2009-04-23 Thread michaeljonknight
With the Flash/Flex Component Kit work for cs4? We are making a Flash 10 compliant swf... --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: You should use the Flash/Flex Component Kit to wrap your Flash content. Flash content won't work well in Flex without being wrapped in

[flexcoders] (unknown)

2009-04-23 Thread Eric Maslowski
Thanks for the response. That's exactly what I needed to hear and it sent me on the right path to get something working. Basically, I created a couple events for the various stages of the initialization and fired off the appropriate events once a particular operation completed. Thanks again.

Re: [flexcoders] Re: Flash/FLex gravity

2009-04-23 Thread Josh McDonald
Here's a working example I whipped up in 15 minutes: http://pastie.textmate.org/private/mmmbwwnwl0ly2ciurwvda -Josh 2009/4/24 flexaustin flexaus...@yahoo.com I have the book now. I am trying to make it work and I am almost there, but the sprite is only glides correctly when thrown if I

RE: [flexcoders] Download Flash Player

2009-04-23 Thread Tracy Spratt
The html wrapper generated by flex Builder has both the Flash Player version detection and express install functionality included. Generate or get a copy of that and copy the code into your own wrapper. Tracy Spratt, Lariat Services, development services available _ From:

RE: [flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread Tracy Spratt
Generate your columns as you are, you said that was working. But you still have to give the datagrid the data. How/are you doing that? Note, do not use XMLList if you are binding. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com

[flexcoders] Re: Dynamic Flex Stacked Column Chart

2009-04-23 Thread Tim Hoff
Hey Richard, I've found that charts don't like mxml as well as AS, when trying to update them dynmically. This works in AS: private function onTwoSeries(event:Event):void { var seriesA:ColumnSeries = new ColumnSeries(); var seriesB:ColumnSeries = new ColumnSeries();

Re: [flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread Josh McDonald
Also change this: col.dataField=gradebookBySection[i].children()@grade.toxmlstring(); to this: col.dataField = @grade; -Josh 2009/4/24 Tracy Spratt tr...@nts3rd.com Generate your columns as you are, you said that was working. But you still have to give the datagrid the data.

[flexcoders] testing posting

2009-04-23 Thread markgoldin_2000
I can't post anymore

[flexcoders] testing posting

2009-04-23 Thread markgoldin_2000
Is it working??

[flexcoders] VIEWSTACK question.

2009-04-23 Thread sailorsea21
Hi everyone, I have a question on viewstacks. I have my viewstack created on MXML with the main canvas also created in MXML. something like: mx:Viewstack id='myViewstack' creationPolicy='all' initialize='getOtherCanvases()' mx:Canvas id='mainCanvas'/ /mx:Viewstack At initialize I call

[flexcoders] Setting dateField.SelectedDate when component is disabled?

2009-04-23 Thread Mic
In a modal View state the dateFields are disabled but I need to populate them for the current record. I can stick my proc values in when they are enabled, but not when disabled. I tried dtCmplxStartDate.enabled = true; dtCmplxStartDate.selectedDate = tempStrtDt;

[flexcoders] Re: List sizing - height=100%

2009-04-23 Thread greg_lafrance
Maybe its your itemRenderer. This code works: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ import mx.collections.ArrayCollection; [Bindable] private var ac:ArrayCollection = new ArrayCollection([ one, two,

[flexcoders] Re: Dynamic Flex Stacked Column Chart

2009-04-23 Thread Tim Hoff
And if you wanted to make it truly dynamic: private function createChartSeries(event:Event):void { var chartSeries:Array = new Array(); var i:int; for (i = 0; i chartData.length; i++) { var series:ColumnSeries = new ColumnSeries();

Re: [flexcoders] Re: Dynamic Flex Stacked Column Chart

2009-04-23 Thread Richard Rodseth
Tim, You're right! It does seem to make a difference how the series object is instantiated. Odd. I was headed down the path of creating the whole chart chart in AS. Thanks for saving me from that/ On Thu, Apr 23, 2009 at 3:50 PM, Tim Hoff timh...@aol.com wrote: And if you wanted to make it

[flexcoders] Synchronize time

2009-04-23 Thread lehaianh1986
Hi all, can AIR have ability to check date-time from internet? Depend on my knowledge, I think I need to send request to some websites, then receive the response is the date. Any one know about it can help me? I search but don't see anything guide me to do that.

RE: [flexcoders] Setting dateField.SelectedDate when component is disabled?

2009-04-23 Thread Tracy Spratt
What happens? How are you sure the dates are not being set? What happens if you do this after setting a date: Trace(dtCmplxStartDate.toDateString(0); Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: difference between stage and application?

2009-04-23 Thread Alex Harui
I haven't heard that it doesn't, but I don't keep tabs on it either. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of michaeljonknight Sent: Thursday, April

[flexcoders] Re: Drive Letters and Ant

2009-04-23 Thread cuttenv
The one that came with 3.2.0 --- In flexcoders@yahoogroups.com, Gregor Kiddie gkid...@... wrote: Which version of flexTasks.jar are you using? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London