[flexcoders] Screen resolution

2009-07-19 Thread christophe_jacquelin
Hello, 

When you are developping a Flex application, which screen resolution do you 
choose to be acceptable for most of the users ? 

Thank you,
Christophe, 




[flexcoders] Re: Livecycle data w/ Flex and error #1009

2009-07-19 Thread wrhinfl
Try writing a simple java class to access your database (nothing to do with 
LCDS), see if you get an error with that.  

While using BlazeDS (scaled down version of LCDS) I noticed the JDBC driver to 
connect to mySQL had to be downloaded for my java classes to access the 
database.

I didn't complete the demo at that URL, but it appears it is using HSQLDB.  So 
I am guessing this is the problem and maybe others will be able to tell you of 
other potential solutions.



[flexcoders] Flex builder Linux Adobe's Plans

2009-07-19 Thread nospam allowed
http://bugs.adobe.com/jira/browse/FB-19053

For those of you using the Flex Builder on Linux please comment that you
wish to see it stay on Linux.


Re: [flexcoders] Flex builder Linux Adobe's Plans

2009-07-19 Thread Julien Nicoulaud
Good initiative ;)

Julien Nicoulaud
http://flex.aixo.fr

2009/7/19 nospam allowed nos...@advancedonsite.com



 http://bugs.adobe.com/jira/browse/FB-19053

 For those of you using the Flex Builder on Linux please comment that you
 wish to see it stay on Linux.
  



[flexcoders] create www.example123.com/#/testing

2009-07-19 Thread yonghan79
Hi all,i want to ask does anyone ever before create flex 3 application that for 
example i click on the menu testing then the address on the browser address 
will be like www.example123.com/#/testing,when i click on the example,it will 
be www.example123.com/#/example...Similiar in the php based application which 
the difference was at the end of the file,the .php was not shown...Do you mind 
to teach me how to do it in flex???Thanks a lot...



[flexcoders] Re: Screen resolution

2009-07-19 Thread Tim Hoff

1024 x 768 is usually the minimum resolution required for commercial
apps.   Although you also need to account for the browser header as
well.  While you can never anticipate every user's browser
configuration, this is a good baseline for most.

-TH

--- In flexcoders@yahoogroups.com, christophe_jacquelin
christophe_jacque...@... wrote:

 Hello,

 When you are developping a Flex application, which screen resolution
do you choose to be acceptable for most of the users ?

 Thank you,
 Christophe,






[flexcoders] Re: Livecycle data w/ Flex and error #1009

2009-07-19 Thread fgno...@rocketmail.com
I have the connection to the database working, as you suggest through a java 
file without Flex. In Flex, I keep getting the same error #1009. 

Although he doesn't specify in the post, am I supposed to do anything w/ the 
DestinationService and DynamicJDBCAssembler files? Where do I put those?





[flexcoders] Re: Flex builder Linux Adobe's Plans

2009-07-19 Thread kaspar.luethi
i also want visual studio for mac os x - even it does not make much sense :)

sorry, just in a funny mood...



--- In flexcoders@yahoogroups.com, nospam allowed nos...@... wrote:

 http://bugs.adobe.com/jira/browse/FB-19053
 
 For those of you using the Flex Builder on Linux please comment that yowish 
 to see it stay on Linux.



[flexcoders] shared object domain in sub application

2009-07-19 Thread guy.tomer
Hi,

Is there a way to have the shared object in a sub-application use the domain of 
the loaded sub-application and not the one of the loading application?

The scenario is application A is loaded from A.com app B is loaded from B.com
Both A and B load sub application SWF C from C.com
However, we want C to have access to the same shared object whether loaded from 
A or from B.

So far we see that it always use the domain of the loading app.

Tnx



[flexcoders] Flex cache problem

2009-07-19 Thread yamuna priya
Hi
    Can any one help for  clear cache(SWF) using flex?


Adance Thanks...




  Yahoo! recommends that you upgrade to the new and safer Internet Explorer 
8. http://downloads.yahoo.com/in/internetexplorer/

[flexcoders] Synchronizing two ArracyCollections

2009-07-19 Thread Craig
I need to create a DataModel.as that will synchronize two
arraycollections and allow me to update a Form based on the contents of
the 2nd arraycollection.index.item(s) when the first arraycollection
selecteditem is clicked as the dataprovider for a datagrid.


The 2 arraycollections are populated via webservices from sql database,
(which I can not InnerJoin from 4 different tables due to
performance)... so I end with two separate arraycollections:

One populates a Datagrid, the other is just resident in an
ArrayCollection:  Here is some of the sample code:

 mx:columns
 mx:DataGridColumn dataField=Ticker
 headerText=Ticker/
 positions:KindColumn id=Kind
 headerText=Kind
 dataField=Kind  
itemRenderer=com.steury.baseClasses.CellFieldTrd/
 mx:DataGridColumn id=EnterPrice
 labelFunction={myPrice}
 dataField=EnterPrice
 headerText=EnterPrice/
 mx:DataGridColumn id=ClosePrice
 labelFunction={myClosePr}
 dataField=Close
 headerText=Price/
 positions:ProfitColumn id=Profit
 headerText=Profit
 dataField=Profit
 labelFunction={perCent}
 itemRenderer=com.steury.baseClasses.CellFieldInt/
 /mx:columns

__

 positions:DgOrdExt id=dgOrdExt
 width=100% height=50%
 textAlign=center
 dataProvider={Array_OrdExt}
 itemClick=onTick4()  

One Array is Array_OrdEx and the other Array is Array_Exits.

When I select an item on the dgOrdExt DataGrid, I simply want to
populate the text values of a Form with the appropriate Items in the
second datagrid... Here is the trick... they both share the same
'Ticker' value, but just different other variables... so it's not too
difficult, it's just trickier than my novice programming skills can
handle - easily.

 [Bindable] public var ExtTicker:String;

So the OnTick4() event will contain the following code:

  ExtTicker=dgOrdExt.selectedItem.Ticker;

Then I need to somehow update the form as follows:
 formOrdExt.tiHigh.text=dgOrdExt.selectedItem.High;
 formOrdExt.tiLow.text=dgOrdExt.selectedItem.Low

formOrdExt.tiStrategy.text=Array_Exists.getItemAt({ExtTicker}).Strategy;

Or I need to build an DataModel.as class to sychronize the two
arraycollections... I have thought about using source.concat but that
will append the two collections and I will have 2 of every Ticker, where
I only want 1 of every Ticker with the appropriate value (Open, High,
Low, SellPrice, Profit, BudyDate, Exit, Strategy, etc).

Can someone give me a hand?
CS





[flexcoders] Trouble with Combobox within a dynamically loaded swf

2009-07-19 Thread Dave Kong
When I load a swf dynamically within another swf, there is a combobox near the 
bottom edge of the inner swf. When I click on it, the dropdown extends downward 
beyond the border of the inner swf, and is therefore mostly obscured. How can I 
make it so that the dropdown will extend upward?

In a normal swf, if a combobox is near the bottom, the dropdown list will 
detect the stage border and extend upward instead. It seems like the combobox 
is not able to detect the loader's border. Is there a workaround if this is the 
case?

Thanks!