[flexcoders] basic authentification on air

2010-08-29 Thread cholid cholid
i try to get some property of an object with xmlrpc
and it's work
then i adopt the code to air application
when it run, then show a login window that is not happen in flex application
it says
The Server admin (on port 0) requires a username and password
this server uses 'basic' authentification
username:
password:

are there has a different from air and flex code on handle authentification 
methode?
thanks


this the code;

creationComplete=init()  layout=absolute
.
import com.ak33m.rpc.xmlrpc.XMLRPCConnection;
import mx.rpc.Fault;
import com.ak33m.rpc.xmlrpc.XMLRPCObject;
import mx.utils.Base64Encoder;
import mx.utils.ArrayUtil;
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;
import mx.rpc.events.FaultEvent;
import mx.rpc.AsyncToken;
import  mx.controls.Alert;
import mx.collections.ItemResponder;

[Bindable] public var returnedData:ArrayCollection;
[Bindable] public var 
serviceEndpoint:String=http://admin:ad...@localhost:8080;;
public var service:XMLRPCObject;

public function init():void
{
service = new  XMLRPCObject();
service.endpoint = serviceEndpoint;
service.destination = /zport/dmd;
service.addEventListener(FaultEvent.FAULT, onFault);
service.addEventListener(ResultEvent.RESULT, onResult);
}
public function onResult(event:ResultEvent):void
{
Alert.show(String(event.result));
}
 public function onFault(event:FaultEvent):void
{
Alert.show(event.fault.faultString, event.fault.faultCode);
}
public function getId():void
{
service.call(getProductName);
}
...
mx:Button click=getId() label=Get ID width=100%/
..
/mx:WindowedApplication


  

[flexcoders] xmlrpc in flex

2010-08-26 Thread cholid cholid
hi flexcoders
i am on trying to call property of some object at webservice with xmlrpc
but when i call it, it would go to login page
how to insert the username and password to xmlrpc
so when i call the service, i not must login again
thanks


  

[flexcoders] how long trial flex on linux is? [1 Attachment]

2010-08-11 Thread cholid cholid
how long trial flex on linux is?
ps:see my attachment trial expire snapshoot



  

Re: [flexcoders] Re: flex debuging

2010-07-29 Thread cholid cholid


i mean debuging when flex running
like we debuging JS with firebug at firefox
i've try with add alert in actionscript tag to know the sequence of code
but i want more debuger (like firebug for JS at webbrowser)




From: valdhor valdhorli...@embarqmail.com
To: flexcoders@yahoogroups.com
Sent: Thu, July 29, 2010 11:38:42 PM
Subject: [flexcoders] Re: flex debuging

  
Share what?

Set a breakpoint, run app, do something that will invoke the breakpoint, 
examine 
the variables to see if they contain what you expect. Simplicity itself.

http://learn.adobe.com/wiki/display/Flex/Debugging+tutorial

--- In flexcoders@yahoogroups.com, cholid cholid cholid_rid...@... wrote:

 hi all
 
 anyone can share about debuging in flex?
 thanks



 


  

[flexcoders] send email from flex

2010-07-05 Thread cholid cholid
hi all
have someone create some application to send email using flex?
i've try it from tutorial at web but doesnt work
thanks 



  

Re: [flexcoders] Re: what's happen with my 'array' ?

2010-06-15 Thread cholid cholid
thanks valdhor, it awesome




From: valdhor valdhorli...@embarqmail.com
To: flexcoders@yahoogroups.com
Sent: Wed, June 16, 2010 1:39:54 AM
Subject: [flexcoders] Re: what's happen with my 'array' ?

  
You don't have an array - all you have is a string. You need to convert it to 
an array. Try this:

?xml version=1.0 encoding=utf- 8?
!-- Simple example to demonstrate the ComboBox control. --
mx:Application xmlns:mx=http: //www.adobe. com/2006/ mxml layout=absolute
creationComplete= 'test()'
mx:Script
![CDATA[
import mx.collections. ArrayCollection;
import mx.controls. Alert;
import mx.utils.ArrayUtil;

[Bindable] private var cards:ArrayCollecti on;

private function test():void
{
cards = new ArrayCollection( green.text. split(, ));
}   
]]
/mx:Script
mx:Panel title='ComboBox Control Example' layout='horizontal'
paddingTop=' 10' paddingBottom= '10' paddingLeft= '10' paddingRight= 
'10'
mx:ComboBox dataProvider= '{cards}' /
mx:VBox
mx:Text id='green' color='green' text=M3-02- 06-2010-10- 
05-04.flv, M3-02-06- 2010-22-17- 16.flv,M3- 02-06-2010- 12-07-06. flv,M3-02- 
06-2010-08- 03-02.flv /
/mx:VBox 
/mx:Panel
/mx:Application



--- In flexcod...@yahoogro ups.com, cholid cholid cholid_ridwan@ ... wrote:

 hi all
 i've new problem
 
 im make mx:ComboBox that the data is from array that's request from mx:Text
 
 i've two mx:Text that string source is
 
 1.array string = 
 
 ['M3-02-06-2010- 10-05-04. flv', 'M3-02-06-2010- 22-17-16. flv', 
 'M3-02-06-2010- 12-07-06. flv', 'M3-02-06-2010- 08-03-02. flv']
 
 2.array string that source is from external fungtion (call with https)
 
 THE PROBLEM IS:
 if i call array from second mx:Text, the mx:ComboBox is not show data
 but if i call array from first, the mx:ComboBox is not working
 
 the source code is here:
 
 ?xml version='1.0' ?
 !-- Simple example to demonstrate the ComboBox control. --
 http://www.adobe. com/2006/ mxml' creationComplete= 'test()'
 mx:HTTPService id='combolist' url='combolist' /
   mx:Script
   ![CDATA[
   import mx.collections. ArrayCollection;
   import mx.controls. Alert;
   import mx.utils.ArrayUtil;
   [Bindable]
   private var cards:ArrayCollecti on;
   private function test():void
   {
   combo = new ArrayCollection( ArrayUtil.toArray( 
 String(green. text) ) );
   } 
   ]]
   /mx:Script
 
   mx:Panel title='ComboBox Control Example' 
   layout='horizontal'
   paddingTop=' 10' paddingBottom= '10' paddingLeft= '10' 
 paddingRight= '10'
 
   mx:ComboBox dataProvider= '{combo}' /
 
   mx:VBox
   mx:Text  id='green' color='green' text=['M3-02- 
 06-2010-10- 05-04.flv' , 'M3-02-06-2010- 22-17-16. flv', 'M3-02-06-2010- 
 12-07-06. flv', 'M3-02-06-2010- 08-03-02. flv']/
 mx:Text  id='red' color='red' text={combolist} /
 
   /mx:VBox 
 
   /mx:Panel 
 /mx:Application


 


  

Re: [flexcoders] Re: what's happen with my 'array' ?

2010-06-15 Thread cholid cholid


but data i've is use '[]'
when it split with ',' it doesn't work





From: valdhor valdhorli...@embarqmail.com
To: flexcoders@yahoogroups.com
Sent: Wed, June 16, 2010 1:39:54 AM
Subject: [flexcoders] Re: what's happen with my 'array' ?

  
You don't have an array - all you have is a string. You need to convert it to 
an array. Try this:

?xml version=1.0 encoding=utf- 8?
!-- Simple example to demonstrate the ComboBox control. --
mx:Application xmlns:mx=http: //www.adobe. com/2006/ mxml layout=absolute
creationComplete= 'test()'
mx:Script
![CDATA[
import mx.collections. ArrayCollection;
import mx.controls. Alert;
import mx.utils.ArrayUtil;

[Bindable] private var cards:ArrayCollecti on;

private function test():void
{
cards = new ArrayCollection( green.text. split(, ));
}   
]]
/mx:Script
mx:Panel title='ComboBox Control Example' layout='horizontal'
paddingTop=' 10' paddingBottom= '10' paddingLeft= '10' paddingRight= 
'10'
mx:ComboBox dataProvider= '{cards}' /
mx:VBox
mx:Text id='green' color='green' text=M3-02- 06-2010-10- 
05-04.flv, M3-02-06- 2010-22-17- 16.flv,M3- 02-06-2010- 12-07-06. flv,M3-02- 
06-2010-08- 03-02.flv /
/mx:VBox 
/mx:Panel
/mx:Application



--- In flexcod...@yahoogro ups.com, cholid cholid cholid_ridwan@ ... wrote:

 hi all
 i've new problem
 
 im make mx:ComboBox that the data is from array that's request from mx:Text
 
 i've two mx:Text that string source is
 
 1.array string = 
 
 ['M3-02-06-2010- 10-05-04. flv', 'M3-02-06-2010- 22-17-16. flv', 
 'M3-02-06-2010- 12-07-06. flv', 'M3-02-06-2010- 08-03-02. flv']
 
 2.array string that source is from external fungtion (call with https)
 
 THE PROBLEM IS:
 if i call array from second mx:Text, the mx:ComboBox is not show data
 but if i call array from first, the mx:ComboBox is not working
 
 the source code is here:
 
 ?xml version='1.0' ?
 !-- Simple example to demonstrate the ComboBox control. --
 http://www.adobe. com/2006/ mxml' creationComplete= 'test()'
 mx:HTTPService id='combolist' url='combolist' /
   mx:Script
   ![CDATA[
   import mx.collections. ArrayCollection;
   import mx.controls. Alert;
   import mx.utils.ArrayUtil;
   [Bindable]
   private var cards:ArrayCollecti on;
   private function test():void
   {
   combo = new ArrayCollection( ArrayUtil.toArray( 
 String(green. text) ) );
   } 
   ]]
   /mx:Script
 
   mx:Panel title='ComboBox Control Example' 
   layout='horizontal'
   paddingTop=' 10' paddingBottom= '10' paddingLeft= '10' 
 paddingRight= '10'
 
   mx:ComboBox dataProvider= '{combo}' /
 
   mx:VBox
   mx:Text  id='green' color='green' text=['M3-02- 
 06-2010-10- 05-04.flv' , 'M3-02-06-2010- 22-17-16. flv', 'M3-02-06-2010- 
 12-07-06. flv', 'M3-02-06-2010- 08-03-02. flv']/
 mx:Text  id='red' color='red' text={combolist} /
 
   /mx:VBox 
 
   /mx:Panel 
 /mx:Application


 


  

[flexcoders] what's happen with my 'array' ?

2010-06-09 Thread cholid cholid
hi all
i've new problem

im make mx:ComboBox that the data is from array that's request from mx:Text

i've two mx:Text that string source is

1.array string = 

['M3-02-06-2010-10-05-04.flv', 'M3-02-06-2010-22-17-16.flv', 
'M3-02-06-2010-12-07-06.flv', 'M3-02-06-2010-08-03-02.flv']

2.array string that source is from external fungtion (call with https)

THE PROBLEM IS:
if i call array from second mx:Text, the mx:ComboBox is not show data
but if i call array from first, the mx:ComboBox is not working

the source code is here:

?xml version='1.0'?
!-- Simple example to demonstrate the ComboBox control. --
http://www.adobe.com/2006/mxml' creationComplete='test()'
mx:HTTPService id='combolist' url='combolist' /
mx:Script
![CDATA[
import mx.collections.ArrayCollection;
import mx.controls.Alert;
import mx.utils.ArrayUtil;
[Bindable]
private var cards:ArrayCollection;
private function test():void
{
combo = new ArrayCollection( ArrayUtil.toArray( 
String(green.text) ) );
}   
]]
/mx:Script

mx:Panel title='ComboBox Control Example' 
layout='horizontal'
paddingTop='10' paddingBottom='10' paddingLeft='10' 
paddingRight='10'

mx:ComboBox dataProvider='{combo}' /

mx:VBox
mx:Text  id='green' color='green' 
text=['M3-02-06-2010-10-05-04.flv', 'M3-02-06-2010-22-17-16.flv', 
'M3-02-06-2010-12-07-06.flv', 'M3-02-06-2010-08-03-02.flv']/
mx:Text  id='red' color='red' text={combolist}/

/mx:VBox 

/mx:Panel
/mx:Application 


  

Re: [flexcoders] Flex3 vs Flash4 IDE.

2010-06-08 Thread cholid cholid
yes, but in sdk hasn't library for chart etc






From: vikrant vikrantkumarchoudh...@yahoo.co.in
To: flexcoders@yahoogroups.com
Sent: Wed, June 9, 2010 10:52:03 AM
Subject: [flexcoders] Flex3 vs Flash4 IDE.

  
I have one small doubt.. I am using Flex Builder 3 for last 2 years. However 
some of new framework developed by different team are in Flex4. Is it possible 
to use the SDK only..not the IDE. 

I am not yet ready for upgrade  my project and I want to use the others changes 
in compiled plugin format.


 


  

[flexcoders] flash 4 and flex 3

2010-05-19 Thread cholid cholid
Hi all
What advantages of flash 4 compare with flex 4?
thanks
cholid_ridwan



  

[flexcoders] errror when compile at sdk 4

2010-05-19 Thread cholid cholid
Hi all
im just compile my application that build on flex sdk 3 on sdk 4
has message error that's
Error: Access of possibly undefined property FlexGlobals through a reference 
with static type Class.

return 
Application.FlexGlobals.topLevelApplication as ZenNetMap;


anyone same trouble?
or anyones have trouble when compile on sdk 4 to but on different case?



  

Re: [flexcoders] errror when compile at sdk 4

2010-05-19 Thread cholid cholid
sory, i mean flash4 and flex3






From: Oleg Sivokon olegsivo...@gmail.com
To: flexcoders@yahoogroups.com
Sent: Wed, May 19, 2010 3:50:03 PM
Subject: Re: [flexcoders] errror when compile at sdk 4

  
Hi.
Are you sure it's not a typo:
Application. FlexGlobals
I don't remember such property on Application class, and it's very unlikely 
there will be one as if that was a property, it would start with lowercase.

Best.

Oleg
 


  

Re: [flexcoders] flash 4 and flex 3

2010-05-19 Thread cholid cholid
no, i mean flash builder4 and flex builder 3
flash builder 4 is new different name of flex builder 






From: Mark Lapasa ma...@hitgrab.com
To: flexcoders@yahoogroups.com
Sent: Thu, May 20, 2010 3:00:59 AM
Subject: Re: [flexcoders] flash 4 and flex 3

  
You are wasting your time with Flash 4

Flash 5  Flash 4

Flash 5 FTW!



On Wed, May 19, 2010 at 10:39 AM, Kerry Thompson al...@cyberiantiger .biz 
wrote:














  


 
  
 
cholid_ridwan wrote:


What advantages of flash 4 compare with flex 4?

 
Lots of advantages.
 
- You can do timeline animations
- Components are lighter
- You can get by with less advanced AS3 knowledge than in Flex
- You can do things from scratch, like Flex's data grid, and bill your clients 
more
- For a substantial code-heavy project, you can bill more hours
- You can get to meet more clients as your other clients hire Flex developers
- You don't have to deal with the far superior debugger in Flex 4 (or, more 
accurately, FlashBuilder 4) 
- You don't have to deal with FlashBuilder's superior dev environment
 
Cordially,
 
Kerry Thompson

 


  

[flexcoders] control video

2010-05-17 Thread cholid cholid
Hi all
how to control speed of video at flex?
thanks



  

[flexcoders] get source from an updated file

2010-05-07 Thread cholid cholid
Hi all
mx:VideoDisplay id=myVid 
width=640 height=480  
source=/070520101630.flv autoPlay=false/

at the code, the source is an updated video on database 
070520101630 its mean date and time when video saved
how we call the source for the next updated video?
for the example the next video is 070520101700.flv



  

[flexcoders] xmlrpc send some string

2010-05-05 Thread cholid cholid
Hi all
im newbie to use xmlrpc
how to send some string using xmlrpc?
thanks



  

[flexcoders] thunderbolt

2010-05-04 Thread cholid cholid
Hi all
anyone use thunderbolt for debuging?
can tell me detail how to use it?
thanks



  

[flexcoders] 3d social graph

2010-04-27 Thread cholid cholid
hi all
can show to us some lib/app of 3D social graph?
thanks



  

Re: [flexcoders] make swf play and stop in frame one

2010-04-25 Thread cholid cholid
it's flex or flash?
flex hasn't frame so im sure its flash
use this 
stop();






From: markflex2007 markflex2...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Sat, April 24, 2010 9:27:20 AM
Subject: [flexcoders] make swf play and stop in frame one

  
Hi,

I want to use swfloader load a swf file and show the first frame of the swf.

Do you have a idea to do this?I need your help.

Thanks

Mark


 


  

[flexcoders] context menu

2010-04-13 Thread cholid cholid
Hi All

to use context menu and use it to make new tab in browser im use this sample:
private function B(evt:ContextMenuEvent):void {
navigateToURL(new URLRequest(http://www.google.com;),_blank);
}

and for the function in context menu, im use this sample:

private function A(evt:ContextMenuEvent):void {
app().goToNodePage();
}

how the second sample can add new tab (at browser)
like at first sample?
Thanks for Advice


  

[flexcoders] XMLList, tree, and textinput

2010-04-05 Thread cholid cholid
Hi all, i've new problem
i have textInput to show some string object 
mx:TextInput id='txtName' text=/

that the object i put from

txtName.text = ~address~

 then i want to use tree to show the txtName and make XMLList to make the tree

mx:XMLList id=tree
node label=data
node label=nama/
/node
/mx:XMLList

how to order the txtName in tree?
Thanks


  

[flexcoders] air in action

2010-03-17 Thread cholid cholid
Hi all
i've new question
1.i can't do launch my swf air app with adl in FB 
i just can do it from adl in Air sdk
any one's know why it doesn't do?
2.and when i compile the app with adt it requesting to type some password 
(and i type it, but hasn't work to make air app)
any one's know why it doesn't do?

Thanks
regards



  

[flexcoders] word Flex Data Visualization Trial

2010-03-10 Thread cholid cholid
HI all
how to unvisible word Flex Data Visualization Trial
in chart at Tour de Flex?
thanks regards



  

Re: [flexcoders] tooltip button

2010-03-09 Thread cholid cholid
thanks but i mean
toolTip contain button 

but the link is button contain toolTip






From: Shabir Gilkar shabirgil...@gmail.com
To: flexcoders@yahoogroups.com
Sent: Tue, March 9, 2010 2:34:29 PM
Subject: Re: [flexcoders] tooltip  button

  
Hope it may help you

http://abrahamyan. com/2009/ 02/05/tooltip- in-as3/
  


On Tue, Mar 9, 2010 at 10:11 AM, cholid cholid cholid_ridwan@ yahoo.com wrote:















  


 
  
 
Hi all i need tooltip that contain button
anyone's know?
thanks 
regards


 

  

 


-- 
With Regards

Shabir Ahmad Gilkar

Srinagar Kashmir JK

Voice: +91 9419942501
email: shabirgilkar@ gmail.com
URL:   http://shabirgilkar .wordpress. com
Skype: shabirgilkar


 


  

[flexcoders] right click

2010-03-09 Thread cholid cholid
Hi all
i need right click in my flex
can any body give me info?
thanks
regards



  

[flexcoders] right click (view source)

2010-03-09 Thread cholid cholid
HI all
any one know where is script right click to view source in flex?
and how to unactive it, and how to add more 
thanks
regards



  

[flexcoders] tooltip button

2010-03-08 Thread cholid cholid
Hi all i need tooltip that contain button
anyone's know?
thanks 
regards



  

Re: [flexcoders] Loading XML

2010-02-02 Thread cholid cholid
can you tell how you call the xml is?





From: ztpi1 zt...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Wed, February 3, 2010 8:53:59 AM
Subject: [flexcoders] Loading XML

  
I am getting a security error when trying to load an xml file into my swf. The 
xml and swf are right next to each other in the same directory. What gives? 
From what I understand, the swf should have access to the xml file. I have no 
problem loading jpg, or png. 


 


  

Re: [flexcoders] Making Flash Animations

2009-12-28 Thread cholid cholid
course can
I use a flash before knowing flex
and I can only make things simple
I think more cool flex

What kind of animation you want to make?
maybe i can help you 

--- On Mon, 12/28/09, Christophe christophe_jacque...@yahoo.fr wrote:

From: Christophe christophe_jacque...@yahoo.fr
Subject: [flexcoders] Making Flash Animations
To: flexcoders@yahoogroups.com
Date: Monday, December 28, 2009, 6:04 PM







 



  



  
  
  Hello,



Is it possible to make basics animations with Flex for inclusion in  a php web 
site ? (Because I don't know Flash).



Thank you,

Christophe,






 





 



  






  

[flexcoders] Error: Problem finding external stylesheet:

2009-11-23 Thread cholid cholid
Hi all
i've new problem
when i compile some app
the message is show
Error: Problem finding external stylesheet: /diagrammer/assets/style/style.css
actually the data is there
any help?
thanks
cholid.r



  

Re: [flexcoders] Any issues with Windows 7(64bit) and Flex Builder

2009-11-18 Thread cholid cholid
yes, i've same problem... the installer recomend me to install jre and eclipse 
32 bit, but its still doesnt work... 

--- On Wed, 11/18/09, Greg Hess flexeff...@gmail.com wrote:

From: Greg Hess flexeff...@gmail.com
Subject: [flexcoders] Any issues with Windows 7(64bit) and Flex Builder
To: flexcoders@yahoogroups.com
Date: Wednesday, November 18, 2009, 9:22 PM







 



  



  
  
  Hi All,



I would like to replace my dev workstation with a farrari, slow

compiles are killing me. I have been shopping around and would like to

buy a new quad core, 8G ram and Windows 7(64bit) but want to make sure

I wont have any issues with my dev tools before making the plunge.



Has any one had any issues moving to Windows 7(64bit), it is not

listed as a supported OS in the Flex builder system requirements?



I am running Eclipse with the Flex builder plugin.



Any help much appreciated,



Greg




 





 



  






  

[flexcoders] right click and link on flex

2009-10-05 Thread cholid cholid
Hi Flexcoders mania
any one know how to make link to some url on right click at chart?
(or if it imposible, maybe double click is possible to make it is OK to me)

ps:any one know application to drawing graph that is free/ opensource base?

Thanks
cholid.r



  

[flexcoders] alteratif of if else function

2009-10-04 Thread cholid cholid
Hi all
i want to ask something about alternatif if else function

i've 100 checkbox that  the syntax

if(data.d[1] == '1')
  image1.visible = true;
    else
  image1.visible = false;
if(data.d[1] == '1')

       image2.visible = true;

    else

  image2.visible = false;
and   i must writer until 100 times

how to make it more simple?
Thanks
cholid.r




  

[flexcoders] invisible UIComponent

2009-09-25 Thread cholid cholid
Hi all
i've got new question
any one know how to make UIComponent invisible?
but it still can execute
Thanks
cholid.r



  

[flexcoders] how to join this code

2009-09-08 Thread cholid cholid
hi all 
 i've new problem 
 i've two code 
 the one's to draw an Icon 
 an the other's to draw a circle 
 how to make it work together, the circle be a background of Icon 
 1.img = RendererIconFactory.createIcon(this.data.da...@nodeicon,32); 
 2.cc = RendererIconFactory.createIcon(primitive::circle, 
                 this.data.da...@nodesize, 
                 int(this.data.da...@nodecolor)); 
 Thanks 
 cholid.r 


  

Re: [flexcoders] How to get X, Y position/coordinates of a specific character/letter in a text field

2009-08-31 Thread cholid cholid
can any body know how to get x, y position of chart?

--- On Mon, 8/31/09, Ian Thomas i...@eirias.net wrote:

From: Ian Thomas i...@eirias.net
Subject: Re: [flexcoders] How to get X, Y position/coordinates of a specific  
character/letter in a text field
To: flexcoders@yahoogroups.com
Date: Monday, August 31, 2009, 8:35 PM






 





  The mx.controls. TextInput component has the .textField 
property that I

mentioned in my second email.



Are you using spark.components. TextInput instead? In which case I

don't know, I'm afraid - haven't delved that deep into Spark yet.



Sorry!



Ian



On Mon, Aug 31, 2009 at 9:29 PM, Bazli...@thinkloop. com wrote:





 Hey Thanks Ian,



 I was just looking at that actually but TextInput doesn't seem to have it

 (Flex 4). I read that you can use:



 import mx.core.mx_internal ;

 use namespace mx_internal;



 to access TextField and then getCharBoundaries( ) but that doesn't seem to

 work in Flex 4.



 Any ideas?



 Thanks,

 Baz







 On Mon, Aug 31, 2009 at 1:19 PM, Ian Thomas i...@eirias.net wrote:







 Take a look at flash.text.TextFiel d.getCharBoundar ies() (and other

 TextField methods).



 HTH,

 Ian



 On Mon, Aug 31, 2009 at 8:53 PM, Bazli...@thinkloop. com wrote:

 

 

  Anyone know how to get the X/Y coordinates of a specific

  character/letter in

  a text field or text input?

 

  Thanks!

 

 



 


 

  




 

















  

[flexcoders] comboBox and TextInput

2009-08-10 Thread cholid cholid
Hi all, i'got problem again,
i'm quite confused in compete it
i have one week and many book


i've data ;
Graph
Node id=1 name=A  nodeIcon=/image/image.gif /

Node id=2 name=B  nodeIcon=/image/image.gif /
Node id=3 name=C  nodeIcon=/image/image.gif /   
Node id=4 name=D  nodeIcon=/image/image.gif /


Edge fromID=1 toID=3/
Edge fromID=2 toID=4/
/Graph

1st Question=
i
want to in my project with RaVis i can select option in ComboBox and
the result is the visualization of the option that i select. i.e if i
select A so the visualization in canvas is just show node 1 and two
with edge.



2nd Question=
and if i type in TextInput D, the visualization show in canvas node 3 and 4 
with glow in node D

can anyone complete it?
i hope it will be resolved in here
Thanks
cholid.r





  

Re: [flexcoders] Re: Flex Compilation takes long time

2009-07-30 Thread cholid cholid
hi all,i have experience in flex SDK. 
when i use in openSUSE 11.1 i need 56 second for compile an aplication
but when im use openSUSE 10.1 is just need 11 second
wow, im surprise.. so i think it can be different for another OS

--- On Thu, 7/30/09, Marvin Froeder velo...@gmail.com wrote:

From: Marvin Froeder velo...@gmail.com
Subject: Re: [flexcoders] Re: Flex Compilation takes long time
To: flexcoders@yahoogroups.com
Date: Thursday, July 30, 2009, 12:30 AM






 





  I agree flex is slow... but I never saw it taking more then 
30 secs per module

VELO

On Wed, Jul 29, 2009 at 4:39 PM, Todd tpreka...@gmail. com wrote:













 





  Unfortunately, you can do all those things noted above, you 
can restructure your modules, etc...but you'll probably still have longer 
compile times than you like. 



I've learned to live with it, and just treat our Flex projects like C++ 
projects in 1995.



Even optimized, on fast machines, we're looking at a minimum of 1 minute, 8 
seconds per compile for a single module.  And then 90 seconds for a single 
application.  



It really sucks when you're trying to do fast recompile because you're tweaking 
a UI item.



--- In flexcod...@yahoogro ups.com, ondemand_mayur ondemand_mayur@  
wrote:



 Hi folks,

 

 I have a project crated with Flex 3 ( SDK 3.2 ).

 When ever I compile it really takes much long time min 4 to 5 mins ( i..e. 
 240 to 300 seconds).

 

 That really make my developers crazy and it is so frustrating.

 

 Has any one any suggestions how to make compilation process faster.

 

  *   I have already set   -incremental= true   for flex compiler in 
 Flex Builder 3.

  *   I have around six diff. modules in my project. ( And I have noticed 
 after modularization of my application it takes some more time for 
 compilation I know that in the process - flex builder has to call another 
 tool for module compilation other then MXMLC )


 

 

 I Need some tech. Tips and suggestions to reduce the time for compilation.

 

 

 Thanking you in advance.

 

 Mayur






 

  





















 

  




 

















  

[flexcoders] has no visualization in visualizer

2009-07-30 Thread cholid cholid
hi all, im new in using kap lab
now  im try to compile VisualizerSample1~4.mxml and another file mxml in kap lab
and im fond it has no visualization from the xml that must be show visualization
anyone can help me why has no visualization in  VisualizerSample1~4.swf?
thanks advance
cholid



  

[flexcoders] has no visualization in visualizer

2009-07-30 Thread cholid cholid
hi all, im new in using kap lab
now  im try to compile VisualizerSample1~4.mxml and another file mxml in kap lab
and im fond it has no visualization from the xml that must be show visualization
anyone can help me why has no visualization in  VisualizerSample1~4.swf?
thanks advance
cholid



  

Re: [flexcoders] Re: has no visualization in visualizer

2009-07-30 Thread cholid cholid
valdhor
im have do what you mean
but it still same as before
the application is just show the component zoom in/out. fix to the content, 
slider, button etc
but has no visualization from the data of xml

--- On Thu, 7/30/09, valdhor valdhorli...@embarqmail.com wrote:

From: valdhor valdhorli...@embarqmail.com
Subject: [flexcoders] Re: has no visualization in visualizer
To: flexcoders@yahoogroups.com
Date: Thursday, July 30, 2009, 1:00 PM






 





  Kap Lab needs to update their sample downloads. Some only 
have one file whereas others have all four samples.. The best idea is to 
download the third sample (Visualize radial data from XML). This includes all 
four samples.



Also note that the samples include an older version of the Visualizer.swc. You 
should download that separately and place it in the libs folder.



Other than that, what errors are you seeing?



--- In flexcod...@yahoogro ups.com, cholid cholid cholid_ridwan@ ... wrote:



 hi all, im new in using kap lab

 now  im try to compile VisualizerSample1~ 4.mxml and another file mxml in kap 
 lab

 and im fond it has no visualization from the xml that must be show 
 visualization

 anyone can help me why has no visualization in  VisualizerSample1~ 4.swf?

 thanks advance

 cholid






 

  




 

















  

[flexcoders] catalog.xml on libRaVis.swc [1 Attachment]

2009-07-29 Thread cholid cholid
Hi all
can someone give information how to make file swc that the contain of
catalog.xml is like this (on attachment)
because i just can put in it a file/ file/ (with -include-file)

i can't put components/ and libraries that contain script/ and dep/
and def/

i hope has someone know it,because im confused
Thanks