[flexcoders] Flex and Flashpaper?

2007-12-27 Thread markflex2007
Hi, Would you please let me know how to output print content to Flashpaper with Flex. Thanks Mark

[flexcoders] FLEX 2 do not support mx:Loader,why?

2007-12-27 Thread markflex2007
Hi, I do know why flex 2 doesn't work with the following code http://localhost/guidelines.swf"; /> other component do the same job?Thanks Mark

[flexcoders] why frontcontroller doesn't work?

2007-12-27 Thread markflex2007
Hi, After add the statement to FrontController this.addCommand(LoginEvent.PROCESSES, LoginCommand); LoginCommand never happen when LoginEvent active.why? Thanks Mark

[flexcoders] data binding question for Cairngorm?

2007-12-28 Thread markflex2007
Hi I have the carirngorm code here import ca.sb.CESF.ESF.vo.PersonVO; [Bindable] public var modelLocator:CESFESFModel = CESFESFModel.getInstance(); * personData is a instance of PersonVO and it is defined in CESFESFModel. I get a warning err

[flexcoders] Alert window position?

2007-12-28 Thread markflex2007
Hi, I have the Alert popup window(Alert.show) but it appear in the right side of the screen,I want to know how to make it popup at center of the screen. Thanks Mark

[flexcoders] Re: data binding question for Cairngorm?

2007-12-28 Thread markflex2007
yes. it works but I still get warning message,how to fix this to remove the warning message. Mark --- In flexcoders@yahoogroups.com, "Tianzhen Lin" <[EMAIL PROTECTED]> wrote: > > I don't think you get an error, but warning instead. If you see no other > error, try and run the app and see if

[flexcoders] Save data from datagrid to database?

2008-01-02 Thread markflex2007
Hi, I have a datagrid that is changed by events. I want to save all the data in datagrid to database with coldfusion,I am not sure how to get all the data from datagrid and save them to db. Please give me a hit. Thanks Mark

[flexcoders] How to limited input text to textInput control?

2008-01-03 Thread markflex2007
I have two TextInput ( textIn1,textIn2), textIn2 bind to textIn1input like {textIn2.Text = textIn1.Text}. I want textIn2 only bind to textIn2 and do not accept typing text. which attribute of textInput can do this. Thanks Mark

[flexcoders] enforce "mx:DateField" date selection?

2008-01-04 Thread markflex2007
Hi, I want to use mx:DateField and disable all the dates before today. and only can select date after today. Please give me a hit. Thanks Mark

[flexcoders] Do you know book for Flex 3?

2008-01-07 Thread markflex2007
Hi, I want to know if some books for Flex 3 released.Please give me some suggestion about this. Thanks Mark

[flexcoders] Which Framework is better?

2008-01-07 Thread markflex2007
Hi, I need select a framework to work with Flex 2/3,I see many frameworks by internet.Cairngorm etc Please give an advice.Thanks Mark

[flexcoders] Datagrid editable question?

2008-01-07 Thread markflex2007
Hi, The Datagrid can update the text if the editable attribute enable. It is ok to update text data. May I embed a dropdown list in the Datagrid to update the field data because the field data is input by dropdown menu and no simple text input. Thanks Mark

[flexcoders] How to pass ArrayCollection from Flex to coldfusion?

2008-01-08 Thread markflex2007
Hi, I need pass ArrayCollection data from Flex to coldfusion,Please give me a idea how to do this. Thanks Mark

[flexcoders] TextInput editable property doesn't work,why?

2008-01-09 Thread markflex2007
Hi, I have the following code and I want to set the textInpt can not edited,But I do not know why the following code do not work. Please help me.Thanks Mark 1 http://www.adobe.com/2006/mxml"; width="880" height="1300" creationComplete="init()" > 2 private function init():void

[flexcoders] which Flex componet is similar to HTML table?

2008-01-09 Thread markflex2007
Hi, I need design table with line to seperate cells,please let me know how to do this in Flex. Thanks Mark

[flexcoders] about flex component!

2008-01-11 Thread markflex2007
Hi, I know how the MXML application use Flex MXML componet, it just add new name space in tag. I want to make sure if MXML component can use other MXML component, and how to add the name space (xmlns:), Please give me a idea or simple demo.Thanks Mark

[flexcoders] how to update database with update datagrid value.?

2008-01-13 Thread markflex2007
Hi, Datagrid can be editable, I need update the back end database after Datagrid updated. Which event I can use and how to pass the new value to backend.I am using Coldfusion now. Thanks Mark

[flexcoders] Highlight item in Datagrid

2008-01-17 Thread markflex2007
Hi I have a user list with Datagrid in current page,I pass a user id from other page to current page.I want to lighlight the user in the Datagrid with the special user ID I get from other page. Please let me know how to do this with datagrid. Mark Thanks Mark

[flexcoders] Re: Highlight item in Datagrid

2008-01-18 Thread markflex2007
selectedIndex. > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of markflex2007 > Sent: Thursday, January 17, 2008 2:41 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Highlight item in Dat

[flexcoders] How to change the text in datagrid ?

2008-01-18 Thread markflex2007
Hi, I have a account list like this accout name status acc1 1 acc2 0 acc3 1 It is ok binding with datagrid. but I like it showed in datagrid like this accout name status acc1 open acc2 close acc3 open How to change 1 to "open" and 0 to "clo

[flexcoders] How to fetch files from Flex Builder 2?

2008-01-22 Thread markflex2007
Hi, I just build a new project and want to fetch files from CVS Server,Do you know how to do this in Flex Builder 2? I try many time and always get error message.why? I check all the Adobe Flex documentation,I can not see much information about CVS. Thanks Mark

[flexcoders] How to fetch files from Flex Builder 2 from CVS Server?

2008-01-22 Thread markflex2007
Hi, I just build a new project and want to fetch files from CVS Server,Do you know how to do this in Flex Builder 2? I try many time and always get error message.why? I check all the Adobe Flex documentation,I can not see much information about CVS. Thanks Mark ** Sorry I just delete the last

[flexcoders] Alert Box location??

2008-02-05 Thread markflex2007
Hi. I use Alert.show to show some text but the Alert box go to coner of the screen I try to use the following code,but I get two alert box var alert1:Alert = Alert.show("Please input user name"); PopUpManager.centerPopUp(alert1);

[flexcoders] Re: Alert Box location??

2008-02-05 Thread markflex2007
I use Alert.show to show some text but the Alert box go to coner of the screen without using PopUpManager.centerPopUp. Mark --- In flexcoders@yahoogroups.com, "markflex2007" <[EMAIL PROTECTED]> wrote: > > Hi. > > I use Alert.show to show some text but the A

[flexcoders] Array function error?

2008-02-06 Thread markflex2007
Hi, I did a simple code public var filenames1:Array = new Array(""); filenames1.push("abc"); but I get a error "Access of undefined property filenames1." I do not know what is wrong. Please give me a idea to fix it. Thanks Mark

[flexcoders] pass Array from Flex to cfc and pass Array from cfc to Flex?

2008-02-07 Thread markflex2007
Hi, The index start from 0 in Flex and index start from 1 in Coldfusion. How to pass array between Flex and CFC? Please give me a idea. Thanks Mark

[flexcoders] cairngorm generator

2008-02-09 Thread markflex2007
Hi, I try one online but it hard to use. Do you know which one is easy to use? the tool only create site structure. Thanks Mark

[flexcoders] creationComplete?

2008-02-11 Thread markflex2007
I have two screens in Flex,for instance screen1 screen2 the creationComplete in screen2 triggered when the screen move from screen1 to screen2 first time. then I go back from screen2 to screen1 with other code. but the creationComplete in screen2 doesn't triggered when the screen move from s

[flexcoders] An ArrayCollection question ?

2008-02-12 Thread markflex2007
Hi, I have a ArrayCollection acDept that saved the data passed from coldfusion cfc SELECT DeptId, Dept FROM DeptList I want loop over all the ArrayCollection and show all the DeptId.I use the following code and I get error for "acDept.valueOf("DeptID")." for ( var

[flexcoders] How to get current year

2008-03-13 Thread markflex2007
I get empty string with the following code.why? Thanks http://www.adobe.com/2006/mxml"; layout="absolute">

[flexcoders] DateField disabledRange attribute setting?

2008-03-14 Thread markflex2007
Hi, I want to limited DateField and let only select date in current year.I want to set the disabledRange propery, Do you have a idea how to set it? Please help me.Thanks Mark

[flexcoders] Re: DateField disabledRange attribute setting?

2008-03-14 Thread markflex2007
> hth > Scott > > Scott Melby > Founder, Fast Lane Software LLC > http://www.fastlanesw.com > http://blog.fastlanesw.com > > > > markflex2007 wrote: > > Hi, > > > > I want to limited DateField and let only select date in current > >

[flexcoders] How to pass Flex ArrayCollection to Coldfusion CFC?

2008-03-20 Thread markflex2007
How to pass Flex ArrayCollection to Coldfusion CFC? Which data type in coldfusion can accept Flex ArrayCollection? Thanks Mark

[flexcoders] Re: How to pass Flex ArrayCollection to Coldfusion CFC?

2008-03-21 Thread markflex2007
;m sure this is documented somewhere; did you look? > > markflex2007 wrote: > > > > > > How to pass Flex ArrayCollection to Coldfusion CFC? > > > > Which data type in coldfusion can accept Flex ArrayCollection? > > > > Thanks > > > > Mark &

[flexcoders] Re: How to pass Flex ArrayCollection to Coldfusion CFC?

2008-03-25 Thread markflex2007
gt; > > --- In flexcoders@yahoogroups.com, "markflex2007" > wrote: > > > > A documentation said Flex ArrayCollection maps to Coldfusion query, > > > > Do you have a sample to do this so I can understand it. > > > > Thnaks > > > &g

[flexcoders] Re: How to pass Flex ArrayCollection to Coldfusion CFC?

2008-03-25 Thread markflex2007
Hi, I try to pass flex ArrayCollection to coldfusion cfc like following http://www.adobe.com/2006/mxml"; layout="vertical"> This is the cfc:

[flexcoders] How to get data in initial function in Flex 3?

2008-03-26 Thread markflex2007
Hi, I am working for conver Application form Flex 2 to Flex 3. I have the following code,I can see in the dataGrid and ArrayCollection length in the label "loopNumber",but why I can not get ArrayCollection length in initPage() for Flex 3 and the loop doesn't work. But I can get ArrayCollection

[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.

[flexcoders] pass value from two Flex file?

2008-04-14 Thread markflex2007
Hi, Please help me to know how to pass value from two Flex file with navigateToURL? I use navigateToURL from page1 to go to page 2 Thanks

[flexcoders] pass value with navigateToURL?

2008-04-14 Thread markflex2007
Hi, Please help me to know how to pass value from one Flex file to other flex file with navigateToURL? I use navigateToURL to pass variable from page1 to go to page 2 Thanks

[flexcoders] How to close current windows?

2008-04-15 Thread markflex2007
Hi, Javascript 'window.close()' will close current. I need close current window from Flex.that mean I need a function in Flex to the javascript. Please give me a idea how to do this. Thanks Mark

[flexcoders] A Question about Cairngorm?

2008-04-16 Thread markflex2007
Hi, I work with Cairngorm for couple months. I use delegate to connect with Server and use command to get the data from delegate. Now the delegate file and command file are separate files. Somebody told me I can combine delegate with command so I do not need to build so many file. Do you know so

[flexcoders] Re: A Question about Cairngorm?

2008-04-17 Thread markflex2007
> > } > > public function result(data:Object):void > > { > > } > > public function fault(info:Object):void > > { > > } > > } > > > On Wed, Apr 16, 2008 at 10:33 AM, markflex2007 <[EMAIL PROTECTED]> > wrote: > > &

[flexcoders] Button in DatGrid problem

2008-04-24 Thread markflex2007
Hi, I add a buttin in datagrid.But why the button always fill the all column width. I try to set it 20 but the column width is 100. it always like 100 in the layout. why? Thanks Mark

[flexcoders] Style for Alert box?

2008-04-24 Thread markflex2007
Hi, I have a class like ( .box1{...} ) in css file. I need the Alert use the class "box1".How to set the style name to Alert box. Thanks Mark

[flexcoders] mx:GroupingField field order?

2008-04-25 Thread markflex2007
Hi, I use mx:AdvancedDataGrid and the current order is "Microsoft" then "Blizzard", Please let me know if I want to change the display order. Thanks ps:code http://www.adobe.com/2006/mxml"; layout="absolute" width="379" height="156" viewSourceURL=

[flexcoders] Question for creationComplete event?

2008-04-29 Thread markflex2007
Hi, I develop a application that have many screen and I develop each screen with a flex component (*.mxml page). I use creationComplete event in one screen but the function only execute when I first access the screen. But I need execute the function when I access the screen because the database c

[flexcoders] DateFormatter question?

2008-04-29 Thread markflex2007
Hi, I read a date from SQL server.that is "2008-04-29 16:30:43.000" But When I use the DateFormatter it show "04/29/400" Why this happen and how to fix this. Thanks Mark

[flexcoders] binding question?

2008-04-30 Thread markflex2007
I have two screens for testing. a) I set object values in screen 1 (for instance obj.value ="abc") and go to screen 2 b) I show the value in screen 2 with binding (for instance and go to screen 1 it works fine when it excute first time.(from screen 1 to screen 2) Afater I change from screen 2

[flexcoders] question for cairngprm ModelLocator?

2008-04-30 Thread markflex2007
Hi I use cairngorm. obj1 is property in modelLocator and it is a instance of a VO I have the code in the view page ... [Bindable] private var modelLocator : ModelLocator = ModelLocator.getInstance(); ... ... but I get the error ' Data blinding will not be able to detect assignments

[flexcoders] AdvancedDataGrid group feature?

2008-05-05 Thread markflex2007
Hi, I did a AdvancedDataGrid without group,it works fine. But it shows nothing with group feature. I check the syntax but it seems ok. do you know why this happen. Thanks

[flexcoders] questionfor AdvancedDataGrid?

2008-05-06 Thread markflex2007
Hi, I have the following question about AdvancedDataGrid? The code works fine:(code 1) http://www.adobe.com/2006/mxml"; backgroundColor="#32669D" xmlns:ext="nl.wv.extenders.panel.*" width="854">

[flexcoders] Re: questionfor AdvancedDataGrid?

2008-05-06 Thread markflex2007
[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>-b-gmbh.com<mailto:[EMAIL PROTECTED]> > Web: www.plan<http://www.plan-b-gmbh.com/>-b-gmbh.com<http://www.plan-b-gmbh.com/> > > Geschäftsführer > Tobias Schmailzl > Ralph Sturm > Registergericht Ulm > HRB 720355 >

[flexcoders] AdvancedDataGrid doesn't update with real data?

2008-05-06 Thread markflex2007
Hi, I am working with cairngorm with Flex 3. I use Datagrid before in the page and it works fine.The Datagrid automatically update when the data updated in database. ...

[flexcoders] Re: AdvancedDataGrid doesn't update with real data?

2008-05-07 Thread markflex2007
. If you are not the intended recipient > please contact [EMAIL PROTECTED] > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of markflex2007 > Sent: 06 May 2008 18:17 > To: flexcoders@yahoogroups.com > Subject: [flexco

[flexcoders] refresh datagrid in current page?

2008-05-07 Thread markflex2007
Hi, I need to build a button and the datagride in current page refresh when I click the button because the data is changed Do you think if it is possible to refresh the datagride every 10 min.? Thanks Mark

[flexcoders] Flex,PHP ,PHPAMF(OR WEBORB) and Cairngorm Demo links need

2008-05-11 Thread markflex2007
I plan to develop a Flex,PHP and Cairngorm application. But I do not have a idea about that.Please help.Thanks Mark

[flexcoders] Flexstore problem

2008-05-13 Thread markflex2007
I try to run the store in my local pc. But I am not lucky and it look for "beige.swf" file,I check the folder ,it only have "beige.css" file. Do you think I can create the beige.swf with beige.css? Please let me know how to do this. Thanks Mark

[flexcoders] Re: Flexstore problem

2008-05-13 Thread markflex2007
Hi, I try to run this "mxmlc beige.css" in command line , but I get error message. How to do "mxmlc on it" Thanks Mark --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Tuesday 13 May 2008, markflex2007 wrote: > > Do you

[flexcoders] coldfusion and Flex?

2008-05-15 Thread markflex2007
Hi, I am working with CF7,Flex and Cairngorm.the application works fine. My manager want to use CF8 now, I do not have idea what I have to change from setting up project to Flex coding etc. I need to know the steps before I switch cf7 to cf8. Do you have experience for this.Please give me a hi

[flexcoders] The BlazeDS server ?

2008-05-16 Thread markflex2007
Hi Do I have to install BlazeDS if I want to use remoteobject with Coldfusion and Flex. I am very confuse when I need use BlazeDS.Please give me an idea. Thanks Mark

[flexcoders] How to do Flex,coldfusion and LCDS?

2008-05-16 Thread markflex2007
Hi, Please give me a idea how to set up the development enviroment for the purpose. I use Flex with remote object before but I do not have idea for developing with LCDS. Please let me know if you need some url for this. Thanks Mark

[flexcoders] How to convert Powerpoint presentation tp Flex or Flash?

2008-05-18 Thread markflex2007
I have a ppt file and want to play it with Flex. Please give me a idea how to do this. Thanks Mark

[flexcoders] Flex play powerpoint presentation?

2008-05-19 Thread markflex2007
Hi, Please let me know if Flex or Flash can call(or play) ppt files directly. Thanks Mark

[flexcoders] Authorware to Flex?

2008-05-19 Thread markflex2007
Hi, We plan to redo a authorware application with Flex. I can not find a reference about this by google. Do you have some information about this? and if it is possible for doing this. Thanks Mark

[flexcoders] cairngorm and webservice demo?

2008-05-22 Thread markflex2007
hi, I use cairngorm with remoteobject before. I plan to develop a new app with cairngorm and webservice, I want to see a sample code to figure out how to do this. Do you have some url or information for this? thank you in advance. Mark

[flexcoders] question for cairngorm with .net webservice?

2008-05-23 Thread markflex2007
Hi, I have a question how to pass VO(valuse object) from Flex to .net web service. I also need pass object back to flex with .net web service. I am using framework now. Do you know where I can find a Demo how to do this things. I do not have idea about the data match between .net and Flex. Th

[flexcoders] pass xml data by web service from Flex?

2008-05-25 Thread markflex2007
Hi, Do you think if it is possible to pass xml data to backend with web serice? Thanks Mark

[flexcoders] question using cairngorm with SequenceCommand?

2008-05-30 Thread markflex2007
Hi, I am using cairngorm with SequenceCommand.I attach my command code here. My question is how to pass variable from execute function to next event in constructor. Here I want to pass "sID" in execute function to "this.nexsqment = new EventLissqment(sID);" in function CloseEventCommand. But I

[flexcoders] how to keep slide thumb in hslide can not be dragged

2008-06-04 Thread markflex2007
Hi I did this but it just move back and I need set the hslide value from code and do not allow it draggable.I need the hslide just show the result. http://www.adobe.com/2006/mxml"; layout="absolute"> Please give me a idea Thanks Mark

[flexcoders] Re: how to keep slide thumb in hslide can not be dragged

2008-06-04 Thread markflex2007
t;[EMAIL PROTECTED]> wrote: > > Will mouseEnabled = false; work? > > On Wed, Jun 4, 2008 at 3:23 PM, markflex2007 <[EMAIL PROTECTED]> wrote: > > > Hi > > > > I did this but it just move back and I need set the hslide value from > > code an

[flexcoders] how to call a function automatically?

2008-06-05 Thread markflex2007
Hi, I want to call a function in flex every minute to check the data change in database. Maybe I need build a timer to trig the function automatically ? Which class I can use to do this in Flex? Please give me a idea.Thanks Mark

[flexcoders] How to get a item in Arraycollection?

2008-06-07 Thread markflex2007
Hi, I have a demo here: acTest = new ArrayCollection([{first: 'Matt', last: 'Matthews'},{first: 'Jame', last: 'Wang'},{first: 'Rey', last: 'Chang'}]); trace(acTest.length.toString()); trace(acTest.list.source[0].first); I want to use 'acTest.list.source[0].first' to

[flexcoders] How to pass data to popup window?

2008-10-31 Thread markflex2007
Hi , I need pass data from main window to popup window(mx:titlewindow).Please give me a idea how to do this. Please post here if you have a demo code to do this. Thanks Mark

[flexcoders] use AIR to read image and show them?

2008-11-07 Thread markflex2007
Hi, can you give me a idea how to do it. I am new for this .thanks mark

[flexcoders] show local image in AIR application.

2008-11-07 Thread markflex2007
Hi, I want to build a AIR app the browser local image file and show them. can you give me a idea to do this? I am new for AIR. Thanks Mark

[flexcoders] Re: show local image in AIR application.

2008-11-07 Thread markflex2007
I try this but I can not get bitmap.why?Thanks for help. http://www.adobe.com/2006/mxml"; layout="absolute">

[flexcoders] How to save/read image to database?

2008-11-07 Thread markflex2007
Hi, I want to save image to database as binary data and read the binary data out and show it in Flex application. I can handle back end codes and database. My question what need to do in Flex side for this? Thanks for help. Mark

[flexcoders] How to get image data and save it?

2008-11-10 Thread markflex2007
Hi, I develop an AIR application. I use file browser to select a image file and I want to get the image data and save it to database so other people can see the image by reading the image data in database. I can not save the imageFile.url to database because other people do not have the image in

[flexcoders] Re: How to get image data and save it?

2008-11-10 Thread markflex2007
Maybe my question is how to read a file to binary format and save it to db. Thanks Mark --- In flexcoders@yahoogroups.com, "markflex2007" <[EMAIL PROTECTED]> wrote: > > Hi, > > I develop an AIR application. I use file browser to select a image > file and I want

[flexcoders] Re: How to get image data and save it?

2008-11-10 Thread markflex2007
Hi Cato, Please send me your post link. I can not see your post with code. Thanks Mark

[flexcoders] How to get Date type data from mx:DateField?

2008-11-10 Thread markflex2007
Hi, I need get the Date type data from DateField,I can get String type data with text attribute but I can not convert it to Date type. Please give me a idea. Thanks Mark

[flexcoders] May I save BitmapAsset instance to database?

2008-11-18 Thread markflex2007
Hi, I create a BitmapAsset instance from image class and I want to save it to database and other people can see the image when he read out BitmapAsset instance from database. Do you think if it is possible? and how to save and read from database? Thanks Mark

[flexcoders] Error: unable to open locale/en_US

2008-11-19 Thread markflex2007
Hi, I get the error: unable to open locale/en_US after I add the following compiler arguments: -locale=en_US,fr_FR -source-path=locale/{locale}. But I have the folder locale/en_US. Please help me.Thanks Mark

[flexcoders] Re: May I save BitmapAsset instance to database?

2008-11-19 Thread markflex2007
Hi Michael, Thanks. Would you please give me an idea how to save Video or Audio data to database like saving image with ByteArray. Thanks Mark --- In flexcoders@yahoogroups.com, "Michael VanDaniker" <[EMAIL PROTECTED]> wrote: > > Your question is a bit vague, but I'll try and be of some help. >

[flexcoders] How to extract and save the contents of an image ,audio or video file ?

2008-11-20 Thread markflex2007
Hi, I am doing a AIR application I need to extract and save the contents of an audio or video file to a database. Please give me an idea how to do this. Thanks Mark

[flexcoders] How to config LCDS in websphere 6?

2008-11-20 Thread markflex2007
Hi, I have a websphere server and I plan add LCDS on it.I need to build a Flex application with remote object. Please give me idea how to make LCDS working on Websphere. Thanks Mark

[flexcoders] Re: How to extract and save the contents of an image ,audio or video file ?

2008-11-20 Thread markflex2007
which object I need to save to database for image,audio and video. Thanks

[flexcoders] How to set reference to parent?

2008-11-25 Thread markflex2007
Hi, I added a component to a container like this: container1.addChild(component1); now I want to change the property of container in the component.how to set the reference of the parent container,I do not remember that. Please help me. I try parent.x = 1 but it doesn't work.Thanks Mark

[flexcoders] simple way to draw a 3D ball?

2008-11-25 Thread markflex2007
Hi. I am look for a simple way to have a 3D ball with Text on it. Please give me a idea. Thanks Mark

[flexcoders] How Flex read data from swf or change data in swf?

2008-12-05 Thread markflex2007
Hi Do you think if it is possible? This is for the Flex and Flash communication. Thanks Mark

[flexcoders] look for a Air application demo with Fabrication framework?

2008-12-08 Thread markflex2007
Hi, Fabrication framework is a extension from pureMVC multicore. http://code.google.com/p/fabrication/ I try a Flex demo and it works fine. but it has error when I convert it to Air application. Do you have experience for that? Do you have a Air demo? Thanks Mark

[flexcoders] How to make Flex exchange data with Flash SWF file?

2008-12-09 Thread markflex2007
Please give me a general idea or some urls. Thanks a lot Mark

[flexcoders] Re: How to make Flex exchange data with Flash SWF file?

2008-12-09 Thread markflex2007
Thank. How to get data from the swf. Thanks Mark

[flexcoders] Date format in DataGrid?

2008-12-10 Thread markflex2007
I display data with DataGrid and dataProvider bind to a arraycollection (dataProvider="{acUsers}"), one column in the DataGrid is Date field. My question is how to change the Date display format in the DataGrid (like 2008-5-20). Thanks for help Mark

[flexcoders] How to call Flex function in Flash file?

2008-12-11 Thread markflex2007
I embed a swf in Flex, Do you think if it is possible for the Flash swf can access Flex function? How to do this with as3 in flash and flex? Thanks Mark

[flexcoders] SWFLoader runtime error?

2008-12-11 Thread markflex2007
Hi, This is the code This is the error message Error #2044: Unhandled securityError:. text=Error #2140: Security sandbox violation: file:///D:/WORKSPACE/Flex Builder 3/FFTest1/bin-debug/FF_Talk_Simple.swf cannot load file:///D:/WORKSPACE/Flex Builder 3/FFTest1/bin-debug/asset/ffTalkSimpleSwf

[flexcoders] Re: SWFLoader runtime error?

2008-12-11 Thread markflex2007
fixed.Thanks

[flexcoders] How to change two level parent currentstate?

2008-12-15 Thread markflex2007
I did this but I get error.Please help me. this.parentApplication.parentApplication.currentState = 'test1' Thanks Mark

[flexcoders] How to open the popup many time?

2008-12-17 Thread markflex2007
Hi, I have a component file. BasicWindow.mxml http://www.adobe.com/2006/mxml"; layout="absolute" width="300" height="200"> This is the main file,but I only can open the window once,I want to know how to open it many times.Please help me.Thanks main.mxml private var win:Ba

<    1   2   3   4   5   >