[flexcoders] Re: cfc do not understand cairngorm VO?

2007-12-05 Thread markflex2007
Please let me know where I can download the latest version CF extensions .Please help me. Mark --- In flexcoders@yahoogroups.com, Muzak [EMAIL PROTECTED] wrote: If you're using FlexBuilder, install the ColdFusion Extensions for Flex Builder (they're in the Flex Builder install dir). I've

[flexcoders] cfc can not get cairngorm VO data?

2007-12-05 Thread markflex2007
Hi I am using cairngorm with cfc now. I make some progress and the error like this: Services.mxml ?xml version=1.0 encoding=utf-8? cairngorm:ServiceLocator xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:cairngorm=com.adobe.cairngorm.business.* !-- Bursary

[flexcoders] Re: cfc do not understand cairngorm VO?

2007-12-05 Thread markflex2007
I create the PersonVO with the cfc wizard,the error still same. PersonVO.cfc cfcomponent displayname=PersonVO hint=Login VO For CairngormTest output=false cfproperty name=firstname type=string default= cfproperty name=lastname type=string default= cfproperty name=sid

[flexcoders] cairngorm value object type and cfc type do not match,why?

2007-12-05 Thread markflex2007
I have built a cfc vo class and flex vo class PersonVO.as package com.abc.CESF.Bursary.vo { import com.adobe.cairngorm.vo.IValueObject; [RemoteClass(alias=Bursary.cfcs.PersonVO)] public class PersonVO implements IValueObject { public var firstname:String = ; public var lastname:String = ;

[flexcoders] Re: cfc do not understand cairngorm VO?

2007-12-05 Thread markflex2007
Hi, Do you think if it is possible to use Object object to take place VO object? and from cfc we can use struct I try VO many dates but why cfc can not accept the flex vo. Thanks Mark --- In flexcoders@yahoogroups.com, João Fernandes [EMAIL PROTECTED] wrote: try to set the Alias attribute

[flexcoders] How to upload file with Flex and coldfusion?

2007-12-05 Thread markflex2007
Please let me know which component I can use to do this.or post some URLs for this. Thanks Mark

[flexcoders] Download link in Flex with CFML

2007-12-11 Thread markflex2007
Hi, I am new for Flex and I need build a download link in Flex,I can download a Doc/Pdf file when I click the link. I am using Flex and Coldfusion, Please let me if you have experience for this, Thanks a lot Mark

[flexcoders] File list in Flex

2007-12-13 Thread markflex2007
Hi, I am working with Coldfusion 7.02 and Flex 2 now. I want to use cfdirectory to list the files in a folder in web server and pass the file list to Flex then list all the file names in Flex. I also hope I can download the file when I click each file name in the list. Please give me a idea

[flexcoders] ArrayCollection question in Cairngorm?

2007-12-17 Thread markflex2007
Hi, I have a simple cfc, the function is like this,it get a department list cffunction name=getDept displayname=getDept access=remote output=false returntype=query cfquery name=getDepartment datasource=bursary SELECT Id, Dept

[flexcoders] How to show data in Flex ComboBox ?

2007-12-17 Thread markflex2007
Hi I am using cfc get a list and want to show the list in Flex ComboBox. Please give a idea how to do this. Thanks a lot Mark

[flexcoders] combobox value?

2007-12-17 Thread markflex2007
Hi, I have a combobox like mx:ComboBox id=userSelect dataProvider={userList} labelField=userName/ I have username and userID and I will send the userid to database. which attribute in ComboBox I can use to save the userid value? the userList is ArrayCollection and have username and userid.

[flexcoders] How to show top of the page?

2007-12-18 Thread markflex2007
I have a lot long screens (pages) under ViewStack,I only see bottom of next page when I switch to next page from one page because the next button in the bottom of current page. I change to see top of next page when I change a new page but I see bottom of next page. Please give me a idea

[flexcoders] start position for Flex pages

2007-12-20 Thread markflex2007
Hi, I put all my pages under ViewStack,I want to reset the position of all pages to zero through Flex. Is it possible to do this? That means the pages display on the top part when I change to a new page because all the page is very long now. Please help me out. Mark

[flexcoders] data binding question

2007-12-20 Thread markflex2007
Hi I do not know why the data binding doesn't work.Please help me out. mx:Script ![CDATA[ private function getTotal():Number{ var cost1:Number= Number(cost1.text) var cost2:Number= Number(cost2.text)

[flexcoders] How to compare with NaN?

2007-12-20 Thread markflex2007
Hi, I have the simple code here var Total_cost : Number = Number(cost1) + Number(cost2); if (Total_cost == NaN) { Total_cost = -1; } I get a error.Please help me out.Thanks Mark

[flexcoders] how to pass varible between screens?

2007-12-21 Thread markflex2007
Hi, I have some screens under ViewStack like this mx:ViewStack view:Form1View / view:Form2View / view:Form3View / view:ThankyouView / /mx:ViewStack I have a variable in

[flexcoders] creationComplete question?

2007-12-21 Thread markflex2007
Hi I have some screens under ViewStack like this mx:ViewStack view:Form1View / view:Form2View / view:Form3View / view:ThankyouView / /mx:ViewStack I have set creationComplete event to call a function for Form2View, but the event is actived when I call the app first time(it

[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 mx:Loader id=loader_1 contentPath=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(); mx:TextInput id=eligible_total x=723.5 y=1294 width=82 text={getEligible

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

[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 mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; width=880 height=1300 creationComplete=init() 2 private function

[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 mx:Application 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
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 Datagrid Hi I have a user list with Datagrid in current page,I pass a user

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

[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

[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 Alert box go to coner of the screen I

[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

[flexcoders] An ArrayCollection question ?

2008-02-12 Thread markflex2007
Hi, I have a ArrayCollection acDept that saved the data passed from coldfusion cfc cfquery name=getDepartment datasource=bursary SELECT DeptId, Dept FROM DeptList /cfquery I want loop over all the ArrayCollection and show all the DeptId.I use the following code and I

[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? mx:DateField x=160 y=129 disabledRange=?/ Please help me.Thanks Mark

[flexcoders] Re: DateField disabledRange attribute setting?

2008-03-14 Thread markflex2007
/langref/mx/controls/DateField.html#disabledRanges 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 year.I want to set

[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
; did you look? markflex2007 wrote: How to pass Flex ArrayCollection to Coldfusion CFC? Which data type in coldfusion can accept Flex ArrayCollection? Thanks Mark -- Jeffry Houser Flex, ColdFusion, AIR AIM: Reboog711 | Phone: 1-203-379-0773 -- Adobe Community

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

2008-03-25 Thread markflex2007
Kerr [EMAIL PROTECTED] wrote: I put this demo together for my Space City AUG meeting to show the basics of ColdFusion-Flex. I think these two examples will get you what you need http://www.fusionpage.com/flex/demos/bin/demos.html Don Kerr --- In flexcoders@yahoogroups.com, markflex2007

[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 ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[ import mx.controls.Alert; import

[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

[flexcoders] Re: A Question about Cairngorm?

2008-04-17 Thread markflex2007
().getRemoteObject( myService ) ; var token:AsyncToken = service.someMethod(); token.addResponder(this); } 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 mx:DataGrid id=dg1 dataProvider ={dp} mx:columns mx:DataGridColumn width=100

[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 mx:GroupingCollection. In the following code. My question is how to decide the order of publisher field in the visual component mx:GroupingCollection id=gc source={gamesData} mx:Grouping mx:GroupingField name=publisher /

[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

[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 mx:DateFormatter id=dateFormatter formatString=MM/DD// 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 mx:Label x=37 y=46 text={obj.value}/ and go to screen 1 it works fine when it excute first time.(from screen 1 to

[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(); ... mx:TextInput id=cname x=306 y=43 text={modelLocator.obj1.name} width=196 / ...

[flexcoders] AdvancedDataGrid group feature?

2008-05-05 Thread markflex2007
Hi, I did a AdvancedDataGrid without group,it works fine. mx:AdvancedDataGrid x=8 y=72 width=558 height=247 rowCount=4 dataProvider={modelLocator.QModel} mx:columns mx:AdvancedDataGridColumn headerText=Name dataField=Name/

[flexcoders] questionfor AdvancedDataGrid?

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

[flexcoders] Re: questionfor AdvancedDataGrid?

2008-05-06 Thread markflex2007
Gesellschaft ist Aalen Ust.ID DE250875731 Von: flexcoders@yahoogroups.com [EMAIL PROTECTED] im Auftrag von markflex2007 [EMAIL PROTECTED] Gesendet: Dienstag, 6. Mai 2008 15:55 An: flexcoders@yahoogroups.com Betreff: [flexcoders] questionfor AdvancedDataGrid

[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. ... mx:DataGrid x=15 y=72 width=581.5 height=239 dataProvider={ModelLocator.QModel}

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

2008-05-07 Thread markflex2007
or any of its affiliates. 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: [flexcoders

[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 think I can create the beige.swf with beige.css

[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

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

[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. mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:HSlider id=h1 x=89 y=173 minimum=0 maximum=10 value=4 width=260

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

2008-06-04 Thread markflex2007
: 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 and do not allow it draggable.I need the hslide just show the result. mx:Application xmlns:mx

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

[flexcoders] About Adobe LiveCycle Data Services ES 2.6 Beta?

2008-06-11 Thread markflex2007
Hi, I just download Adobe LiveCycle Data Services ES 2.6 Beta.I want to know what is the different between trial version and production version. and what is different between LiveCycle Data Services and BlazeDS. I can not figture out this,Please help me. Thank you in advance Mark

[flexcoders] what RIA-to-PDF conversion means in LCDS?

2008-06-11 Thread markflex2007
Hi, I want to make sure if it mean it can convert the Flex screen to PDF file? Do you know s demo for this. Thanks Mark

[flexcoders] How to set up a LCDS Development enviroment?

2008-06-12 Thread markflex2007
Hi, I just install LCDS 2.6 and I can see the test sample here. http://localhost:8400/lcds-samples/ I have question here: 1. How to change port 8400 to port 80. 2. How to set a development environment for LCDS applications. Thanks a lot Mark

[flexcoders] how to know if the hsider value change or not

2008-06-12 Thread markflex2007
Hi, I try to use follow code to catch if the hsilider value change but it doen't work .Please help me to know how to fix it.Thanks. --Mark mx:HSlider width=600 id=h1 minimum=0 maximum=120 value={_model._te} enabled=false x=0 y=0/ public function init():void{

[flexcoders] Question for Subvision to Flex Bulider 3

2008-06-18 Thread markflex2007
Hi, I follow the url (http://tdotblog.info/?q=node/4) to install subvision to FB3 I extract site-1.0.6.zip and I get two folder (features and plugins) and files in the two folders I am not sure how to copy files in the two folders to FB3 folder.Do I have to copy all of them? Please give me a

[flexcoders] web service access error

2008-06-18 Thread markflex2007
Hi, I am use Flex, cairngorm and web service. I copy a application form other pc and I get the follow error. RPC Fault faultString=HTTP request error faultCode=Server.Error.Request faultDetail=Unable to load WSDL. If currently online, please verify the URI and/or format of the WSDL

[flexcoders] BlazeDS broadcast updates to others?

2008-06-19 Thread markflex2007
Hi, I am not sure if BlazeDS have broadcast feature or not that means it broadcase to other clients when one person update something in the same Flex application. Please give me a demo if you have the url or samples Thanks a lot Mark

[flexcoders] Flex's mx:RemoteObject with remote server?

2008-06-21 Thread markflex2007
Hi, I want to make sure if we Flex's mx:RemoteObject to invoke object in remote server. I use it with localhost before and I want to make sure f it can work with romote server. Please give me detail or a domo. Thank you for your help. Mark

[flexcoders] Question about LiveCycle Data Services ES 2.6 ?

2008-06-21 Thread markflex2007
Hi, I want to make sure the following answer. May I use LiveCycle Data Services ES 2.6 in my production enviroment (web application)? what is the limitation for LiveCycle Data Services ES 2.6 in adobe lab for production enviroment? Thanks for your help Mark

[flexcoders] How to set the destination for remoteobject?

2008-06-22 Thread markflex2007
Hi, I have read the folowlling code,how to add real URL to destination? which config file can use to do this? Thanks ?xml version=1.0? !-- fds\rpc\ROParamBind1.mxml. Compiles -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:RemoteObject id=ro

[flexcoders] Flex server push solutions?

2008-06-23 Thread markflex2007
Hi, I need server push feature in my application,I know LCDS and BlazeDS can do that. I also try Lightstreamer and it also can do that. But they are very expensive,do you know other Flex open source project that also provide push feature and it is easy to use. Thanks a lot Mark

[flexcoders] How to make BlazeDS working?

2008-06-24 Thread markflex2007
Hi, I know BlazeDS is a open souce and I like its features. I do not have a lot java experience,do you think it is hard for me to make it working. Do you have a good tutorial to make BlazeDS work with coldfusion application? Please give me advice. Thanks Mark

[flexcoders] Question about LCDS ES2.6 setting?

2008-06-25 Thread markflex2007
Hi, I download LCDS ES2.6 and it works fine with the URL http://localhost:8400/lcds-samples/testdrive.htm May I change the IP and port (or link with Domain name) so I can use the demo like http://68.180.206.100:80/lcds-samples/testdrive.htm or http://www.testme.com/lcds-samples/testdrive.htm

  1   2   3   4   5   >