[flexcoders] paging

2011-09-26 Thread lincoln
can anybody help me in creating paging for datagrid using coldfuion and oracle?



[flexcoders] passing parameters to coldfusion

2011-09-13 Thread lincoln
Hi ,
I want to parameters to cfm file from flex.. the parameters contains arrays and 
objects ... please help me how to do this



[flexcoders] inline SVG

2007-05-27 Thread Lincoln Mitchell
Does anyone have an example of inline SVG code(not embedded) working within
the Flex/Apollo or Flex/browser environments. Apparently Mark Anders showed
a flex component for inline SVG at flex360.

Linc 



RE: [flexcoders] Re: ComboBox icon

2007-05-25 Thread Lincoln Mitchell
Brill' thanks a million.

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of scalenine
Sent: Friday, 25 May 2007 2:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: ComboBox icon

 

Something like this?

http://flexibleexpe
http://flexibleexperiments.wordpress.com/2007/04/28/flex-201-combobox-with-
icon-support/
riments.wordpress.com/2007/04/28/flex-201-combobox-with-icon-support/

Juan
scalenine.com

--- In [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com,
lincmitch [EMAIL PROTECTED] wrote:

 I have the same requirement. Did you resolve it yet?
 
 --- In [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com,
hrund1k me@ wrote:
 
  Hi guys!
  
  I need to display an icon in the header of ComboBox for selected 
  item. It's easy to display icons in dropdown list, but i can't find a 
  way to display icon in the header for selected item. 
  
  Thanks!
 


 



RE: [flexcoders] DateChooser X and Y?

2007-05-23 Thread Lincoln Mitchell
Many thanks Gordon, it works a treat!

 

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Gordon Smith
Sent: Wednesday, 23 May 2007 9:32 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DateChooser X and Y?

 

Handle the DateField's open event and set the position of its dropdown.
The dropdown property is in the mx_internal namespace (which means it is
subject to change without notice) but you can stil access it.

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

mx:Script
![CDATA[

private function dateField_openHandler(event:Event):void
{
dateField.mx_internal::dropdown.x = 10;
dateField.mx_internal::dropdown.y = 10;
}

]]
/mx:Script

mx:DateField id=dateField open=dateField_openHandler(event)/

/mx:Application

- Gordon

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Tuesday, May 22, 2007 3:35 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DateChooser X and Y?

yes

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Gordon Smith
Sent: Wednesday, 23 May 2007 6:07 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DateChooser X and Y?

x and y are properties, not styles.

A DateField pops up its DateChooser in a location relative to the DateField.
Are you trying to make it pop up in some location you specify?

- Gordon

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Tuesday, May 22, 2007 1:50 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DateChooser X and Y?

You are right - I missed the Show Inherited Public Properties .

Can this be determined if accessed via the DateField?

I have been looking at dateChooserStyleName as below but this didn't work:

?xml version=1.0 encoding=utf-8?

mx:ApolloApplication layout=absolute
xmlns:mx=http://www.adobe.com/2006/mxml;

. mx:Style

.myDateChooser{x:200;y:200}

  /mx:Style

   mx:DateField dateChooserStyleName=myDateChooser/

/mx:ApolloApplication

Linc

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Gordon Smith
Sent: Wednesday, 23 May 2007 12:35 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DateChooser X and Y?

In what sense do these appear to be missing? I see them in the Language
Reference as inherited properties.

- Gordon

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Tuesday, May 22, 2007 4:03 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] DateChooser X and Y?

There appears to be no x and y attributes for this component but is it still
possible to define exactly where the DateChooser will appear?

Linc

 



[flexcoders] Perth,Oz based flexoids?

2007-05-23 Thread Lincoln Mitchell
Hi all,

I am based in Perth, West Australia. Is any other flex developers out this
way?
It's always good to know. Happy to chat / get together to talk all things
Flex/RIA!

Linc




[flexcoders] titleWindow cutomisation

2007-05-23 Thread Lincoln Mitchell
How do you remove ALL the space around a TitleWindow main content area?
This is how far I have got:

---
?xml version=1.0 encoding=utf-8?
mx:TitleWindow 
xmlns:mx=http://www.adobe.com/2006/mxml; title=title
backgroundColor=red
headerHeight=0
borderStyle=none borderSides= borderThickness=0
dropShadowEnabled=false
paddingLeft=0 paddingRight=0 paddingTop=0 paddingBottom=0

mx:VBox backgroundColor=yellow width=100% height=100%
/mx:VBox
/mx:TitleWindow  
---

Any help appreciated.

Linc




[flexcoders] XSLT/XPath and flex

2007-05-23 Thread Lincoln Mitchell
I want to make the best of the MXML file and generate various documents from
it using XSLT and XPath. The kind of things I want to create are:
1. Lists of icons/images used in app - presented as HTML or pdf
2. List of Components used in app - presented as HTML or pdf
3. Variation of the mxml file say a PDA version.

I have used an XML publishing framework called apache cocoon and wanted to
really take advantage of the fact that MXML is XML. Would Cairngorm or some
other framework do this or could I somehow send MXML to Cocoon?

Any hints?

Linc




RE: [flexcoders] titleWindow cutomisation

2007-05-23 Thread Lincoln Mitchell
Grand!

I guess I assumed borderThickness=0 would have dealt with that!

This list is awesome. Thx heaps.

 

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Flexing...
Sent: Wednesday, 23 May 2007 4:44 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] titleWindow cutomisation

 

Also set following to zero

 

borderThicknessBottom

borderThicknessTop

borderThicknessLeft

borderThicknessRight

 

Refer http://livedocs.
http://livedocs.adobe.com/flex/2/langref/mx/containers/Panel.html
adobe.com/flex/2/langref/mx/containers/Panel.html (TitleWindow extends
Panel) for more details.

 

On May 23, 2007, at 2:05 PM, Lincoln Mitchell wrote:





How do you remove ALL the space around a TitleWindow main content area?
This is how far I have got:

---
?xml version=1.0 encoding=utf-8?
mx:TitleWindow 
xmlns:mx= http://www.adobe.com/2006/mxml http://www.adobe.com/2006/mxml;
title=title
backgroundColor=red
headerHeight=0
borderStyle=none borderSides= borderThickness=0
dropShadowEnabled=false
paddingLeft=0 paddingRight=0 paddingTop=0 paddingBottom=0

mx:VBox backgroundColor=yellow width=100% height=100%
/mx:VBox
/mx:TitleWindow 
---

Any help appreciated.

Linc




 

 



RE: [flexcoders] XSLT/XPath and flex

2007-05-23 Thread Lincoln Mitchell
You say it's feasible - do you know how?

In addition, I would like to generate mxml via a series of chained xslt
files.

 

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Samuel R. Neff
Sent: Wednesday, 23 May 2007 9:16 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] XSLT/XPath and flex

 


Flex and MXML are used for creating rich internet applications. The other
things you mentioned are all static documents. While it's certainly
feasible to convert MXML to the other formats, you will have to greatly
limit what you do in MXML in order to achieve this goal--particularly using
custom components and dynamic runtime generated content.

Sam

---
We're Hiring! Seeking a passionate developer to join our team building Flex
based products. Position is in the Washington D.C. metro area. If interested
contact [EMAIL PROTECTED] mailto:careers%40blinemedical.com l.com

-Original Message-
From: [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com
[mailto:[EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com]
On
Behalf Of Lincoln Mitchell
Sent: Wednesday, May 23, 2007 4:49 AM
To: [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com
Cc: [EMAIL PROTECTED] mailto:users%40cocoon.apache.org apache.org
Subject: [flexcoders] XSLT/XPath and flex

I want to make the best of the MXML file and generate various documents from
it using XSLT and XPath. The kind of things I want to create are:
1. Lists of icons/images used in app - presented as HTML or pdf
2. List of Components used in app - presented as HTML or pdf
3. Variation of the mxml file say a PDA version.

I have used an XML publishing framework called apache cocoon and wanted to
really take advantage of the fact that MXML is XML. Would Cairngorm or some
other framework do this or could I somehow send MXML to Cocoon?

Any hints?

Linc

 



[flexcoders] can't remove space around label

2007-05-22 Thread Lincoln Mitchell
I need to get a Label (or Text) as close as possible to an image sitting
below it.
Padding-bottom and height attributes only do part of the job.
It's like there is a margin around the label.

Any ideas?

Linc




RE: [flexcoders] can't remove space around label

2007-05-22 Thread Lincoln Mitchell
Sorted! It had nothing to do with label or text but a layout issue related
to the whole app.

To fix I added the attribute verticalGap=0 to the ApolloApplication node.

 

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Tuesday, 22 May 2007 4:37 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] can't remove space around label

 

I need to get a Label (or Text) as close as possible to an image sitting
below it.
Padding-bottom and height attributes only do part of the job.
It's like there is a margin around the label.

Any ideas?

Linc

 



[flexcoders] DateChooser X and Y?

2007-05-22 Thread Lincoln Mitchell
There appears to be no x and y attributes for this component but is it still
possible to define exactly where the DateChooser will appear?

Linc




RE: [flexcoders] DateChooser X and Y?

2007-05-22 Thread Lincoln Mitchell
You are right - I missed the Show Inherited Public Properties .

Can this be determined if accessed via the DateField?

I have been looking at dateChooserStyleName as below but this didn't work:

 

?xml version=1.0 encoding=utf-8?

mx:ApolloApplication layout=absolute
xmlns:mx=http://www.adobe.com/2006/mxml;

. mx:Style

.myDateChooser{x:200;y:200}

  /mx:Style

   mx:DateField dateChooserStyleName=myDateChooser/

/mx:ApolloApplication

 

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Gordon Smith
Sent: Wednesday, 23 May 2007 12:35 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DateChooser X and Y?

 

In what sense do these appear to be missing? I see them in the Language
Reference as inherited properties.

 

- Gordon

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Tuesday, May 22, 2007 4:03 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] DateChooser X and Y?

There appears to be no x and y attributes for this component but is it still
possible to define exactly where the DateChooser will appear?

Linc

 



[flexcoders] 100% wide VBox causing space on left to appear

2007-05-22 Thread Lincoln Mitchell
In the following example unwanted space appears on the left of the screen
which then causes the horizontal scroll bar to appear. It seems to be caused
by having width=100% on the VBox. Is this a bug?

Example:
?xml version=1.0 encoding=utf-8?
mx:ApolloApplication xmlns:mx=http://www.adobe.com/2006/mxml;
  backgroundColor=green paddingLeft=0 paddingTop=0 paddingRight=0
  paddingBottom=0
  mx:VBox width=100% backgroundColor=red
mx:TextInput width=100 height=600/
  /mx:VBox
/mx:ApolloApplication

Any help appreciated.

Linc




RE: [flexcoders] DateChooser X and Y?

2007-05-22 Thread Lincoln Mitchell
yes

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Gordon Smith
Sent: Wednesday, 23 May 2007 6:07 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DateChooser X and Y?

 

x and y are properties, not styles.

 

A DateField pops up its DateChooser in a location relative to the DateField.
Are you trying to make it pop up in some location you specify?

 

- Gordon

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Tuesday, May 22, 2007 1:50 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DateChooser X and Y?

You are right - I missed the Show Inherited Public Properties .

Can this be determined if accessed via the DateField?

I have been looking at dateChooserStyleName as below but this didn't work:

?xml version=1.0 encoding=utf-8?

mx:ApolloApplication layout=absolute
xmlns:mx=http://www.adobe.com/2006/mxml;

. mx:Style

.myDateChooser{x:200;y:200}

  /mx:Style

   mx:DateField dateChooserStyleName=myDateChooser/

/mx:ApolloApplication

Linc

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Gordon Smith
Sent: Wednesday, 23 May 2007 12:35 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DateChooser X and Y?

In what sense do these appear to be missing? I see them in the Language
Reference as inherited properties.

- Gordon

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Tuesday, May 22, 2007 4:03 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] DateChooser X and Y?

There appears to be no x and y attributes for this component but is it still
possible to define exactly where the DateChooser will appear?

Linc

 



[flexcoders] How do you generate inactive icon states

2007-05-17 Thread Lincoln Mitchell
I am trying to generate an inactive icon state from an original color png
file. It needs to be 50% alpha=0.5 and grey scale.

Can this be done in code, if so how?

TIA

Linc




RE: [flexcoders] How do you generate inactive icon states

2007-05-17 Thread Lincoln Mitchell
There doesn't appear to be a grayscale filter. However, BlendMode and
ColorMatrixFilter sound promising. I am I on the right track?

 

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Petro Bochan
Sent: Thursday, 17 May 2007 5:29 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How do you generate inactive icon states

 

?xml version=1.0 encoding=utf-8?

mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
creationComplete=init(); layout=absolute

mx:Script

![CDATA[

   private var pLoader:Loader;

   private var pUrl:URLRequest;

   

   private function init():void {

   pLoader = new Loader();

   pUrl= new URLRequest();

   

   pUrl.url =
http://rols.ramesys.com/images/Ramesys/Adobe/Adobe-Logo.jpg;;

 
pLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);

   pLoader.load(pUrl);

   }

   

   private function
onLoadComplete(anEvet:Event):void {

   var
vDropShadowFilter:DropShadowFilter = new DropShadowFilter();

   

   pLoader.alpha   = .5;

   pLoader.filters =
[vDropShadowFilter];

   

   theStage.addChild(pLoader);

   }

]]

/mx:Script



mx:SWFLoader id=theStage height=100% width=100%/

/mx:Application

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Thursday, May 17, 2007 11:43 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How do you generate inactive icon states

 

I am trying to generate an inactive icon state from an original color png
file. It needs to be 50% alpha=0.5 and grey scale.

Can this be done in code, if so how?

TIA

Linc

 



RE: [flexcoders] How do you generate inactive icon states

2007-05-17 Thread Lincoln Mitchell
Wonderful. Thanks for the help Petro!

 

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Petro Bochan
Sent: Friday, 18 May 2007 1:55 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How do you generate inactive icon states

 

Hi,

 

Sure, the ColorMatrixFilter is sure to go. Try this:

 

pLoader.filters = [new ColorMatrixFilter([0.3086, 0.6094, 0.0820, 0, 0,
0.3086, 0.6094, 0.0820, 0, 0, 0.3086, 0.6094, 0.0820, 0, 0, 0, 0, 0, 1,
0])];

 

Cheers,

Petro

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Thursday, May 17, 2007 5:27 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How do you generate inactive icon states

 

There doesn't appear to be a grayscale filter. However, BlendMode and
ColorMatrixFilter sound promising. I am I on the right track?

 

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Petro Bochan
Sent: Thursday, 17 May 2007 5:29 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] How do you generate inactive icon states

 

?xml version=1.0 encoding=utf-8?

mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
creationComplete=init(); layout=absolute

mx:Script

![CDATA[

   private var pLoader:Loader;

   private var pUrl:URLRequest;

   

   private function init():void {

   pLoader = new Loader();

   pUrl= new URLRequest();

   

   pUrl.url =
http://rols.ramesys.com/images/Ramesys/Adobe/Adobe-Logo.jpg;;

 
pLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);

   pLoader.load(pUrl);

   }

   

   private function
onLoadComplete(anEvet:Event):void {

   var
vDropShadowFilter:DropShadowFilter = new DropShadowFilter();

   

   pLoader.alpha   = .5;

   pLoader.filters =
[vDropShadowFilter];

   

   theStage.addChild(pLoader);

   }

]]

/mx:Script



mx:SWFLoader id=theStage height=100% width=100%/

/mx:Application

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Thursday, May 17, 2007 11:43 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How do you generate inactive icon states

 

I am trying to generate an inactive icon state from an original color png
file. It needs to be 50% alpha=0.5 and grey scale.

Can this be done in code, if so how?

TIA

Linc

 



RE: [flexcoders] Re: access to flex app icon set?

2007-05-16 Thread Lincoln Mitchell
Thanks Mrinal, that worked fine.

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mrinal Wadhwa
Sent: Thursday, 17 May 2007 5:32 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: access to flex app icon set?

 

Hi Linc,

In your Flex Builder2  Flex SDK 2  frameworks folder ...

There is defaults.css ... in that if you search TitleWindow in it you would
see that the close button is defined as follows ...

closeButtonDisabledSkin:
Embed(source=Assets.swf,symbol=CloseButtonDisabled);
closeButtonDownSkin:
Embed(source=Assets.swf,symbol=CloseButtonDown);
closeButtonOverSkin:
Embed(source=Assets.swf,symbol=CloseButtonOver);
closeButtonUpSkin: Embed(source=Assets.swf,symbol=CloseButtonUp);


Assets.swf is also present in Flex Builder2  Flex SDK 2  frameworks


Mrinal Wadhwa http://weblog.mrinalwadhwa.com  






--- In flexcoders@yahoogroups.com, lincmitch [EMAIL PROTECTED] wrote:

 Is it possible to get the icon set used in a Flex application?
 In particular I was after the close icon on a TitleWindow.
 I have search for pngs in the install folder C:\Program
 Files\Adobe\Flex Builder 2. Maybe they are generated in code, so its
 not possible.
 
 Linc


 



RE: [flexcoders] Flex Component Kit for Flash CS3

2007-05-15 Thread Lincoln Mitchell
Fixed! I didn't have the correct version of 2.0.1. Ran the latest update and
now works a charm.

 

Thanks Matt for the response.

 

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Saturday, 12 May 2007 11:29 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex Component Kit for Flash CS3

 

I think this is related to me updating Eclipse 3.2. Because I created a new
mxml file and got all the errors listed in post #60878

I will try to resolve this 1st and then see if the other errors still
appear.

Linc

 



RE: [flexcoders] Flex Component Kit for Flash CS3

2007-05-12 Thread Lincoln Mitchell
I think this is related to me updating Eclipse 3.2. Because I created a new
mxml file and got all the errors listed in post #60878

I will try to resolve this 1st and then see if the other errors still
appear.

Linc




RE: [flexcoders] Flex Component Kit for Flash CS3

2007-05-11 Thread Lincoln Mitchell
Hi Matt,

 

I didn't know about packages. Assumed they were to do with SDK not Flex
Builder. Any how, I found it and renamed the package and the swc file. OS
that the mxml file and all 3 elements names are unique.

But, I still get the same error!

 

Many thanks for the help so far.

Linc

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Matt Chotin
Sent: Friday, 11 May 2007 9:23 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex Component Kit for Flash CS3

 

Did you maybe name your MXML flashComponent.mxml and it's in a package
called flashComponent?  Feels like there may be a classname problem that
would confuse the compiler.

 

Matt

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Thursday, May 10, 2007 3:30 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Component Kit for Flash CS3

Hi all,

I have been trying to getting the Flex Component Kit for Flash CS3 to
work.
I am using Flex Builder version 2.0.143459 and working through the material
at:
http://labs.
http://labs.adobe.com/wiki/index.php/Flex_Component_Kit_for_Flash_CS3
adobe.com/wiki/index.php/Flex_Component_Kit_for_Flash_CS3

In particular the example in swf9.pdf part of
flex_component_kit_docs_042307.zip

I think I am following the process correctly but get errors on the
mx:Application tag in the mxml code:
---
?xml version=1.0?
!-- skins/EmbedSWF9ButtonSkins.mxml --
mx:Application xmlns:mx=http://www.adobe. http://www.adobe.com/2006/mxml
com/2006/mxml height=1500
xmlns:myComps=*
mx:Button label=Click Me
upSkin=MyButtonUpSkin
overSkin=MyButtonOverSkin
downSkin=MyButtonDownSkin
disabledSkin=MyButtonDisabledSkin/
myComps:MyButtonUpSkin/
myComps:MyButtonOverSkin/
myComps:MyButtonDownSkin/
myComps:MyButtonDisabledSkin/
/mx:Application

The errors:
---
Severity Description Resource In Folder Location
Creation Time Id
2 1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 282
2 1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 284
2 1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 286
2 1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 281
2 1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 283
2 1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 285
1 Design mode: Error creating item MyButtonDisabledSkin in parent
Application. Please choose Design  Refresh to refresh design mode.
flashComponent.mxml flashComponent May 10, 2007 6:22:30 PM 280
---

This issue or one very similar was also noted in post #73543 but this got no
replies.

Hope someone can help as I am a newbie and real keen see what possible with
the Flex/Flash combo.

Thanks in advance for any help.

Linc

 



RE: [flexcoders] Flex Component Kit for Flash CS3

2007-05-11 Thread Lincoln Mitchell
Matt,

You mentioned about classname.  There is no className=. in the mxml.
Should there be?

 

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Matt Chotin
Sent: Friday, 11 May 2007 9:23 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex Component Kit for Flash CS3

 

Did you maybe name your MXML flashComponent.mxml and it's in a package
called flashComponent?  Feels like there may be a classname problem that
would confuse the compiler.

 

Matt

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Thursday, May 10, 2007 3:30 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Component Kit for Flash CS3

Hi all,

I have been trying to getting the Flex Component Kit for Flash CS3 to
work.
I am using Flex Builder version 2.0.143459 and working through the material
at:
http://labs.
http://labs.adobe.com/wiki/index.php/Flex_Component_Kit_for_Flash_CS3
adobe.com/wiki/index.php/Flex_Component_Kit_for_Flash_CS3

In particular the example in swf9.pdf part of
flex_component_kit_docs_042307.zip

I think I am following the process correctly but get errors on the
mx:Application tag in the mxml code:
---
?xml version=1.0?
!-- skins/EmbedSWF9ButtonSkins.mxml --
mx:Application xmlns:mx=http://www.adobe. http://www.adobe.com/2006/mxml
com/2006/mxml height=1500
xmlns:myComps=*
mx:Button label=Click Me
upSkin=MyButtonUpSkin
overSkin=MyButtonOverSkin
downSkin=MyButtonDownSkin
disabledSkin=MyButtonDisabledSkin/
myComps:MyButtonUpSkin/
myComps:MyButtonOverSkin/
myComps:MyButtonDownSkin/
myComps:MyButtonDisabledSkin/
/mx:Application

The errors:
---
Severity Description Resource In Folder Location
Creation Time Id
2 1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 282
2 1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 284
2 1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 286
2 1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 281
2 1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 283
2 1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 285
1 Design mode: Error creating item MyButtonDisabledSkin in parent
Application. Please choose Design  Refresh to refresh design mode.
flashComponent.mxml flashComponent May 10, 2007 6:22:30 PM 280
---

This issue or one very similar was also noted in post #73543 but this got no
replies.

Hope someone can help as I am a newbie and real keen see what possible with
the Flex/Flash combo.

Thanks in advance for any help.

Linc

 



RE: [flexcoders] Flex Component Kit for Flash CS3

2007-05-11 Thread Lincoln Mitchell
I placed the package name in the namespace
xmlns:myComps=flashComponentPackage.* as below:

 

?xml version=1.0?

  !-- skins/EmbedSWF9ButtonSkins.mxml --

  mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; height=1500

xmlns:myComps=flashComponentPackage.*

mx:Button label=Click Me

  upSkin=MyButtonUpSkin

  overSkin=MyButtonOverSkin

  downSkin=MyButtonDownSkin

  disabledSkin=MyButtonDisabledSkin/

myComps:MyButtonUpSkin/

myComps:MyButtonOverSkin/

myComps:MyButtonDownSkin/

myComps:MyButtonDisabledSkin/

/mx:Application

 

Still not working - any clues - anyone

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Matt Chotin
Sent: Friday, 11 May 2007 9:23 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex Component Kit for Flash CS3

 

Did you maybe name your MXML flashComponent.mxml and it's in a package
called flashComponent?  Feels like there may be a classname problem that
would confuse the compiler.

 

Matt

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Lincoln Mitchell
Sent: Thursday, May 10, 2007 3:30 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Component Kit for Flash CS3

Hi all,

I have been trying to getting the Flex Component Kit for Flash CS3 to
work.
I am using Flex Builder version 2.0.143459 and working through the material
at:
http://labs.
http://labs.adobe.com/wiki/index.php/Flex_Component_Kit_for_Flash_CS3
adobe.com/wiki/index.php/Flex_Component_Kit_for_Flash_CS3

In particular the example in swf9.pdf part of
flex_component_kit_docs_042307.zip

I think I am following the process correctly but get errors on the
mx:Application tag in the mxml code:
---
?xml version=1.0?
!-- skins/EmbedSWF9ButtonSkins.mxml --
mx:Application xmlns:mx=http://www.adobe. http://www.adobe.com/2006/mxml
com/2006/mxml height=1500
xmlns:myComps=*
mx:Button label=Click Me
upSkin=MyButtonUpSkin
overSkin=MyButtonOverSkin
downSkin=MyButtonDownSkin
disabledSkin=MyButtonDisabledSkin/
myComps:MyButtonUpSkin/
myComps:MyButtonOverSkin/
myComps:MyButtonDownSkin/
myComps:MyButtonDisabledSkin/
/mx:Application

The errors:
---
Severity Description Resource In Folder Location
Creation Time Id
2 1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 282
2 1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 284
2 1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 286
2 1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 281
2 1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 283
2 1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent line 4 May 10, 2007 6:22:38 PM 285
1 Design mode: Error creating item MyButtonDisabledSkin in parent
Application. Please choose Design  Refresh to refresh design mode.
flashComponent.mxml flashComponent May 10, 2007 6:22:30 PM 280
---

This issue or one very similar was also noted in post #73543 but this got no
replies.

Hope someone can help as I am a newbie and real keen see what possible with
the Flex/Flash combo.

Thanks in advance for any help.

Linc

 



[flexcoders] Flex Component Kit for Flash CS3

2007-05-10 Thread Lincoln Mitchell
Hi all,

I have been trying to getting the Flex Component Kit for Flash CS3 to
work.
I am using Flex Builder version 2.0.143459 and working through the material
at:
http://labs.adobe.com/wiki/index.php/Flex_Component_Kit_for_Flash_CS3

In particular the example in swf9.pdf part of
flex_component_kit_docs_042307.zip

I think I am following the process correctly but get errors on the
mx:Application tag in the mxml code:
---
?xml version=1.0?
  !-- skins/EmbedSWF9ButtonSkins.mxml --
  mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; height=1500
xmlns:myComps=*
mx:Button label=Click Me
  upSkin=MyButtonUpSkin
  overSkin=MyButtonOverSkin
  downSkin=MyButtonDownSkin
  disabledSkin=MyButtonDisabledSkin/
myComps:MyButtonUpSkin/
myComps:MyButtonOverSkin/
myComps:MyButtonDownSkin/
myComps:MyButtonDisabledSkin/
/mx:Application

The errors:
---
SeverityDescription ResourceIn Folder   Location
Creation Time   Id
2   1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent  line 4  May 10, 2007 6:22:38 PM 282
2   1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent  line 4  May 10, 2007 6:22:38 PM 284
2   1144: Interface method get isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent  line 4  May 10, 2007 6:22:38 PM 286
2   1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent  line 4  May 10, 2007 6:22:38 PM 281
2   1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent  line 4  May 10, 2007 6:22:38 PM 283
2   1144: Interface method set isPopUp in namespace mx.core:IUIComponent
is implemented with an incompatible signature in class flashComponent.
flashComponent.mxml flashComponent  line 4  May 10, 2007 6:22:38 PM 285
1   Design mode: Error creating item MyButtonDisabledSkin in parent
Application. Please choose Design  Refresh to refresh design mode.
flashComponent.mxml flashComponent  May 10, 2007 6:22:30 PM 280
---

This issue or one very similar was also noted in post #73543 but this got no
replies.

Hope someone can help as I am a newbie and real keen see what possible with
the Flex/Flash combo.

Thanks in advance for any help.



Linc