[flexcoders] Help for Adobe Flex Blueprint ( software documentation )

2008-04-17 Thread Harry Saputra
Dear All, Where I can get an example for make Flex application documentation ( blueprint ) ? The documentation is use UML 'USE CASE DIAGRAM' , and Block DIAGRAM for MVC concept ( I have found in adobe official site, but I need another example). Thanks

[flexcoders] Summary Column in advancedDataGrid

2008-04-07 Thread Harry Saputra
Dear All, I need your help to make a summary column, and result column from another data column before , like that : Value A Value B Value A * B Summary : Value A * B / 2 Grade Summary 10 200 2000 1000 A 20 2000 4 2 C The data source is only Value A Value B. May I make it's

[flexcoders] Read PDF File on Flex 2.0 App

2008-02-27 Thread Harry Saputra
How to embedded PDF Reader on Flex 2.0 App, and i can direct pointing the pdf files into that PDF Reader ? Is its must use FlashPaper commercial ? thanks

[flexcoders] Flex ActionScript 3.0 to get Client IP Address and Client Computer Name

2008-02-26 Thread Harry Saputra
Dear All, How to show Client IP Address and Computer Name on our Flex Application ? I have search in google, but the solution is using RemoteObject or HttpService. Is there a way using ActionScript or Flex reference ?

[flexcoders] Bug on IF..ELSE Condition Or What ?

2008-02-22 Thread Harry Saputra
I get confuse with this. I have very2 simple conditional structure like that : ... var stat:Number = Number(arrPeriodeLirs.getItemAt(0).status); if (stat==2) { Alert.show('Error number 2','error'); } else if ( stat==1 ) { Alert.show('Error number 1','error'); }

[flexcoders] Redirect flash player from localhost to PC client when access flex app

2008-02-20 Thread Harry Saputra
How to make a express installation from localhost when PC client doesn't have a flash player 9.0 before ? When client access my flex app, and doesn't have installed flash player, the app give a option to install it from my localhost server.. thanks

RE: [flexcoders] Re: Adding parallel transition effect or filter to target when create on Base St

2008-02-15 Thread Harry Saputra
Yup, thanks. This work fine for me, too. But, I get another problem, when I refresh my page that when application has run /create , I see a component show at first ( but it fast, like blink ), and do a transition function again. Try and see, you will see too. I think it happen cause I locate

[flexcoders] Adding parallel transition effect or filter to target when create on Base State

2008-02-14 Thread Harry Saputra
Dear All, How to invoke parallel transition effect or filter to object that create on Base State without trigger event from another object ? ( It's mean when I run my apapplication, I point some effect to Object, without click or rolling over my mouse ) I try to create on actionscript like that

RE: [flexcoders] Re: Splitting Array Content , keyword by field content

2008-02-13 Thread Harry Saputra
content ListCollectionView and a filter function? --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Harry Saputra [EMAIL PROTECTED] wrote: Max 20 record. Not big. May I ? When try to manipulate data on server side, I must create a more function ( service ) and on my flex I

[flexcoders] How to hidden DataGrid Header ?

2008-02-12 Thread Harry Saputra
Dear All, I want to use DataGrid without header :). Can you help me to solve this problem ?

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
of dynamic classes, you will be able to iterate only through properties that are added dynamically.-Flex Doc - Original Message From: Harry Saputra [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 10:33:44 PM Subject: RE: [flexcoders] Splitting Array Content

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
Check my code : arrJadwalPribadi = new ArrayCollection(event.result as Array); arrJadwalPribadi.refresh(); for (var item:Object in arrJadwalPribadi){ if (item.hari=='Senin')

[flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
Dear All, I have DataProvider as Array like this : A Andi A Ash A Axe B Bart B Bob Called arrMainData. Can I split it into 2 variable Array when I complete retrieve all Data ? like this : arrAData A Andi A Ash A Axe arrBData B Bart B Bob Thanks :-)

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
trying to iterate. how many groups do you have - Original Message From: Harry Saputra [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 10:56:32 PM Subject: RE: [flexcoders] Splitting Array Content , keyword by field content Or may I content filter

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
',Name:Bart}, {Letter:'B',Name:Boe}, ]); private function initApp():void{ var arrAData:Array = []; var arrBData:Array = []; for each(var item:Object in myArrayCollection){ if(item.Letter==A){ arrAData.push(item); }else{ arrBData.push(item); } } } ]] /mx:Script - Original Message From: Harry

[flexcoders] Merged row in grid that have a same content, How ?

2008-02-11 Thread Harry Saputra
Dear All, I need your help to solve this problem. I have data as Array and i will show it on DataGrid. I want to show like this : Before : A ANDY 12 A ANTS 13 A APPLE 14 Want to show : A ANDY 12 ANTS 13 APPLE 14 Thanks before..

[flexcoders] Flex Coverflow or Carousel

2008-02-07 Thread Harry Saputra
I have try to use flex coverflow from : http://dougmccune.com/blog/2007/11/19/flex-coverflow-performance-improvement -flex-carousel-component-and-vertical-coverflow/ But I can't use correctly. I have download all requirement thing like papervision3D, and compile some script to SWC file, but It

[flexcoders] Flexible grid : Multiple lines in one data row

2008-02-07 Thread Harry Saputra
Dear Friend, I have build datagrid in jsp that can show multiple lines in one data row like that : Column a| Column b - 1 | a | b | c 2 | d | e | f And it's simple, just

[flexcoders] Get Tabnavigator index value on click TabControl

2008-02-05 Thread Harry Saputra
How to get Tabnavigator index value when I click TabControl ? I am used Canvas on as in Tabnavigator. mx:TabNavigator id=tnJadwal right=10 left=10 top=10 bottom=10 tabWidth=50 mx:Canvas label=Senin width=100% height=100%/mx:Canvas mx:Canvas label=Selasa width=100%

RE: [flexcoders] Get Tabnavigator index value on click TabControl

2008-02-05 Thread Harry Saputra
THanks for all before, I just want to get a value index, and I have found the way. Just tnJadwal.selectedIndex.valueOf() ..thanks.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent: Wednesday, February 06, 2008 12:09 PM To: flexcoders@yahoogroups.com

[flexcoders] 2 line in one row on DataGrid

2008-02-05 Thread Harry Saputra
How to create an result become 2 line in one row on DataGrid ? I get a data from DataProvider as Array ? ArrayData = id, name1,name2 I want result : Id name -- 1 name1 name2 2 Thanks...

[flexcoders] Null Return when try to get total of sum from one field

2008-02-04 Thread Harry Saputra
I try this : .mxml file : ... mx:DataGridColumn id=sks headerText=SKS width=20 dataField=sks/ ... mx:Button x=685 y=10 label=Button click=showTotalDataTranskrip()/ ... .as file : [Bindable] Public var lengthArrDataTranksrip:int; public var total:Number; public function

RE: [flexcoders] Null Return when try to get total of sum from one field

2008-02-04 Thread Harry Saputra
I have try to change return String(total) with return total.toString(), but it's still Null return.. Or, maybe I did null value in here : arrDataTranskrip[i][col.dataField] I try to modify this code like this : total = lengthArrayDataTranskrip; and it's working. I build this function to get

[flexcoders] Datagrid Counting row and total value

2008-02-03 Thread Harry Saputra
I have a datagrid ( dgDataTranskrip) that retrieve some data from database. How to counting row in grid ? I try to use dgDataTranskrip.rowCount.toString(), but the value become -1. And, how to get a total value from one field that have a number type ? FieldName 1 2 3 -- 6

RE: [flexcoders] Datagrid Counting row and total value

2008-02-03 Thread Harry Saputra
Yups, thanks, I have use arrayname.length, and its working. And my second problem, how to get a total value in a label from one field ? I have seen some example, but's its need to build some function and etc. I try to search a simple way. Thanks From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Get Array Object with simple way from event.result database query (weborb)

2008-01-29 Thread Harry Saputra
an object like that : textinput text={dataMahasiswa[0]} ? it's not working to me. please help thanks -- Regard, Harry Saputra

[flexcoders] Insert simple record into PostgreSQL using AMFPHP + Flex

2008-01-24 Thread Harry Saputra
Dear all, I have retrieve a record from PostgreSQL and now try to insert simple record into PostgreSQL using AMFPHP like that : ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=onInit() mx:Script

[flexcoders] Error when try to run simple example get method from flex to php

2008-01-21 Thread Harry Saputra
I try to run example from : http://www.adobe.com/devnet/flex/articles/php_getstarted.html in my apache2.2 that have installed with php and flex module. .mxml file : ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute backgroundColor=#f6f6f6