[flexcoders] Help, please

2009-12-02 Thread Greg Morphis
I need help when trying to compile a Flex 2 app with SSL using Ant I
keep getting an error. I've Googled "Error: Unable to locate specified
base class 'mx.core.Application' for component class 'index'"
with not much help. I'm using Eclipse with Flex builder 2 lugin. Please help.

Buildfile:
C:\eclipseworkspace\flexdev\rrtbuilds\RetailForms.xml

compileSSL:
[java] Loading configuration file C:\Program Files\Adobe\Flex Builder
2 Plug-in\Flex SDK 2\frameworks\flex-config.xml
[java] C:\Temp\RetailForms\index.mxml: Error: Unable to locate
specified base class 'mx.core.Application' for component class
'index'.
BUILD FAILED

C:\eclipseworkspace\flexdev\rrtbuilds\RetailForms.xml:85: Java returned: 1

Total time: 3 seconds

Here's from the build file
















Re: [flexcoders] help please

2006-07-18 Thread Samuel Reuben



See Uday,
 
You can use the contentWidth and contentHeight on the updateComplete event to determine how you want to show your images.
 
Some ideas could be that you set the visible to false while the images are loading and show them once you've got the logic worked out, as to what and how you want to show them.
 
Hope this helps,
-sam 
On 7/15/06, uday kiran <[EMAIL PROTECTED]> wrote:






I hava a problemI have diffrent photos with same height but diffrentwidth, two set of photo width's, one photoset width is3 time the other set.they are jumbled.Now the problem is when I get small photos i should
display three of them in a row when I get Bigger on Ishould display the bigger on only and in a row i canhave ie three small photos or two small photos or onesamll photo or one big photo(placed from left).
how to solve it...__Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com  

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] help please

2006-07-15 Thread uday kiran
I hava a problem

I have diffrent photos with same height but diffrent
width, two set of photo width's, one photoset width is
3 time the other set.

they are jumbled.

Now the problem is when I get small photos i should
display three of them in a row when I get Bigger on I
should display the bigger on only and in a row i can
have ie three small photos or two small photos or one
samll photo or one big photo(placed from left).

how to solve it...




__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Help Please: Flex 2: - Beta 2: Multi-column form layout

2006-04-02 Thread Matt Chotin
It may be that Form doesn't end up offering what you want and the Grid
might be better for you.  I haven't seen the FormItem truncation problem
you mention, if you want to send us a testcase we can check it out.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Smitha
Sent: Friday, March 31, 2006 8:35 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help Please: Flex 2: - Beta 2: Multi-column form
layout

Posting again in the hope of getting a response.
See below for bit more detail.

1. Anyone seen problem with FormItem truncating the bottom edge of 
its children?
2. What is the most effective way to achieve multi column field 
layout in mx.containers.Form?

Thanks in advance.
Anand

>
> I need a grid layout of FieldItems while leveraging the form 
> handling logic (default button, tab management, anything else?)
> 
> I tried the following:
> 
> MyForm extends Form
> function updateDisplayList() {
>   // Layout MyFormItems @ 2 per row
>   // Set the width to half the available space
> 
> }
> 
> MyFormItem extends FormItem
> function createChildren() {
>   addChild() // for each UIComponent like textbox, combobox etc.
> }
> 
> Questions:
> 1. The FormItem height is not proper - seems to chop off the 
bottom 
> edge of the child control(s) by approx the top margin amount
> 
> 2. Is there an alternative to custom layout code in MyForm? Can 
the 
> Grid layout be used in combination with Form?
> By default, Form seems to iterate its direct descendants for 
> children of type FormItem or FormHeading and deal with them.
> 
> Thanks
> Anand
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Help Please: Flex 2: - Beta 2: Multi-column form layout

2006-03-31 Thread Smitha
Posting again in the hope of getting a response.
See below for bit more detail.

1. Anyone seen problem with FormItem truncating the bottom edge of 
its children?
2. What is the most effective way to achieve multi column field 
layout in mx.containers.Form?

Thanks in advance.
Anand

>
> I need a grid layout of FieldItems while leveraging the form 
> handling logic (default button, tab management, anything else?)
> 
> I tried the following:
> 
> MyForm extends Form
> function updateDisplayList() {
>   // Layout MyFormItems @ 2 per row
>   // Set the width to half the available space
> 
> }
> 
> MyFormItem extends FormItem
> function createChildren() {
>   addChild() // for each UIComponent like textbox, combobox etc.
> }
> 
> Questions:
> 1. The FormItem height is not proper - seems to chop off the 
bottom 
> edge of the child control(s) by approx the top margin amount
> 
> 2. Is there an alternative to custom layout code in MyForm? Can 
the 
> Grid layout be used in combination with Form?
> By default, Form seems to iterate its direct descendants for 
> children of type FormItem or FormHeading and deal with them.
> 
> Thanks
> Anand
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/