[flexcoders] problem embedding an icon in a popupmenu

2006-07-16 Thread hank williams



I am trying to get a menu to display some icons, and I cant get them to show up. The code I have written is based on the sample code for creating a popup menu and the sample code for creating a list where they show you how to include an icon. But the two examples are different enough that I may not be merging them together right.
The other thing that is odd is, if you look at the code you will se a line that looks like this:  myMenu.labelField=@label
I dont know why I need the @ here at all. But without it the label doesnt show up whereas with it it does. But for the following line  myMenu.labelField=@icon
The icons dont show up.I know that I am embedding the icon properly because the code also embeds one of the same icons inside the button.Any help appreciated.Hank?xml version=
1.0 encoding=utf-8?mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml   mx:LinkButton id=linkButton width=100
  icon=@Embed(source='../assets/assets.swf', symbol='thumbsup')  click=showMenu();mx:Script  ![CDATA[import 
mx.controls.Menu;  import mx.events.MenuEvent;  import mx.controls.Alert;   import flash.geom.Point; [Embed(source='../assets/assets.swf', symbol='thumbsup')] 
 public var thumbsup:Class;  [Embed(source='../assets/assets.swf', symbol='thumbsdown')] public var thumbsdown:Class;private var point1:Point = new Point();
  private var myMenu:Menu;// Create and display the Menu control.  private function showMenu():void {  myMenu= Menu.createMenu(parent, myMenuData, false);
  myMenu.labelField=@label  myMenu.iconField=@icon  myMenu.addEventListener(itemClick, menuHandler);  
  // Calculate position of Menu in Application's coordinates.   point1.x=linkButton.x;  point1.y=linkButton.y;   point1=
linkButton.localToGlobal(point1);   myMenu.show(point1.x, point1.y + linkButton.height + 1);  }// Event handler for the Menu control's change event.
  private function menuHandler(event:MenuEvent):void {  Alert.show(Label:  + event.item.label, Clicked menu item);  }   ]]
  /mx:Script /mx:LinkButton mx:XML id=myMenuData root menuitem label=No vote/ menuitem icon=thumbsup/
 menuitem icon=thumbsdown/ /root /mx:XML/mx:Canvas

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: problem embedding an icon in a popupmenu

2006-07-16 Thread hank williams



lol.Just five minutes ago I switched to an array and got it working.It looks like you cant create a field of type class in an xml object, or at least I wasnt able to. It seems to want to interpret it as text. When putting braces around it it doesnt work either.
But you are right. It was the wrong strategy anyway because the icon is left justified, so it looks wierd. I am just (today) playing with itemRenderers so I will give that a shot. In fact this popup is being used inside an itemrenderer that is inside a datagrid! So it looks like I will just have to do the next level :)
Thanks for taking a look. It was driving me crazy.HankOn 7/16/06, Tim Hoff [EMAIL PROTECTED] wrote:



Hi Hank,
I couldn't get this to work with xml. So, I changed the dataProvider to an array and used an iconFunction. It works, but if you select an icon, when the menu is displayed a second time the icon is also used as the selected icon. For what you are trying to do, I would recommend that you use an itemRenderer for your menu items. That way you can still use xml and control the positioning of the icon image. I know that you have asked this question a couple of time, so I thought I would give it a try. I can see why you are having problems with this.

-TH
?xml version=1.0 encoding=utf-8?mx:Canvas xmlns:mx=
http://www.adobe.com/2006/mxml creationComplete=initList(); mx:Script ![CDATA[  import mx.controls.Menu
; import mx.events.MenuEvent; import mx.controls.Alert;  import flash.geom.Point;
[Embed(source='../assets/assets.swf', symbol='thumbsdown')] public var thumbsup:Class; [Embed(source='../assets/assets.swf', symbol='thumbsup')]public var thumbsdown:Class; 
// Define data provider. private var myDP: Array; private function initList():void { myDP = [ {label:'No Vote', icon:''}, {label:'', icon:'thumbsup'},
 {label:'', icon:'thumbsdown'}];  }  private var point1:Point = new Point();  private var myMenu:Menu;  // Create and display the Menu control.
 private function showMenu():void {  myMenu=Menu.createMenu(parent, myDP, false);  myMenu.labelField=label; myMenu.iconFunction=myIconfunction;
 myMenu.addEventListener(itemClick, menuHandler);   // Calculate position of Menu in Application's coordinates.  point1.x=linkButton.x
; point1.y=linkButton.y;  point1= linkButton.localToGlobal(point1); myMenu.show(point1.x, point1.y + linkButton.height + 1); }  // Event handler for the Menu control's change event. 
 private function menuHandler(event:MenuEvent):void { Alert.show(Label:  + event.item.label, Clicked menu item); }   // Determine icon based on icon field. 
 private function myIconfunction(item:Object):Class { if (item.icon == thumbsup) { return thumbsup; }  if (item.icon == thumbsdown) {
 return thumbsdown; }  return null;  } ]]  /mx:Script
 mx:LinkButton id=linkButton width=100  icon=@Embed(source='../assets/assets.swf', symbol='thumbsup') click=showMenu();/
 /mx:Canvas
--- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote:
 I am trying to get a menu to display some icons, and I cant get them to show up. The code I have written is based on the sample code for creating a popup menu and the sample code for creating a list where they show you how to
 include an icon. But the two examples are different enough that I may not be merging them together right.  The other thing that is odd is, if you look at the code you will se a line that looks like this:
 myMenu.labelField=@label  I dont know why I need the @ here at all. But without it the label doesnt show up whereas with it it does. But for the following line myMenu.labelField=
@icon  The icons dont show up.  I know that I am embedding the icon properly because the code also embeds one of the same icons inside the button.  Any help appreciated.
  Hank  ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=
http://www.adobe.com/2006/mxml   mx:LinkButton id=linkButton width=100 icon=@Embed(source='../assets/assets.swf', symbol='thumbsup') click=showMenu();
  mx:Script ![CDATA[  import mx.controls.Menu; import mx.events.MenuEvent; import mx.controls.Alert; import flash.geom.Point;  [Embed(source='../assets/assets.swf', symbol='thumbsup')]
 public var thumbsup:Class; [Embed(source='../assets/assets.swf', symbol='thumbsdown')] public var thumbsdown:Class;  private var point1:Point = new Point(); private var myMenu:Menu;
  // Create and display the Menu control. private function showMenu():void { myMenu= Menu.createMenu(parent, myMenuData, false); myMenu.labelField=@label myMenu.iconField=
@icon myMenu.addEventListener(itemClick, menuHandler);  // Calculate position of Menu in Application's coordinates. point1.x=linkButton.x; point1.y=linkButton.y
; point1=linkButton.localToGlobal(point1);  myMenu.show(point1.x, point1.y + linkButton.height + 1); }  // Event handler for the Menu control's change event. private function menuHandler(event:MenuEvent):void {
 Alert.show(Label:  + event.item.label, Clicked menu item); } ]] /mx:Script /mx:LinkButton mx:XML id=myMenuData
 root

Re: [flexcoders] Re: problem embedding an icon in a popupmenu

2006-07-16 Thread hank williams



Yes... but how do you assign an itemRenderer to a menu.You cant use mxml which takes care of the typing niceties.the problem is that you cant do this:  myMenu= Menu.createMenu(parent, menuData, false);
  myMenu.itemRenderer=ThumbPopUpRenderer;Where ThumbPopUpRenderer is an MXML component. It gives you a type error because itemRenderer is of type IFactory and ThumbPopupRenderer is not.
But if you do this:  myMenu= Menu.createMenu(parent, menuData, false);  myMenu.itemRenderer=ThumbPopUpRenderer as IFactory;It runs, but apparently an MXML itemRenderer is not of the right type, so it throws a runtime error.
Any ideas?HankOn 7/16/06, hank williams [EMAIL PROTECTED] wrote:
lol.Just five minutes ago I switched to an array and got it working.It looks like you cant create a field of type class in an xml object, or at least I wasnt able to. It seems to want to interpret it as text. When putting braces around it it doesnt work either.
But you are right. It was the wrong strategy anyway because the icon is left justified, so it looks wierd. I am just (today) playing with itemRenderers so I will give that a shot. In fact this popup is being used inside an itemrenderer that is inside a datagrid! So it looks like I will just have to do the next level :)
Thanks for taking a look. It was driving me crazy.HankOn 7/16/06, 
Tim Hoff [EMAIL PROTECTED] wrote:



Hi Hank,
I couldn't get this to work with xml. So, I changed the dataProvider to an array and used an iconFunction. It works, but if you select an icon, when the menu is displayed a second time the icon is also used as the selected icon. For what you are trying to do, I would recommend that you use an itemRenderer for your menu items. That way you can still use xml and control the positioning of the icon image. I know that you have asked this question a couple of time, so I thought I would give it a try. I can see why you are having problems with this.

-TH
?xml version=1.0 encoding=utf-8?mx:Canvas xmlns:mx=

http://www.adobe.com/2006/mxml creationComplete=initList(); mx:Script ![CDATA[  import mx.controls.Menu

; import mx.events.MenuEvent; import mx.controls.Alert;  import flash.geom.Point;
[Embed(source='../assets/assets.swf', symbol='thumbsdown')] public var thumbsup:Class; [Embed(source='../assets/assets.swf', symbol='thumbsup')]public var thumbsdown:Class; 
// Define data provider. private var myDP: Array; private function initList():void { myDP = [ {label:'No Vote', icon:''}, {label:'', icon:'thumbsup'},
 {label:'', icon:'thumbsdown'}];  }  private var point1:Point = new Point();  private var myMenu:Menu;  // Create and display the Menu control.
 private function showMenu():void {  myMenu=Menu.createMenu(parent, myDP, false);  myMenu.labelField=label; myMenu.iconFunction=myIconfunction;

 myMenu.addEventListener(itemClick, menuHandler);   // Calculate position of Menu in Application's coordinates.  point1.x=linkButton.x

; point1.y=linkButton.y;  point1= linkButton.localToGlobal(point1); myMenu.show(point1.x, point1.y + linkButton.height + 1); }  // Event handler for the Menu control's change event. 
 private function menuHandler(event:MenuEvent):void { Alert.show(Label:  + event.item.label, Clicked menu item); }   // Determine icon based on icon field. 
 private function myIconfunction(item:Object):Class { if (item.icon == thumbsup) { return thumbsup; }  if (item.icon == thumbsdown) {
 return thumbsdown; }  return null;  } ]]  /mx:Script
 mx:LinkButton id=linkButton width=100  icon=@Embed(source='../assets/assets.swf', symbol='thumbsup') click=showMenu();/
 /mx:Canvas
--- In flexcoders@yahoogroups.com
, hank williams [EMAIL PROTECTED] wrote:
 I am trying to get a menu to display some icons, and I cant get them to show up. The code I have written is based on the sample code for creating a popup menu and the sample code for creating a list where they show you how to
 include an icon. But the two examples are different enough that I may not be merging them together right.  The other thing that is odd is, if you look at the code you will se a line that looks like this:
 myMenu.labelField=@label  I dont know why I need the @ here at all. But without it the label doesnt show up whereas with it it does. But for the following line myMenu.labelField=

@icon  The icons dont show up.  I know that I am embedding the icon properly because the code also embeds one of the same icons inside the button.  Any help appreciated.
  Hank  ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=

http://www.adobe.com/2006/mxml   mx:LinkButton id=linkButton width=100 icon=@Embed(source='../assets/assets.swf', symbol='thumbsup') click=showMenu();
  mx:Script ![CDATA[  import mx.controls.Menu; import mx.events.MenuEvent; import mx.controls.Alert; import flash.geom.Point;  [Embed(source='../assets/assets.swf', symbol='thumbsup')]
 public var thumbsup:Class; [Embed(source='../assets/assets.swf', symbol='thumbsdown')] public var thumbsdown:Class;  private var point1:Point = new Point

[flexcoders] making a buttons initial state only include the contents.

2006-07-15 Thread hank williams



I want to create a standard flex button, but where the initial state of the button only shows the text of the button. When you roll over the button, all of the rest of the flex buttonstuff would appear. So in the on rolled over text, the button would just look like plain text.
I know I could somehow just make skins for everything, but that seems like a very complex solution where I want to use almost all of the standard button functionality.Does anybody know if this is possible.
Hank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: Spring Enable Flex

2006-07-14 Thread hank williams



Actually, I very much doubt there is a clean mapping between spring configuration and FDS. There are things that are very FDS specific even for just remoting, which would most cleanly map to spring. And then there are other concepts that are totally different than what would have been considered in the design of spring configuration.
Apples and oranges, I'm afraid.RegardsHankOn 7/14/06, Allen Riddle [EMAIL PROTECTED]
 wrote:


















Thanks for the replies. But when I say "Spring
Enable Flex", I mean Spring enable the flex services configuration. So
you wire up all of the configuration (I'm assuming the configuration
files are just wiring up java objects) using Spring. This way, Spring can
manage the FDS resources. Maybe it's not possible or a bad idea, but if
you look at most open source projects (XFire for instance), a lot of them are
configurable through Spring, which makes it very easy to use.











From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com
] On Behalf Of billy_d_white
Sent: Thursday, July 13, 2006 6:20
PM
To: flexcoders@yahoogroups.com

Subject: [flexcoders] Re: Spring
Enable Flex











Use the FlexFactory. It allows you to integrate Flex
Data Services
with whatever framework you want. See this thread:

http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=583threadid=1169760enterthread=y#4190415

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

 There isn't much to do to get Flex to talk with Spring! 
 
 All you need to do is put a delegate class in the middle which is
nothing more than a simple POJOFlex calls Pojo, Pojo invokes
Spring Beans...
 
 
 -
 How low will we go? Check out Yahoo! Messenger's low PC-to-Phone
call rates.















__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] shadow lighting

2006-07-13 Thread hank williams



Thanks guys. Those are great examples. With filters you can *really* make apps look unflexlike -lol.The great power of flex is how easy it is to do this stuff. The one downfall for people that are not careful is that all of their apps will look like aero. Although I guess thats ok, Mac users dont have a problem with all their apps looking the same.
But anyway the chiseled text in a label I was just looking at how to do the other day and I hadnt gotten it yet so this is right on time.RegardsHankOn 7/13/06, 
Peter Baird [EMAIL PROTECTED] wrote:







Also, it appears you're trying to apply these styles to a canvas. Note that to do so, you'll also need to set the borderStyle of the canvas to solid (you can set the thickness to zero, if you don't actually want to see a border). If that's not enough for you, you can also use flash filters, examples of which can be found here:



http://weblogs.macromedia.com/mc/archives/2006/05/beyond_styling.cfm

-peter


On 7/12/06 6:08 PM, Jason Szeto [EMAIL PROTECTED] wrote:


 



Hank,

There are a few basic things you can do to style the drop shadows. Look at these styles:

dropShadowColor=0x00
dropShadowEnabled=false
shadowDirection=center
shadowDistance=2

Jason
 






From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
 On Behalf Of hank williams
Sent: Friday, June 30, 2006 1:26 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] shadow lighting
 

when applying shadowing to an object, if the lighting source is to the
top left of the object, then the shadow will be on the bottom and the
right. Typically there is also a white or light band across the top
and down the left side.

I am wondering how you do this in flex. I see it in the application
bar and so I am thinking that I should be able to style a canvas to do
it, but I cant seem to do it with the shadow related settings. I
believe I was able to do this kind of things with movie clips in
flash.

I guess a second question is whether it is possible to do any of those
cool flash 8 effects on containers/canvases in flex.

Hank











__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Unknown FDS error

2006-07-13 Thread hank williams



Hey Peter,Just checking, did you see my last message on this?It appears that if you try to send to big an object or the wrong type of object you will get this. I was capturing a user input and sending it in my remoting call.
so I was doing this:remoteobject.foo(someTextInput)when I should have been doingremoteobject.foo(someTextInput.text)This was reproducible.Also if you google the error that I got, you will see that in the google cache of the old labs website, the error is listed as part of FDS. There is no explanation (as there is for many of the other errors) but it is there. Its as if someone intended to document it but forgot. The error is *not* listed in the docs the final stuff and google turns up no such error on the final livedocs.
If you would like, I would be happy to try to turn on debugging and see what is going on in more detail, though I suspect if you try to do what I did you will get the same error.RegardsHank
On 7/13/06, Peter Farland [EMAIL PROTECTED] wrote:



















Hey Hank,



 Can you send me a test case, or can
you try turning on sufficient debugging to watch what is going on at the
endpoint?



 In services-config.xml, in the logging
section turn on "Debug" level logging, and then ensure the
Endpoint.* pattern is enabled. Restart the server and then try the sample
again.



 FWIW, what is confusing to me is that
2099 is not in the format / range of our server side errors. When I first read
your post I thought this might have been a client side error because it is in
the range of ActionScript error codes. Are you using IExternalizable by any
chance?



Pete











From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com
] On Behalf Of hank williams
Sent: Wednesday, July 12, 2006
2:03 PM
To: flexcoders@yahoogroups.com

Subject: Re: [flexcoders] Unknown
FDS error











For the record this error:

#2099: The loading object is not sufficiently loaded to provide this
information. 

Really means that you have passed a parameter that either flex or FDS doesnt
like. I got it when trying to pass a TextInput instead of a TextInput.text.

No problem with there being an error for this but it could be a bit more
descriptive. 

Regards
Hank



On 7/11/06, hank
williams [EMAIL PROTECTED]
wrote:



Ok, I have installed FDS final and the error is exactly the same. So
now it just appears that error 2099 is an undocumented error. It would be great
if I could at least get some detail on what exactly could cause this error. It
does have a number so it must be, at eleast internally, documented somewhere. 

Regards





Hank









On 7/11/06, hank
williams 
[EMAIL PROTECTED] wrote:







On 7/11/06, Peter
Farland 
[EMAIL PROTECTED] wrote:







Hank, this isn't much information to go on. What technology
are you connecting to with RemoteObject? Java, ColdFusion, etc? What sort of
data are you trying to send and/or return?













lol. Yeah, I know!

I just thought maybe someone would know what the error code actually meant. 

Since then I realized I am running the last beta of FDS and I am hoping that
will help. It appears this error is not in any current documentation but it was
in the labs documentation for FDS which makes me think maybe there is some
problem there. Even in the labs doc, the error was just listed with no
explanation. 

I am in the process of switching over to FDS Final, and I am wondering if I can
keep all of my XML configuration files or did the format change between FDS
beta and Final?

Regarding what I am running I am running java in Tomcat. Remoting has been
working fine, and I have 7 or 8 successful remoteObjects and calls. I am trying
to send two strings, and I am trying to get back one string. But it never even
gets to my java code. FDS seems to be failing as soon as this call comes in,
generating the aforementioned error. Today I added this latest call and it
gives me this error, but only for this call. Obviously there is something that
FDS is choking on but for the life of me I cant figure out what the difference
is between all the calls that work and this one that doesnt. 

Regards





Hank




























From: 
flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of hank williams
Sent: Tuesday, July 11, 2006 4:33
PM
To: flexcoders@yahoogroups.com

Subject: [flexcoders] Unknown FDS
error











I get the
below error when trying to make a remoteObject call. It comes up on the server
side in the console. Essentially flex is refusing to responding to the remote
query and this is the result.

#2099: The loading object is not sufficiently loaded to provide this
information. 

Any clues?

Hank


















































__._,_.___





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








   






  
  
SPONS

Re: [flexcoders] About Integrating Flex Data service with Flex Builder....

2006-07-12 Thread hank williams



Oh, I see. You havent done anything but run the FDS installer.Well, are you familiar with running webapps in a servlet container? If not then it will be very difficult to help you because FDS is based on the assumption that you know how to use a container or a J2EE server. If you dont, you need read up. You need to understand what a .war file is, etc. I believe FDS comes with a container from adobe called jrun so you will need to install that version if you dont have a container. I didnt install with that one so I am not sure of the process but the first thing you want to do is get the samples running. Once you start jrun, the samples should be at 
http://localhost:8080/samples I think. Then, once you get samples up and running I would start looking at everything to see how they do it and then start adding my own code to gain an understanding. To do remoting, you are going to need to modify the 
remote-config.xml file which is in the WEB-INF/flex directory to add your own mappings for talking to your java objects.But again the first task is getting samples running.RegardsHank
On 7/12/06, Mr.Unlimited [EMAIL PROTECTED] wrote:



Hi Hank  Yea mite be big. but m new t this buddy. maybe my installation s wrong or somethin.. i installed Builder and then DS...can u jus telme how to use DS in builder.  Thnx for ur response. m sry if my ques s wrong.. pl lemme know if my ques s wrong..
regards  Krishank williams [EMAIL PROTECTED]
 wrote:  That is a *big* request. I'm afraid your going to ask more specific questions before I think anyone can be helpful. What do you have running so far? Have you gotten fds
 up and running with the sample apps?Hank  On 7/10/06, Mr.Unlimited 
[EMAIL PROTECTED] wrote:Hi..  Im new to flex. could u ppl help me in integrating flex ds with the builder.??
  M using Flex 2 beta 3 and FDS2.. in a standalone environment..   all i need is to get data from oracle database trhru java objects   Please HelpThanks and regards..
  kris!!   Yahoo! Music Unlimited - Access over 1 million songs. 
Try it free.  

		Do you Yahoo!? Next-gen email? Have it all with the 
 all-new Yahoo! Mail Beta.





__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Unknown FDS error

2006-07-12 Thread hank williams



For the record this error:#2099: The loading object is not sufficiently loaded to provide this information.
Really means that you have passed a parameter that either flex or FDS doesnt like. I got it when trying to pass a TextInput instead of a TextInput.text.No problem with there being an error for this but it could be a bit more descriptive.
RegardsHankOn 7/11/06, hank williams [EMAIL PROTECTED] wrote:
Ok, I have installed FDS final and the error is exactly the same. So now it just appears that error 2099 is an undocumented error. It would be great if I could at least get some detail on what exactly could cause this error. It does have a number so it must be, at eleast internally, documented somewhere.
RegardsHankOn 7/11/06, hank williams 
[EMAIL PROTECTED] wrote:
On 7/11/06, Peter Farland 

[EMAIL PROTECTED] wrote:



















Hank, this isn't much information to
go on. What technology are you connecting to with RemoteObject? Java,
ColdFusion, etc? What sort of data are you trying to send and/or return?lol. Yeah, I know!I just thought maybe someone would know what the error code actually meant.
Since then I realized I am running the last beta of FDS and I am hoping that will help. It appears this error is not in any current documentation but it was in the labs documentation for FDS which makes me think maybe there is some problem there. Even in the labs doc, the error was just listed with no explanation.
I am in the process of switching over to FDS Final, and I am wondering if I can keep all of my XML configuration files or did the format change between FDS beta and Final?Regarding what I am running I am running java in Tomcat. Remoting has been working fine, and I have 7 or 8 successful remoteObjects and calls. I am trying to send two strings, and I am trying to get back one string. But it never even gets to my java code. FDS seems to be failing as soon as this call comes in, generating the aforementioned error. Today I added this latest call and it gives me this error, but only for this call. Obviously there is something that FDS is choking on but for the life of me I cant figure out what the difference is between all the calls that work and this one that doesnt.
RegardsHank






From: 


flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 


On Behalf Of hank williams
Sent: Tuesday, July 11, 2006 4:33
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Unknown FDS
error











I get the
below error when trying to make a remoteObject call. It comes up on the server
side in the console. Essentially flex is refusing to responding to the remote
query and this is the result.

#2099: The loading object is not sufficiently loaded to provide this
information. 

Any clues?

Hank




















__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Pagination feature in Flex 2

2006-07-11 Thread hank williams



Hows that for detail!On 7/11/06, Jeff Tapper [EMAIL PROTECTED] wrote:
That feature is built into FDSAt 07:41 AM 7/11/2006, tinywhistles wrote:HiDoes Flex 2 provide pagination support in the UI? For eg. there is a hugeamount of data coming from the server, and I need to display them in
chunks of ten at a time on the UI. Is there any out-of-the-box componentwhich we can use for this?Alternatively can anyone share how to do this? I need to paginate the dataand show them in the DataGrid control.
Thanks`RohanNo virus found in this incoming message.Checked by AVG Anti-Virus.Version: 7.1.394 / Virus Database: 268.9.10
/383 - Release Date: 7/7/2006 Yahoo! Groups Sponsor ~--Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM~---Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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/
No virus found in this outgoing message.Checked by AVG Anti-Virus.Version: 7.1.394 / Virus Database: 268.9.10/383 - Release Date: 7/7/2006

__._,_.___





--
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



  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] viewstack design pattern issue

2006-07-11 Thread hank williams



I have a viewstack (actually a tabnavigator) that has screens with data that comes from a server.I want to trigger the screen to go out and get new data only when: 1. the user enters the specific viewstack sub screen, and
 2. when the data for that screen is dirty, based on some bound data that has triggered a changeSo as I see it, the screen needs to keep track of when the bound field has changed which should cause a call to get fresh data. This means that the screen must keep track of whether it is dirty.
This seems like it must be a common scenario, and I am curious about how other people handle it. My first instinct was to create a base screen class from which all my screens could inherit. But I am curious whether cairngorm already handles this or whether this is even part of the scope of what it tries to cover. I am not using cairngorm right now, but may in the future. But understanding what is and isnt in its scope is important for me to start to understand.
So anyway, this is a 2 part question.1. how do people handle this situation2. does cairngorm have some pre-packaged solution to this issue.Hank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] viewstack design pattern issue

2006-07-11 Thread hank williams



hmm... not quite the question I was asking.I presume there would be a dirty flag. My question is about the screens in the viewstack. I am trying to come up with a clean repeatable model for how a screen knows it should recall the server to grab more data.
As an example, consider that all the screens have data that is dependent on a field called channel. When the user changes the channel, all the screens change, but I dont want them all to immediately run off and call the server when it might never be needed.
So I am thinking that each screen would have to have its own copy of the data or some last changed at marker so that an individual screen can know that oh the channel changed because the current channge is not what it was last time the user opened me. With this knowledge, the screen can trigger a call to update by refreshing data that the screen needs.
It just seems like this kind of thing screams for some kind or structured template/design pattern. But part of what I am seeing is that when you get into the mxml world it kinda encourages a sloppiness. You just stick a variable somewhere and throw a tag there. I am trying to figure out how to make the mxml for this clean templatable and readable, and while I can make the code work, the mxml piece is just ugly. It doesnt seem to lend itself to the kind of beautiful code I can do in AS2/3. Or perhaps I just dont really know what I am doing yet:)
Anyway, I am just trying to figure out how to do this relatively simple thing in an elegant way.RegardsHankOn 7/11/06, JesterXL 
[EMAIL PROTECTED] wrote:









We use a dirty flag. We set it to true 
whenever some data changes. This data change is detected by registering 
for control events that change data (focusOut for TextInput, selectedDate != 
null for DateChooser, etc.). These events change the data if applicable, 
and set the dirty flag.

Other components can bind to the dirty flag and 
take appropriate actions, whether via a getter / setter or the binding 
tag.

- Original Message - 
From: 
hank williams 
To: flexcoders@yahoogroups.com 
Sent: Tuesday, July 11, 2006 9:20 AM
Subject: [flexcoders] viewstack design pattern issue
I have a viewstack (actually a tabnavigator) that has screens 
with data that comes from a server.I want to trigger the screen to go 
out and get new data only when: 1. the user enters the specific 
viewstack sub screen, and  2. when the data for that screen is 
dirty, based on some bound data that has triggered a changeSo as I see 
it, the screen needs to keep track of when the bound field has changed which 
should cause a call to get fresh data. This means that the screen must keep 
track of whether it is dirty. This seems like it must be a common 
scenario, and I am curious about how other people handle it. My first instinct 
was to create a base screen class from which all my screens could inherit. But I 
am curious whether cairngorm already handles this or whether this is even part 
of the scope of what it tries to cover. I am not using cairngorm right now, but 
may in the future. But understanding what is and isnt in its scope is important 
for me to start to understand. So anyway, this is a 2 part 
question.1. how do people handle this situation2. does cairngorm 
have some pre-packaged solution to this issue.Hank 





__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] viewstack design pattern issue

2006-07-11 Thread hank williams




Hank: 
Are you opening the same data multiple times,andyou require that 
related screens are observed ? I.e. update one, the other updates kind of 
thing?

JasonNo, none of that. Actually just think of it like a television, where each of the screens is a different camera angle. So when you change the channel, the view in all of the screens is different. But I dont want to go get all that data unless the user actually goes to that screen. So each screen needs to know when the channel changed so it knows if the user comes to me I gotta refresh my data.
RegardsHank

__._,_.___





--
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] Unknown FDS error

2006-07-11 Thread hank williams



I get the below error when trying to make a remoteObject call. It comes up on the server side in the console. Essentially flex is refusing to responding to the remote query and this is the result.#2099: The loading object is not sufficiently loaded to provide this information.
Any clues?Hank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Unknown FDS error

2006-07-11 Thread hank williams



On 7/11/06, Peter Farland [EMAIL PROTECTED] wrote:



















Hank, this isn't much information to
go on. What technology are you connecting to with RemoteObject? Java,
ColdFusion, etc? What sort of data are you trying to send and/or return?lol. Yeah, I know!I just thought maybe someone would know what the error code actually meant.
Since then I realized I am running the last beta of FDS and I am hoping that will help. It appears this error is not in any current documentation but it was in the labs documentation for FDS which makes me think maybe there is some problem there. Even in the labs doc, the error was just listed with no explanation.
I am in the process of switching over to FDS Final, and I am wondering if I can keep all of my XML configuration files or did the format change between FDS beta and Final?Regarding what I am running I am running java in Tomcat. Remoting has been working fine, and I have 7 or 8 successful remoteObjects and calls. I am trying to send two strings, and I am trying to get back one string. But it never even gets to my java code. FDS seems to be failing as soon as this call comes in, generating the aforementioned error. Today I added this latest call and it gives me this error, but only for this call. Obviously there is something that FDS is choking on but for the life of me I cant figure out what the difference is between all the calls that work and this one that doesnt.
RegardsHank




From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of hank williams
Sent: Tuesday, July 11, 2006 4:33
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Unknown FDS
error











I get the
below error when trying to make a remoteObject call. It comes up on the server
side in the console. Essentially flex is refusing to responding to the remote
query and this is the result.

#2099: The loading object is not sufficiently loaded to provide this
information. 

Any clues?

Hank
















__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Unknown FDS error

2006-07-11 Thread hank williams



Ok, I have installed FDS final and the error is exactly the same. So now it just appears that error 2099 is an undocumented error. It would be great if I could at least get some detail on what exactly could cause this error. It does have a number so it must be, at eleast internally, documented somewhere.
RegardsHankOn 7/11/06, hank williams [EMAIL PROTECTED] wrote:
On 7/11/06, Peter Farland 
[EMAIL PROTECTED] wrote:



















Hank, this isn't much information to
go on. What technology are you connecting to with RemoteObject? Java,
ColdFusion, etc? What sort of data are you trying to send and/or return?lol. Yeah, I know!I just thought maybe someone would know what the error code actually meant.
Since then I realized I am running the last beta of FDS and I am hoping that will help. It appears this error is not in any current documentation but it was in the labs documentation for FDS which makes me think maybe there is some problem there. Even in the labs doc, the error was just listed with no explanation.
I am in the process of switching over to FDS Final, and I am wondering if I can keep all of my XML configuration files or did the format change between FDS beta and Final?Regarding what I am running I am running java in Tomcat. Remoting has been working fine, and I have 7 or 8 successful remoteObjects and calls. I am trying to send two strings, and I am trying to get back one string. But it never even gets to my java code. FDS seems to be failing as soon as this call comes in, generating the aforementioned error. Today I added this latest call and it gives me this error, but only for this call. Obviously there is something that FDS is choking on but for the life of me I cant figure out what the difference is between all the calls that work and this one that doesnt.
RegardsHank





From: 

flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 

On Behalf Of hank williams
Sent: Tuesday, July 11, 2006 4:33
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Unknown FDS
error











I get the
below error when trying to make a remoteObject call. It comes up on the server
side in the console. Essentially flex is refusing to responding to the remote
query and this is the result.

#2099: The loading object is not sufficiently loaded to provide this
information. 

Any clues?

Hank


















__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] About Integrating Flex Data service with Flex Builder....

2006-07-11 Thread hank williams



That is a *big* request. I'm afraid your going to ask more specific questions before I think anyone can be helpful. What do you have running so far? Have you gotten fds up and running with the sample apps?Hank
On 7/10/06, Mr.Unlimited [EMAIL PROTECTED] wrote:



Hi..  Im new to flex. could u ppl help me in integrating flex ds with the builder.??  M using Flex 2 beta 3 and FDS2.. in a standalone environment..   all i need is to get data from oracle database trhru java objects 
  Please HelpThanks and regards..  kris!!  
		Yahoo! Music Unlimited - Access over 1 million songs.
Try it free. 





__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Mac equivalent of ActiveX

2006-07-11 Thread hank williams



On 7/11/06, FineLine [EMAIL PROTECTED] wrote:
Thanks ryanm, I hadn't heard of this implementation before, probably becausenot much has been published about it (that I can find) since its release in1996. This doesn't fill me with confidence that it would be a workable
solution for embedding Flash content in native OSX apps.On a mac you wouldnt use activeX but the flash mac plugin. Quite a few companies do this in order to make what are called projectors, which are stand alone shells that let you create standalone apps that run via flash. ActiveX really *is* dead on the mac. The two primary browsers dont support it and IE hasnt been upgraded in years. An open source project that does this is called screenweaver. If you want to make your own, you might want to look at their code as a base. Otherwise I would suggest using a projector like screenweaver or one from mdm or northcode. The will allow you to integrate any native platform stuff you need including C or C++.
RegardsHankI guess this isn't really what Flex is made for anyway. It just seems like a
nice tool to develop visual components that can be used inside otherprograms. It works fine on Windows with an ActiveX host (in my case, OmnisStudio), but I can't see a way on Mac. Presumably, even if I did build an
ActiveX integration layer, I would still need to recompile the Flash PlayerActiveX control from the source on Mac anyway - not something we have accessto.Anyway, thanks for the idea, I learnt something new.
-Original Message-From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of ryanmSent: Wednesday, 12 July 2006 5:27 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Mac equivalent of ActiveX Open source != open specs.
You can get source on the web if you look for it. Isn't IE on the Mac dead these days anyway ?Not even close. Funny how the dev geeks always seem to think so (wishfulthinking?), but server stats say otherwise.
ryanm--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links Yahoo! Groups Sponsor ~--
Yahoo! Groups gets a make over. See the new email design.http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM~-
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 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] can you set a function to trigger when a variable changes?

2006-07-10 Thread hank williams



I have a variable, lets call it foo, that may change from time to time. When it changes I want certain of what one might call subscribing objects to be notified that the variable has changed. This gives these objects the ability to update themselves or take necessary actions.
I am thinking this could be tied into the binding mechanism since this is a subset of what binding does.Any insight greatly appreciated.Hank

__._,_.___





--
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



  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.



  






__,_._,___



Re: [flexcoders] can you set a function to trigger when a variable changes?

2006-07-10 Thread hank williams



My cup runeth over!On 7/10/06, JesterXL [EMAIL PROTECTED] wrote:









mx:Label text={foo} /

[Bindable]
public var foo:String = sup;

foo= cheese;

public function get moo():String
{
 return __moo;
}

public function set 
moo(val:String):void
{
 __moo = val;
 runUpdateFunc();
}

mx:Binding source={foo} destination=moo 
/

A few ways.

- Original Message - 
From: 
hank williams 
To: flexcoders@yahoogroups.com 
Sent: Monday, July 10, 2006 9:49 PM
Subject: [flexcoders] can you set a function to trigger when a 
variable changes?
I have a variable, lets call it foo, that may change from time to 
time. When it changes I want certain of what one might call subscribing objects 
to be notified that the variable has changed. This gives these objects the 
ability to update themselves or take necessary actions. I am thinking 
this could be tied into the binding mechanism since this is a subset of what 
binding does.Any insight greatly appreciated.Hank 





__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: can you set a function to trigger when a variable changes?

2006-07-10 Thread hank williams



Wow, that Observe class is amazingly simple. I had found the changeWatcher class but was thinking it was kinda complex for what I wanted. Then you send me this. Outstanding!Hank
On 7/10/06, Tim Hoff [EMAIL PROTECTED] wrote:



Hi Hank,
You can use the mx.binding.utils.ChangeWatcher class or Paul William's Observe Class to listen for a change.
http://weblogs.macromedia.com/paulw/archives/2006/05/the_worlds_smal.cfm

-TH--- In flexcoders@yahoogroups.com
, hank williams [EMAIL PROTECTED] wrote: I have a variable, lets call it foo, that may change from time to time. When it changes I want certain of what one might call subscribing objects to be
 notified that the variable has changed. This gives these objects the ability to update themselves or take necessary actions.  I am thinking this could be tied into the binding mechanism since this is a
 subset of what binding does.  Any insight greatly appreciated.  Hank






__._,_.___





--
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



  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.



  






__,_._,___



Re: [flexcoders] Re: cant set alpha for scrollbar

2006-07-07 Thread hank williams



turns out this was a bug in beta3. I just switched over and it works.On 7/7/06, Jean-Luc ESSER [EMAIL PROTECTED]
 wrote:






Didn't try it, but i think you can skin your scroll 
bar...
Designing a translucid scroll bar in flash should 
do the trick.

I'll be interested to see if you can get it to 
work.

Best,
JL


  - Original Message - 
  
From: 
  hank williams 
  
  To: 
flexcoders@yahoogroups.com 
  Sent: Thursday, July 06, 2006 7:03 
  PM
  Subject: [flexcoders] Re: cant set alpha 
  for scrollbar
  
  
  Ok just thought I would try again here since this message has probably 
  scrolled off most peoples screensI am trying to dim a scrollbar by 
  setting its alpha value.I have tried to change every field that has 
  the work alpha in it and nothing seems to work. I have even put a scrollbar 
  inside a canvas and tried to set the alpha of the canvas. It cant be that 
  scrollbars cant be alpha'd can it? Tell me it aint so. 
  On 7/6/06, hank 
  williams [EMAIL PROTECTED] 
  wrote:
  Is it possible to set 
the alpha for a scrollbar? Setting its alpha seems to have no 
effect.
Hank
  





__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] FDS question

2006-07-07 Thread hank williams



Currently our thinking is to connect to the data through web services sending XML data to
a JSO file that then will communicate with a JAVA based API back to the MySQL backend.What, if anythign would FDS bring to the table?Still not sure how it is better than XMLbased solution.
It depends on what you are trying to do. For basic remoting (essentially RPC) it is much easier than sending XML data because you can send real objects back and forth and it automatically converts. Its almost like making local calls except for the results are asynchronous (which has its good and bad points). But if you already have a solution in place there is no reason to upset the apple cart.
The area where there is at least theoretical benefit is in stuff that uses the messaging platform. There are two general areas that messaging is used. The first is to support the ability to maintain an up to date version of data between multiple clients. So if you have a database and one client changes some data then that data would change on the screens of other users who were looking at that data.
The second area is using messaging in its raw form. By this I mean sending data or messages between connected clients. Imagine, for example a chat server. Not that this is the best example, but just so you get the idea. The issue here, for those of us familar with flash media server and other socket server technologies, is whether any of us would really use FDS for that purpose. It seems to me, and others who I have been discussing this, that FDS may be overkill and there may be more appropriate (read simpler) technologies like FMS.
I think it will take some time to really understand where FDS fits in the application development world beyond remoting, for which it is very convenient. The issue though with using it for remoting is if you need to scale it gets very expensive. Before FDS, the remoting solutions were either free (open source) or under $1000 per server. FDS is 20k per server.
Also a concern with FDS is the pricing structure.will each FDS file be considered a
different app, therefore each one require a license ($6k or $20k)?If each app wasassigned only one processor on the VM based server would it be able to use FDS express??If you are using the same data model, I am sure that you are fine. I cant imagine (tho perhaps we should wait to hear this from adobe) that they would thing that different connected apps all working off the same data model would be different applications.
I am just not seeing how FDS figures into the equasion.Is it faster? 
It is faster than XML because it is binary.if so how?Does itsave coding time? 
Yes if so how? By making access to java from flash feel like making local calls. It gives you freedom to just need to call a function and to be able to gain access to it woithout really thinking about it.
Does it eliminate need for a java API? if so how?Dont quite understand this one. The idea with remoting is that you can call any of your java functions from flash.
RegardsHank

__._,_.___





--
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] cant set alpha for scrollbar

2006-07-06 Thread hank williams



Is it possible to set the alpha for a scrollbar? Setting its alpha seems to have no effect.Hank

__._,_.___





--
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



  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] me too event handling

2006-07-06 Thread hank williams



I want to handle an event in a datagrid, specifically a rollover event, but I do not want to stop the internal rollover event handling from taking place. Right now what happens is that because I am handling the rollover event, the datagrid is not highlighting the item that the cursor is over. How do I do me too event handling.
Hank

__._,_.___





--
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] Re: me too event handling

2006-07-06 Thread hank williams



oops. Ignore this one.On 7/6/06, hank williams [EMAIL PROTECTED] wrote:
I want to handle an event in a datagrid, specifically a rollover event, but I do not want to stop the internal rollover event handling from taking place. Right now what happens is that because I am handling the rollover event, the datagrid is not highlighting the item that the cursor is over. How do I do me too event handling.
Hank



__._,_.___





--
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



  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.



  






__,_._,___



Re: [flexcoders] file uploads

2006-07-06 Thread hank williams



Hard to respond without seeing the code (a link or a paste of the text would be good). But I suspect the code presumes event handlers that are not implemented in the snippet you are using. fileRef needs at least one event handler to handle what the user does when he selects an item for upload, and lots of other stuff.
You need some code that looks like this: p_fileReference.addEventListener(Event.CANCEL, onCancel); p_fileReference.addEventListener(Event.COMPLETE, onComplete); p_fileReference.addEventListener(
IOErrorEvent.IO_ERROR, onIOError); p_fileReference.addEventListener(Event.OPEN, onOpen); p_fileReference.addEventListener(ProgressEvent.PROGRESS, onProgress);// p_fileReference.addEventListener(
SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler); p_fileReference.addEventListener(Event.SELECT, onSelect);This code should be called when you instantiate the fileRefrence.the on parameters above are references to functions that handle events. Their declarations look something like this:
 public function onSelect(p_event:Event) :void { public function onCancel(p_event:Event) :void { public function onOpen(p_event:Event) :void { public function onComplete (p_event:Event) :void {
 public function onProgress (p_event:ProgressEvent):void{ public function onIOError(p_event:IOErrorEvent) :void {Hope this helps.RegardsHankOn 7/6/06, 
Clint Tredway [EMAIL PROTECTED] wrote:



code from the docs. I am just trying to get a file upload working so I can make sure I understand it correctly.On 7/5/06, 
Carson Hager 
[EMAIL PROTECTED] wrote:












  






What code are you referring to?



Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Clint 
TredwaySent: Tuesday, July 04, 2006 11:32 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] file 
uploads


I am using the code from the docs and Flex Builder is telling this 1120: 
Access of undefined property fileRef. and that the selectHandler and 
completeHandler are undefined properties as well. I am declaring the var 
fileRef, so i dont get why its doing this... very frustrating... -- diabetic? http://www.diabetesforums.com
Bill 
Cosby - A word to the wise ain't necessary - it's the stupid ones that need the 
advice. 

  













-- diabetic? http://www.diabetesforums.com
Bill Cosby - A word to the wise ain't necessary - it's the stupid ones that need the advice.






__._,_.___





--
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] why does rowCount in DataGrid not match number of visible lines in grid

2006-07-06 Thread hank williams



I am trying to discover the number of lines visible in a DataGrid. The actual number is 5.75, meaning that the last row is 3/4 visible. The problem is that the rowCount property is 7. I would think that the answer would be either 5 or 6. but not 7. So I am wondering, how is this calculated? Am I interpeting this wrong?
Hank

__._,_.___





--
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



  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] Re: why does rowCount in DataGrid not match number of visible lines in grid

2006-07-06 Thread hank williams



The answer appear to be that rowCount includes the header. This seems weird to me, but thats the way it is.HankOn 7/6/06, hank williams 
[EMAIL PROTECTED] wrote:I am trying to discover the number of lines visible in a DataGrid. The actual number is 
5.75, meaning that the last row is 3/4 visible. The problem is that the rowCount property is 7. I would think that the answer would be either 5 or 6. but not 7. So I am wondering, how is this calculated? Am I interpeting this wrong?
Hank



__._,_.___





--
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] How to properly subclass a component using mxml

2006-07-06 Thread hank williams



I want to create a subclass of DataGrid. So far what I have done is to create a new MXML component that is based on DataGrid.The problem is that if I try to use the new component as if it was a dataGrid, certain things dont work. For example:
myComp:BetterDataGrid mx:columns   mx:DataGridColumn headerText=Song Name dataField=label/   mx:DataGridColumn headerText=Artist dataField=label/
 /mx:columns/myComp:BetterDataGridin the above example, it doesnt like me using the columns construct to define the columns. In order to define columns in this way I need to put then in the actual BetterDataGrid component as opposed to in this instance. This makes it doggone hard to use BetterDataGrid as a generic better dataGrid since I cannot define its behavior on an instance by instance basis.
I am sure what I am doing wrong here is simple, but I dont know what.Any insight appreciated.Hank

__._,_.___





--
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



  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.



  






__,_._,___



Re: [flexcoders] How to properly subclass a component using mxml

2006-07-06 Thread hank williams



Nope there are no children.Also, the specific error message is could not resolve mx:columns to a component implementation.It provides the same error message when trying to add a dataprovider too.
HankOn 7/6/06, Tobias Patton [EMAIL PROTECTED] wrote:



















This is just a shot in the dark:



Does your subclass of DataGrid have any
children defined? I've never come across this myself, but I've read
in various places that if a component has children in its definition, it's
not possible to add children when instantiating it.



Tobias.











From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of hank williams
Sent: Thursday, July 06, 2006 7:50
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How to
properly subclass a component using mxml











I want to
create a subclass of DataGrid. So far what I have done is to create a new MXML
component that is based on DataGrid.

The problem is that if I try to use the new component as if it was a dataGrid,
certain things dont work. For example: 

myComp:BetterDataGrid
 mx:columns
   mx:DataGridColumn
headerText=Song Name dataField=label/
   mx:DataGridColumn
headerText=Artist dataField=label/ 
 /mx:columns
/myComp:BetterDataGrid

in the above example, it doesnt like me using the columns construct to define
the columns. In order to define columns in this way I need to put then in the
actual BetterDataGrid component as opposed to in this instance. This makes it
doggone hard to use BetterDataGrid as a generic better dataGrid
since I cannot define its behavior on an instance by instance basis. 

I am sure what I am doing wrong here is simple, but I dont know what.

Any insight appreciated.

Hank














__._,_.___





--
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



  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] Re: How to properly subclass a component using mxml

2006-07-06 Thread hank williams



One guess I have is that there are issues regarding using mxml to populate an *inherited* field. In this case columns is not a component, but a field which contains an Array of of 
DataGridColumn 
objects. But the error that flex gives indicates that it thinks columns is supposed to be a compoent because the error message is could not resolve mx:columns to a component implementation. 
Is it just the fact that columns doesnt have a capital letter that should tell the compiler that this is a field and not a component? Should it just be looking first for fields first and then components?This seems like a relatively basic issue. Someone out there must know!?
HankOn 7/6/06, hank williams [EMAIL PROTECTED] wrote:
I want to create a subclass of DataGrid. So far what I have done is to create a new MXML component that is based on DataGrid.The problem is that if I try to use the new component as if it was a dataGrid, certain things dont work. For example:
myComp:BetterDataGrid mx:columns   mx:DataGridColumn headerText=Song Name dataField=label/   mx:DataGridColumn headerText=Artist dataField=label/
 /mx:columns/myComp:BetterDataGridin the above example, it doesnt like me using the columns construct to define the columns. In order to define columns in this way I need to put then in the actual BetterDataGrid component as opposed to in this instance. This makes it doggone hard to use BetterDataGrid as a generic better dataGrid since I cannot define its behavior on an instance by instance basis.
I am sure what I am doing wrong here is simple, but I dont know what.Any insight appreciated.Hank



__._,_.___





--
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] Re: cant set alpha for scrollbar

2006-07-06 Thread hank williams



Ok just thought I would try again here since this message has probably scrolled off most peoples screensI am trying to dim a scrollbar by setting its alpha value.I have tried to change every field that has the work alpha in it and nothing seems to work. I have even put a scrollbar inside a canvas and tried to set the alpha of the canvas. It cant be that scrollbars cant be alpha'd can it? Tell me it aint so.
On 7/6/06, hank williams [EMAIL PROTECTED] wrote:
Is it possible to set the alpha for a scrollbar? Setting its alpha seems to have no effect.Hank



__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] How to properly subclass a component using mxml

2006-07-06 Thread hank williams



Hi jeremy,Thank you very much. That was not it but it was close. The answer was not that mx needed to be deleted but that it needed to match the parent namespace. In other words it needed to be myComp.That is one I dont think I would have ever figured out!
RegardsHankOn 7/6/06, Jeremy Lu [EMAIL PROTECTED] wrote:



Since you are extending DataGrid via a mxml way, you don't have to use mx namespace. Try removing the red text and see if it works, this is how I create extended datagrid several months ago.



myComp:BetterDataGrid mx:columns   mx:DataGridColumn headerText=Song Name dataField=label/
   mx:DataGridColumn headerText=Artist dataField=label/
 /mx:columns/myComp:BetterDataGrid
Jeremy.







__._,_.___





--
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] conversion to flex2 final *hell*

2006-07-06 Thread hank williams



So i have not wanted to do it. because I just knew it wouldnt work right. And I wanted to remain productive. But finally I had to give in and install flex2 final because I have a problem that is almost certainly a flex2 beta3 problem.
So The first thing I did was uninstall beta 3. Then I uninstalled flash player 9 beta.Then I ran the new installer. Everything goes smoothly.I try to run my app. There is a problem. After 30 minutes or so trying to figure out what is going wrong I look at the error output a little more closely.
I am failing in DataGrid code. But what DataGrid code? Beta3. The path is to beta3 code So I go to my eclipse folder and I realize that I still have the beta3 SDK on my computer and Flex is obviously confused. And why not. I'm confused too. I guess the uninstaller only partially uninstalls. So now I am in some halfway nether world with absolutely no clue as to what to do. I guess I will just try to manually delete everything on my computer that has anything to do with flex. But I doubt that will work because windows installs always leave little uhh... droppings throughout your computer. In your registry and elsewhere. Usually the uninstaller is the only think that has a shot of getting you clean. But that didnt work. So now I am stuck.
I guess I'll just start hacking and pray.How hard is it to make an uninstaller do the right thing?Damn!Hank

__._,_.___





--
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] A datagrid with a separate scrollbar

2006-07-05 Thread hank williams



I want to implement a datagrid, but not use the normal scrollbar, or not to use it where it is currently placed. Basically I want to be able to scroll, but have the datagrid look as if the scrollPolicy was no scroll bars. I want to put a bar in an entirely different location. The scrollbar stuff seems to be fairly deeply baked into the datagrid or the scrollControlBase actually, and it is not obvious to me how to work with this any other way than the way it was designed. Does anyone have any thoughts on how to do this?
Hank 

__._,_.___





--
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] Any way to tell a hbox to be only as wide as is needed for contents

2006-07-05 Thread hank williams



I have a variety of situations where I want a box to be just big enough to hold its contents, and to just resize other stuff to accomodate. One of the most important reasons for this is localization. I want to support lots of languages and I dont want to have to hard code widths to get things to look the way I want. This is also true for datagrid, where I would like certain columns to be exactly what they need to be to accomodate the headertext length and other to just grow or shrink to use the remaining available space.
Hank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread hank williams



Well, its almost that easy.For flex 2 at least, you need to also install the JOTM for tomcat to work.Below is a description of how to do it that is better than the one in the manual. 
Hank1. un gzip the file http://debian-sf.objectweb.org/projects/
jotm
2. go to the lib directory in the resulting uncompressed folder3. place all the files in this folder in the $CATALINA_HOME/shared/lib directory except: a. log4j.jar b. commons-cli.jar c. jotm_iiop_stubs.jar
 NOTE: $CATALINA_HOME is just your tomcat folder.4. Create a new file called context.xml in :$CATALINA_HOME/webapps/your app name, in this case samples/META-INF5. Place the following in the file:
 Context path=/samples docBase=samples debug=0 reloadable=true crossContext=true !-- Description of the resource UserTransaction --
Resource name=UserTransaction auth=Container type=javax.transaction.UserTransaction /ResourceParams name=UserTransactionparameter
namefactory/namevalueorg.objectweb.jotm.UserTransactionFactory/value/parameterparameter name 
jotm.timeout/name
 value60/value /parameter/ResourceParams/ContextNOTE: In the first line above, the word samples listed twice, should
be whatever thename of your webapp is. Using samples allows you to
run the samples application that comes with FDS.or if you have Tomcat 5.5 or greater you may just place the following in the file:Context reloadable=true
 Transaction factory=
org.objectweb.jotm.UserTransactionFactory jotm.timeout=60 //Context
On 7/5/06, Carson Hager [EMAIL PROTECTED] wrote:







Tomcat 5.5 and Flex 1.5 are a great combination. We use 
Tomcat on nearly all of our Flex 1.5 apps. Just copy the flex.war to 
webapps and Tomcat will automatically deploy the Flex web 
application.


Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of a aSent: 
Wednesday, July 05, 2006 12:50 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Tomcat and jdk 
version for Flex


Hi all! I have just a simple question for starting develop Flex application 
with java.Someone are using Flex with java 1.5 and tomcat 5.5? Can 
this be a good configuration for application developing or maybe it's better 
using JRun with jdk1.4?I hope that you understand my bad english 
:PThanks for the answerbyeRex
Chiacchiera con i tuoi amici in tempo reale! 
http://it.yahoo.com/mail_it/foot/*http://it.messenger.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.



  






__,_._,___



Re: [flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread hank williams



I think you misread him. He did not mention flex 1.5 he mentioned java 1.5.RegardsHankOn 7/5/06, Carson Hager 
[EMAIL PROTECTED] wrote:






Right but he's not asking about Flex 2. That step is not a 
part of a Flex 1.5 installation.


Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank 
williamsSent: Wednesday, July 05, 2006 10:12 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Tomcat and jdk 
version for Flex


Well, its almost that easy.For flex 2 at least, you need to also 
install the JOTM for tomcat to work.Below is a description of how to do 
it that is better than the one in the manual. 
Hank1. un gzip the file http://debian-sf.objectweb.org/projects/
 jotm 2. go to the lib directory in the resulting 
uncompressed folder3. place all the files in this folder in the 
$CATALINA_HOME/shared/lib directory except: a. 
log4j.jar b. commons-cli.jar c. 
jotm_iiop_stubs.jar  NOTE: $CATALINA_HOME is just your tomcat 
folder.
4. Create a new file called context.xml in 
:$CATALINA_HOME/webapps/your app name, in this case 
samples/META-INF5. Place the following in the file: 
Context path=/samples docBase=samples debug=0 
reloadable=true crossContext=true!-- Description 
of the resource UserTransaction -- Resource 
name=UserTransaction auth=Container type=javax.transaction.UserTransaction 
/ResourceParams 
name=UserTransactionparameter 
namefactory/namevalueorg.objectweb.jotm.UserTransactionFactory/value/parameterparameter 
name jotm.timeout/name 
value60/value 
/parameter/ResourceParams/ContextNOTE: 
In the first line above, the word samples listed twice, should be whatever 
thename of your webapp is. Using samples allows you to run the 
samples application that comes with FDS.
or if you have Tomcat 5.5 or greater you may just place the following in 
the file:Context reloadable=true 
 Transaction factory= org.objectweb.jotm.UserTransactionFactory jotm.timeout=60 
//Context
On 7/5/06, Carson 
Hager [EMAIL PROTECTED] 
wrote:

  
  
  Tomcat 5.5 
  and Flex 1.5 are a great combination. We use Tomcat on nearly all of our Flex 
  1.5 apps. Just copy the flex.war to webapps and Tomcat will 
  automatically deploy the Flex web application.
  
  
  Carson
  
  Carson 
  HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
  866-CYNERGYMobile: 1.703.489.6466
  
  
  
  From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of a 
  aSent: Wednesday, July 05, 2006 12:50 AMTo: flexcoders@yahoogroups.com
Subject: [flexcoders] 
  Tomcat and jdk version for Flex
  
  
  
  Hi all! I have just a simple question for starting develop Flex application 
  with java.Someone are using Flex with java 1.5 and tomcat 5.5? Can 
  this be a good configuration for application developing or maybe it's better 
  using JRun with jdk1.4?I hope that you understand my bad english 
  :PThanks for the answerbyeRex
  Chiacchiera con i tuoi amici in tempo reale! http://it.yahoo.com/mail_it/foot/*http://it.messenger.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.



  






__,_._,___



Re: [flexcoders] Any way to tell a hbox to be only as wide as is needed for contents

2006-07-05 Thread hank williams



Thanks steve.That works great for components, but doesnt seem to work for datagrid columns. In that situation when I set the column width to nothing the column got bigger than when it was set manually. Ideally I would like to be able to make the column the width of the header text for the column.
HankOn 7/5/06, Steve Webster [EMAIL PROTECTED] wrote:



Hank,I have a variety of situations where I want a box to be just big enough to hold its contents, and to just resize other stuff to accomodate. One of the most important reasons for this is localization. I want to support lots of languages and I dont want to have to hard code widths to get things to look the way I want. This is also true for datagrid, where I would like certain columns to be exactly what they need to be to accomodate the headertext length and other to just grow or shrink to use the remaining available space.
Set width to NaN (if using ActionScript) or remove the width attribute (if in MXML view).Cheers,Steve-- Steve Webster

http://dynamicflash.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.



  






__,_._,___



Re: [flexcoders] embeded FlashType fonts look bad

2006-07-05 Thread hank williams



Joan,Did you look at the jpeg I posted?Is this what should be expected in terms of the quality of the type or is there a bug that explains this?HankOn 7/5/06, 
Joan Tan [EMAIL PROTECTED] wrote:



















Stacy,



What do you think the default sharpness
should be?



Joan











From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Stacy Young
Sent: Tuesday, July 04, 2006 10:43
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] embeded
FlashType fonts look bad













They are offset a few pixels but I also found the default sharpness
level was way too low.



-Stace











From: 
flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Vinny Timmermans
Sent: Tuesday, July 04, 2006 1:14
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] embeded
FlashType fonts look bad











BTW. They should not look muddy, but Flex moves them a
few pixels.?



Vinny









From: 
flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of hank williams
Sent: dinsdag 4 juli 2006 18:58
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] embeded
FlashType fonts look bad



Oh,
thanks much Vinny. now I wont bang my head against the wall!

Hank



On 7/4/06, Vinny Timmermans
 [EMAIL PROTECTED]
wrote: 






Hank,





This is a known issue. A number of people
have brought these issues with FlashTypeto the attention of the Flex
team. I assume/hope it gets fixed when Flex 2.0.1 arrives.





Vinny












From: flexcoders@yahoogroups.com

[mailto:flexcoders@yahoogroups.com]
On Behalf Of hank williams
Sent: dinsdag 4 juli 2006 17:24
To: flexcoders@yahoogroups.com
Subject: [flexcoders] embeded
FlashType fonts look bad







I am
trying to use flashtype fonts, which involves embedding the font in a swf and
then importing the font from a swf into flex. The problem is that flex seems to
be rendering these fonts much less well than flash does.

As a test, I have text in the swf that I am embedding. The text looks fine when
displayed in this swf. When I import the font and display it in my app, the
font looks really muddy. It looks as if it is not using all that cool font
rendering stuff that is in flash 8. The edges are extremely soft. 

I am wondering if anyone has had any experience in getting crisp embedded
fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and
fontSharpness with the idea that adjusting these might fix the problem, thought
nothing has had any effect. 

Hank




















 
  

  AVIS IMPORTANT
  
  

  WARNING
  
 
 
  
  Ce message �lectronique et ses pi�ces jointes
  peuvent contenir des renseignements confidentiels, exclusifs ou l�galement
  privil�gi�s destin�s au seul usage du destinataire vis�. L'exp�diteur
  original ne renonce � aucun privil�ge ou � aucun autre droit si le pr�sent
  message a �t� transmis involontairement ou s'il est retransmis sans son
  autorisation. Si vous n'�tes pas le destinataire vis� du pr�sent message ou
  si vous l'avez re�u par erreur, veuillez cesser imm�diatement de le lire et
  le supprimer, ainsi que toutes ses pi�ces jointes, de votre syst�me. La
  lecture, la distribution, la copie ou tout autre usage du pr�sent message ou
  de ses pi�ces jointes par des personnes autres que le destinataire vis� ne
  sont pas autoris�s et pourraient �tre ill�gaux. Si vous avez re�u ce courrier
  �lectronique par erreur, veuillez en aviser l'exp�diteur.
  
  
  This electronic message and its attachments
  may contain confidential, proprietary or legally privileged information,
  which is solely for the use of the intended recipient. No privilege or other
  rights are waived by any unintended transmission or unauthorized
  retransmission of this message. If you are not the intended recipient of this
  message, or if you have received it in error, you should immediately stop
  reading this message and delete it and all attachments from your system. The
  reading, distribution, copying or other use of this message or its
  attachments by unintended recipients is unauthorized and may be unlawful. If
  you have received this e-mail in error, please notify the sender.
  
 















__._,_.___





--
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 

Re: [flexcoders] embeded FlashType fonts look bad

2006-07-05 Thread hank williams



Thanks. I will try that. I had intended to lighten the text anyway. Lighter text always looks better.HankOn 7/6/06, Brendan Meutzner 
[EMAIL PROTECTED] wrote:


Although it may not match your intended page styles, I've found that if you lighten the font color a bit (say #66 instead of the default black) it does wonders for the embedded font display. Makes them look a lot cleaner in my opinion.
Just a suggestion for others to try...On 7/5/06, Joan Tan 
[EMAIL PROTECTED] wrote:













  













No, this doesn't look expected. Have you
tried changing the fontSharpness style? 



By the way, what font are you using and
what is the size of the font. I'll try to simulate some similar behavior here.
Or, just send me a testfile and if it's a bug , I can log it.



Joan 











From: 

flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 

On Behalf Of hank williams
Sent: Wednesday, July 05, 2006
5:15 PM
To: flexcoders@yahoogroups.com


Subject: Re: [flexcoders] embeded
FlashType fonts look bad











Joan,

Did you look at the jpeg I posted?

Is this what should be expected in terms of the quality of the type or is there
a bug that explains this?

Hank



On 7/5/06, Joan Tan
[EMAIL PROTECTED] wrote:







Stacy,



What do you think the default sharpness should be?



Joan











From: 

flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Stacy Young
Sent: Tuesday, July 04, 2006 10:43
AM






To: flexcoders@yahoogroups.com
Subject: RE:
[flexcoders] embeded FlashType fonts look bad













They are offset a few pixels but I also found the default
sharpness level was way too low.



-Stace











From: 

flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Vinny Timmermans
Sent: Tuesday, July 04, 2006 1:14
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] embeded
FlashType fonts look bad











BTW. They should not look muddy, but Flex moves
them a few pixels.?



Vinny









From: 

flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of hank williams
Sent: dinsdag 4 juli 2006 18:58
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] embeded
FlashType fonts look bad



Oh,
thanks much Vinny. now I wont bang my head against the wall!

Hank



On
7/4/06, Vinny Timmermans 
[EMAIL PROTECTED] wrote: 





Hank,



This is a known issue. A number of people have brought these
issues with FlashTypeto the attention of the Flex team. I assume/hope it
gets fixed when Flex 2.0.1 arrives.



Vinny









From: 

flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of hank williams
Sent: dinsdag 4 juli 2006 17:24
To: flexcoders@yahoogroups.com
Subject: [flexcoders] embeded
FlashType fonts look bad







I am
trying to use flashtype fonts, which involves embedding the font in a swf and
then importing the font from a swf into flex. The problem is that flex seems to
be rendering these fonts much less well than flash does.

As a test, I have text in the swf that I am embedding. The text looks fine when
displayed in this swf. When I import the font and display it in my app, the
font looks really muddy. It looks as if it is not using all that cool font
rendering stuff that is in flash 8. The edges are extremely soft. 

I am wondering if anyone has had any experience in getting crisp embedded
fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and
fontSharpness with the idea that adjusting these might fix the problem, thought
nothing has had any effect. 

Hank


















 
  


  AVIS IMPORTANT
  
  


  WARNING
  
 
 
  
  Ce message 

�lectronique
  et ses pi�

ces jointes peuvent contenir des
  renseignements confidentiels, exclusifs ou l�

galement privil

�gi

�s destin

�s au seul usage du
  destinataire vis�

. L'exp�

diteur original ne renonce 

� aucun privil

�ge ou 

� aucun autre droit si
  le pr�

sent message a 

�t

� transmis involontairement ou s'il est retransmis sans son

 autorisation. Si vous n'�

tes pas le
  destinataire vis�

 du pr�

sent message ou si vous l'avez re

�u par erreur, veuillez
  cesser imm

�diatement de le lire et

 le
  supprimer, ainsi que toutes ses pi�

ces jointes, de votre
  syst�

me. La lecture, la
  distribution, la copie ou tout autre usage du pr�

sent
  message ou de ses pi

�ces jointes par des personnes autres que le destinataire vis

� ne

 sont pas autoris�

s et pourraient �

tre ill�

gaux. Si vous avez re�

u ce courrier 

�lectronique par erreur, veuillez en aviser l'exp

�

diteur.
  
  
  This electronic message and its attachments
  may contain confidential, proprietary or legally privileged information,
  which is solely for the use of the intended recipient. No privilege or other
  rights are waived by any unintended transmission or unauthorized
  retransmission of this message. If you are not the intended recipient of this
  message, or if you have received

Re: [flexcoders] Different borderstyles for HBox

2006-07-04 Thread hank williams



Containers can definitely be styled, but I am not sure that you can assign a different color to different sides. That might require skinning. You could use scale9 to do it. I know its not as easy as styles, but I *think* that may be your only option. You can turn off certain sides and turn on other sides, so perhaps you could do something with layering, but thats all I can think of.
HankOn 7/4/06, Carlos Rovira [EMAIL PROTECTED] wrote:



AFAIK, containers for laying out other content can't be styledOn 7/4/06, Jonas Windey 
[EMAIL PROTECTED] wrote:













  











Hi, is it possible to give a HBox different border colors
for each side? Like border-right: solid 1px #ccc in css?



Thanks!







  













-- ::| Carlos Rovira::| 
http://www.carlosrovira.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.



  






__,_._,___



Re: [flexcoders] Re: Different borderstyles for HBox

2006-07-04 Thread hank williams



No, there is nothing wrong with using boxes to place borders around components. The issue is that the layering technique where you use four containers to show four different color sides might be a bit wasteful of CPU depending on how much you do it. But it is pretty standard to use boxes with a border color and style.
HankOn 7/4/06, Jonas Windey [EMAIL PROTECTED]
 wrote:


















Thanks a lot, that did the trick. So
HBoxes shouldn't be used to place a border around components? 











From:
flexcoders@yahoogroups.com [mailto:

flexcoders@yahoogroups.com] On Behalf Of n51red
Sent: dinsdag 4 juli 2006 14:59
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
Different borderstyles for HBox












 I remember read a few days ago that these 
 invisible components can't be styled.

I seems you've been mislead Carlos. Components like HBox and VBox are 
invisible by default, but styles like backgroundColor do work.

Hank's suggestion about using nesting works well (see example), but 
has implications for performance if it is used on a large number of 
components.

Example code:

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
layout=vertical horizontalAlign=center
verticalAlign=middle
mx:Style
Application{
backgroundColor:white;
color:black;
}
..boxStyle1{
borderStyle:solid;
borderThickness:5;
borderColor:blue;
borderSides:bottom, left;
}
..boxStyle2{
borderStyle:solid;
borderThickness:10;
borderColor:green;
borderSides:top, right;
}
/mx:Style
mx:VBox id=box
styleName=boxStyle1
height=50 width=150
mx:VBox height=100% width=100%
styleName=boxStyle2/
/mx:VBox
/mx:Application

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

 Hank,
 
 In general visual containers can be styled, but we are talking 
about Layout
 Containers (HBox, VBox,...), and I remember read a few days ago 
that these
 invisible components can't be styled.
 
 On 7/4/06, hank williams [EMAIL PROTECTED] wrote:
 
  Containers can definitely be styled, but I am not sure that you 
can
  assign a different color to different sides. That might require 
skinning.
  You could use scale9 to do it. I know its not as easy as styles, 
but I
  *think* that may be your only option. You can turn off certain 
sides and
  turn on other sides, so perhaps you could do something with 
layering, but
  thats all I can think of.
 
  Hank
 
  On 7/4/06, Carlos Rovira [EMAIL PROTECTED] wrote:
 
   AFAIK, containers for laying out other content can't be styled
  
  
  
  
   On 7/4/06, Jonas Windey  [EMAIL PROTECTED] wrote:
   
Hi, is it possible to give a HBox different border colors 
for each
side? Like border-right: solid 1px #ccc in css?
   
   
   
Thanks!
   
   
  
  
   --
   ::| Carlos Rovira
   ::| http://www.carlosrovira.com
  
 
  
 
 
 
 
 -- 
 ::| Carlos Rovira
 ::| http://www.carlosrovira.com





__ NOD32 1.1641 (20060704) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.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] embeded FlashType fonts look bad

2006-07-04 Thread hank williams



I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does.
As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft.
I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect.
Hank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] embeded FlashType fonts look bad

2006-07-04 Thread hank williams



Oh, thanks much Vinny. now I wont bang my head against the wall!HankOn 7/4/06, Vinny Timmermans 
[EMAIL PROTECTED] wrote:






Hank,

This is a known issue. A number of people have brought 
these issues with FlashTypeto the attention of the Flex team. I 
assume/hope it gets fixed when Flex 2.0.1 arrives.

Vinny


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank 
williamsSent: dinsdag 4 juli 2006 17:24To: 
flexcoders@yahoogroups.comSubject: [flexcoders] embeded FlashType 
fonts look bad


I am trying to use flashtype fonts, which involves embedding the font in a 
swf and then importing the font from a swf into flex. The problem is that flex 
seems to be rendering these fonts much less well than flash does.As a 
test, I have text in the swf that I am embedding. The text looks fine when 
displayed in this swf. When I import the font and display it in my app, the font 
looks really muddy. It looks as if it is not using all that cool font rendering 
stuff that is in flash 8. The edges are extremely soft. I am wondering 
if anyone has had any experience in getting crisp embedded fonts. By the way I 
have been playing with fontAntiAliasType, fontGridType, and fontSharpness with 
the idea that adjusting these might fix the problem, thought nothing has had any 
effect. Hank





__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: Different borderstyles for HBox

2006-07-04 Thread hank williams



Thats pretty cool ben!HankOn 7/4/06, Ben Stucki [EMAIL PROTECTED] wrote:



















I think the correct solution would be to
use a custom skin (programmatic or graphic). Feel free to use my programmatic CSS3Box
skin and CSSManager classes or just steal some of the code to create your own
custom skin. To get started go to my CSS3Box Explorer and
paste the following code into the "Input CSS" field.



.example {

 border-color: blue blue green
green;

 border-width: 5px;

}



That should generate the same result as
below with allot less development effort and less cpu usage. It's
important to note that these styles aren't recognized by default, but
only by the custom classes being used. You can right click on the app to view the
source and read more about the classes at my blog entry. Thanks.



Ben Stucki

http://blog.benstucki.net/












From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of hank williams
Sent: Tuesday, July 04, 2006 10:17
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re:
Different borderstyles for HBox











No, there is nothing wrong with using boxes to place
borders around components. The issue is that the layering technique where you
use four containers to show four different color sides might be a bit wasteful
of CPU depending on how much you do it. But it is pretty standard to use boxes
with a border color and style. 

Hank



On 7/4/06, Jonas
Windey [EMAIL PROTECTED]
 wrote: 







Thanks a lot, that did the trick. So HBoxes shouldn't be used
to place a border around components? 











From: 
flexcoders@yahoogroups.com
[mailto:
flexcoders@yahoogroups.com] On Behalf Of n51red
Sent: dinsdag 4 juli 2006 14:59
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
Different borderstyles for HBox












 I remember read a few days ago that these 
 invisible components can't be styled.

I seems you've been mislead Carlos. Components like HBox and VBox are 
invisible by default, but styles like backgroundColor do work.

Hank's suggestion about using nesting works well (see example), but 
has implications for performance if it is used on a large number of 
components.

Example code:

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
layout=vertical horizontalAlign=center
verticalAlign=middle
mx:Style
Application{
backgroundColor:white;
color:black;
}
..boxStyle1{
borderStyle:solid;
borderThickness:5;
borderColor:blue;
borderSides:bottom, left;
}
..boxStyle2{
borderStyle:solid;
borderThickness:10;
borderColor:green;
borderSides:top, right;
}
/mx:Style
mx:VBox id=box
styleName=boxStyle1
height=50 width=150
mx:VBox height=100% width=100%
styleName=boxStyle2/
/mx:VBox
/mx:Application

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

 Hank,
 
 In general visual containers can be styled, but we are talking 
about Layout
 Containers (HBox, VBox,...), and I remember read a few days ago 
that these
 invisible components can't be styled.
 
 On 7/4/06, hank williams [EMAIL PROTECTED] wrote:
 
  Containers can definitely be styled, but I am not sure that you 
can
  assign a different color to different sides. That might require 
skinning.
  You could use scale9 to do it. I know its not as easy as styles, 
but I
  *think* that may be your only option. You can turn off certain 
sides and
  turn on other sides, so perhaps you could do something with 
layering, but
  thats all I can think of.
 
  Hank
 
  On 7/4/06, Carlos Rovira [EMAIL PROTECTED] wrote:
 
   AFAIK, containers for laying out other content can't be styled
  
  
  
  
   On 7/4/06, Jonas Windey  [EMAIL PROTECTED] wrote:
   
Hi, is it possible to give a HBox different border colors 
for each
side? Like border-right: solid 1px #ccc in css?
   
   
   
Thanks!
   
   
  
  
   --
   ::| Carlos Rovira
   ::| http://www.carlosrovira.com
  
 
  
 
 
 
 
 -- 
 ::| Carlos Rovira
 ::| http://www.carlosrovira.com









__ NOD32 1.1641 (20060704) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.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 

Re: [flexcoders] embeded FlashType fonts look bad

2006-07-04 Thread hank williams



My stuff looks muddy.I have a sample bmp and a sample swf that show the effect. The swf looks fine, and the jpg from my flex app looks muddy. It is 100k so I dont know if its appropriate to post to the list. But I would love to hear what people think. What is the list policy on attachments?
HankOn 7/4/06, Vinny Timmermans [EMAIL PROTECTED] wrote:







BTW. They should not look muddy, but Flex moves them a 
few pixels.?

Vinny


From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank 
williamsSent: dinsdag 4 juli 2006 18:58To: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] embeded FlashType 
fonts look bad


Oh, thanks much Vinny. now I wont bang my head against the 
wall!Hank
On 7/4/06, Vinny 
Timmermans  
[EMAIL PROTECTED] wrote:

  
  
  Hank,
  
  This is a 
  known issue. A number of people have brought these issues with 
  FlashTypeto the attention of the Flex team. I assume/hope it gets fixed 
  when Flex 2.0.1 arrives.
  
  Vinny
  
  
  From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of hank 
  williamsSent: dinsdag 4 juli 2006 17:24To: flexcoders@yahoogroups.comSubject:
 [flexcoders] 
  embeded FlashType fonts look bad
  
  
  
  I am trying to use flashtype fonts, which involves embedding the font in a 
  swf and then importing the font from a swf into flex. The problem is that flex 
  seems to be rendering these fonts much less well than flash does.As a 
  test, I have text in the swf that I am embedding. The text looks fine when 
  displayed in this swf. When I import the font and display it in my app, the 
  font looks really muddy. It looks as if it is not using all that cool font 
  rendering stuff that is in flash 8. The edges are extremely soft. I am 
  wondering if anyone has had any experience in getting crisp embedded fonts. By 
  the way I have been playing with fontAntiAliasType, fontGridType, and 
  fontSharpness with the idea that adjusting these might fix the problem, 
  thought nothing has had any effect. Hank
  






__._,_.___





--
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



  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.



  






__,_._,___



Re: [flexcoders] embeded FlashType fonts look bad

2006-07-04 Thread hank williams



I would but I dont have a public server available right now.HankOn 7/4/06, Nick Collins [EMAIL PROTECTED]
 wrote:


Could you just put it up to your server and post the URLs?On 7/4/06, hank williams 
[EMAIL PROTECTED] wrote:













  



My stuff looks muddy.I have a sample bmp and a sample swf that show the effect. The swf looks fine, and the jpg from my flex app looks muddy. It is 100k so I dont know if its appropriate to post to the list. But I would love to hear what people think. What is the list policy on attachments?
HankOn 7/4/06, Vinny Timmermans 

[EMAIL PROTECTED] wrote:







BTW. They should not look muddy, but Flex moves them a 
few pixels.?

Vinny


From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank 
williamsSent: dinsdag 4 juli 2006 18:58To: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] embeded FlashType 
fonts look bad


Oh, thanks much Vinny. now I wont bang my head against the 
wall!Hank
On 7/4/06, Vinny 
Timmermans  
[EMAIL PROTECTED] wrote:

  
  
  Hank,
  
  This is a 
  known issue. A number of people have brought these issues with 
  FlashTypeto the attention of the Flex team. I assume/hope it gets fixed 
  when Flex 2.0.1 arrives.
  
  Vinny
  
  
  From: flexcoders@yahoogroups.com [mailto:


flexcoders@yahoogroups.com] On Behalf Of hank 
  williamsSent: dinsdag 4 juli 2006 17:24To: flexcoders@yahoogroups.comSubject:
 [flexcoders] 
  embeded FlashType fonts look bad
  
  
  
  I am trying to use flashtype fonts, which involves embedding the font in a 
  swf and then importing the font from a swf into flex. The problem is that flex 
  seems to be rendering these fonts much less well than flash does.As a 
  test, I have text in the swf that I am embedding. The text looks fine when 
  displayed in this swf. When I import the font and display it in my app, the 
  font looks really muddy. It looks as if it is not using all that cool font 
  rendering stuff that is in flash 8. The edges are extremely soft. I am 
  wondering if anyone has had any experience in getting crisp embedded fonts. By 
  the way I have been playing with fontAntiAliasType, fontGridType, and 
  fontSharpness with the idea that adjusting these might fix the problem, 
  thought nothing has had any effect. Hank
  






  




















__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] embeded FlashType fonts look bad

2006-07-04 Thread hank williams



This is a bmp of the flex flashType rendering. Couldnt get googlepages to take the swf but you can see how bad it is.http://hank777.googlepages.com/examples
HankOn 7/4/06, Stacy Young [EMAIL PROTECTED] wrote:



















They are offset a few pixels but I also
found the default sharpness level was way too low.



-Stace











From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Vinny Timmermans
Sent: Tuesday, July 04, 2006 1:14
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] embeded
FlashType fonts look bad











BTW. They should not look
muddy, but Flex moves them a few pixels.?



Vinny









From:
 flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of hank williams
Sent: dinsdag 4 juli 2006 18:58
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] embeded
FlashType fonts look bad



Oh, thanks much Vinny. now I wont bang my head against
the wall!

Hank



On 7/4/06, Vinny
Timmermans 
[EMAIL PROTECTED] wrote: 






Hank,





This is a known issue. A
number of people have brought these issues with FlashTypeto the attention
of the Flex team. I assume/hope it gets fixed when Flex 2.0.1 arrives.





Vinny












From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of hank williams
Sent: dinsdag 4 juli 2006 17:24
To: flexcoders@yahoogroups.com
Subject: [flexcoders] embeded
FlashType fonts look bad







I am
trying to use flashtype fonts, which involves embedding the font in a swf and
then importing the font from a swf into flex. The problem is that flex seems to
be rendering these fonts much less well than flash does.

As a test, I have text in the swf that I am embedding. The text looks fine when
displayed in this swf. When I import the font and display it in my app, the
font looks really muddy. It looks as if it is not using all that cool font
rendering stuff that is in flash 8. The edges are extremely soft. 

I am wondering if anyone has had any experience in getting crisp embedded
fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and
fontSharpness with the idea that adjusting these might fix the problem, thought
nothing has had any effect. 

Hank


















 
  

  AVIS
  IMPORTANT
  
  

  WARNING
  
 
 
  
  Ce message �lectronique et ses pi�ces jointes peuvent contenir des renseignements confidentiels, exclusifs ou l�galement privil�gi�s destin�s au seul usage du destinataire vis�.  L'exp�diteur original ne renonce � aucun privil�ge ou � aucun autre droit si le pr�sent message a �t� transmis involontairement ou s'il est retransmis sans son autorisation.  Si vous n'�tes pas le destinataire vis� du pr�sent message ou si vous l'avez re�u par erreur, veuillez cesser imm�diatement de le lire et le supprimer, ainsi que toutes ses pi�ces jointes, de votre syst�me.  La lecture, la distribution, la copie ou tout autre usage du pr�sent message ou de ses pi�ces jointes par des personnes autres que le destinataire vis� ne sont pas autoris�s et pourraient �tre ill�gaux.  Si vous avez re�u ce courrier �lectronique par erreur, veuillez en aviser l'exp�diteur.

  
  
  This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient.  No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message.  If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system.  The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful.  If you have received this e-mail in error, please notify the sender.

  
 









__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] app startup / load times

2006-07-03 Thread hank williams
On 7/3/06, Richard Kroll [EMAIL PROTECTED] wrote:
 Hank,
 One thing you have to keep in mind is that Flex 2.0 is tailored to web
 *applications* instead of to web sites.

This is the rub. I am doing an application, but I am debating as to
whether to put the intro stuff into a separate flash app so that the
website part of my stuff can open more quickly. Most applications
still need the website-ish stuff to tell the user why they should care
and what the app is.

Basically I am wondering whether I really need to go through that
extra effort of making a separate thing in order to improve startup
performance. I *really* dont want to. I am lazy. And flex would allow
me to do that intro so much easier. But if the startup time is really
annoying to people I dont want to loose potential users because the
startup was too slow.

Now that flex is mainstream, I am sure lots of people are dealing with
or thinking about similar issues so I just wanted to get peoples
thoughts. I'm really hoping people will convince me not to worry about
it, but I am open to being convinced that I need to do a two stage
site.


 When a user starts up a typical
 application, a 8-10 second delay prior to the application to start up is
 not an unusually long delay for startup.  Most Flex apps that I've seen
 to date are starting up in the 3-5 second range, which I believe is
 completely acceptable.

I agree that 3-5 seconds is totally ok. I have no idea what the real
world experience will be for most people and 8-10 seconds was just a
guess based on file size and guesses about the low end of average
connection speeds.

Regards
Hank

I'm not saying that people will not use flex to
 create websites, but I think that a lot of the power that is offered by
 the platform will not be used, and will potentially bloat the file size
 of the site (I'm not positive if the flex platform will dynamically
 remove unused classes, someone have input?).



 HTH,
 Rich Kroll
 Application Developer

 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of hank williams
 Sent: Sunday, July 02, 2006 10:37 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] app startup / load times

 For the first time since I started playing with flex (a couple of
 weeks) I checked out the size of my app, which is currently 477k.

 My app isnt that big, so I presume most of that is just the size of
 the framework. I am just wondering what do people think about that in
 terms of user start up time. For a user with a 500kbps connection that
 is about 8 seconds before the app is loaded. Are people doing loaders
 to get things started? is there an accepted strategy for how to deal
 with this?

 There was another thread recently about how people shouldnt use flex
 for websites and one person provided aesthetic reasons. In my mind, if
 there is a reason (and I am not arguing that there is) but if there is
 a reason not to use it for websites it would be the file size. 10
 seconds seems like a long time to make someone wait before they see
 something. On the other hand perhaps I am underestimating the average
 connection speed.

 Anyway, like I said I would just like to get peoples thoughts on this
 issue.

 Hank


 --
 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










 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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] app startup / load times

2006-07-03 Thread hank williams



Ok, so it sounds like I have one vote for keeping it together and one vote for separateOn 7/3/06, Richard Kroll 
[EMAIL PROTECTED] wrote:Hank,Think of what you are trying to accomplish, and how each fits into your
overall business.It seems to me as though you are trying to merge yourapplication with the more marketing related website that sells it.I wouldnt say I am *trying* to do anything other than ask what people think is a good idea on this front. From a work load perspective it would be easier as one app. But that *is* the question.
So it sounds like I have one vote for (bjorn) and one against - you.ThanksHank
Ifyou look at these two things as distinct entities, it makes much moresense to separate these into separate files with their own source code,progress bars, (potentially) domains, etc.This would reduce the load
time for users just coming to check out your software, and have theadditional benefit of keeping your source for the app completelyseparate from the code you use to sell it.HTH,Rich
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] OnBehalf Of hank williamsSent: Monday, July 03, 2006 9:01 AM
To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] app startup / load timesOn 7/3/06, Richard Kroll [EMAIL PROTECTED]
 wrote: Hank, One thing you have to keep in mind is that Flex 2.0 is tailored to web *applications* instead of to web sites.This is the rub. I am doing an application, but I am debating as to
whether to put the intro stuff into a separate flash app so that thewebsite part of my stuff can open more quickly. Most applicationsstill need the website-ish stuff to tell the user why they should care
and what the app is.Basically I am wondering whether I really need to go through thatextra effort of making a separate thing in order to improve startupperformance. I *really* dont want to. I am lazy. And flex would allow
me to do that intro so much easier. But if the startup time is reallyannoying to people I dont want to loose potential users because thestartup was too slow.Now that flex is mainstream, I am sure lots of people are dealing with
or thinking about similar issues so I just wanted to get peoplesthoughts. I'm really hoping people will convince me not to worry aboutit, but I am open to being convinced that I need to do a two stagesite.
When a user starts up a typical application, a 8-10 second delay prior to the application to start upis not an unusually long delay for startup. Most Flex apps that I've seen to date are starting up in the 3-5 second range, which I believe is
 completely acceptable.I agree that 3-5 seconds is totally ok. I have no idea what the realworld experience will be for most people and 8-10 seconds was just aguess based on file size and guesses about the low end of average
connection speeds.RegardsHank Yahoo! Groups Sponsor ~--Something is new at Yahoo! Groups.Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM~---Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 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.



  






__,_._,___



Re: [flexcoders] app startup / load times

2006-07-03 Thread hank williams



Thanks Ted.But one problem. I dont have *anything* embedded in my app at this point. As I said my app is 477k. Is there anything else that could explain it? Could I really have enough code (written in a week) to explain the size? What is a more normal small flex app size?
Regards,HankOn 7/3/06, Ted Patrick [EMAIL PROTECTED] wrote:
Hank,First off the size of your app seems rather large. Here are a few things to check...1. @Embed with Images - Embedding images directly adds to file size. Optimize images before embedding them.2. Font usage - Fonts embed all glyths into the SWF resulting in a larger files in jumps of 30K.
Use of Runtime Shared Libraries:Typically you do not have one Flex app, you have several, and then they start to multiply. RSL's allow you to package a set of components and assets into a dll of sorts and reuse it across applications. The result is a single RSL reused by many smaller Flex applications. The RSL is loaded via URL and cached in the browser (make sure it gets cached!!) and much smaller flex apps load this RSL at runtime.
No RSL: App1.swf = 300KApp2.swf = 300KApp3.swf = 300KRSL Usage: App1.swf = 20KApp2.swf = 20KApp3.swf = 20K Rsl.swf = 280K
http://www.powersdk.com/ted/2005/07/flex-shared-libraries-tips-and-tricks.php
http://www.adobe.com/devnet/flex/articles/rsl.htmlHope this helps...Ted PatrickFlex EvangelistAdobe Systems IncorporatedFrom: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: Sunday, July 02, 2006 7:37 PM
To: flexcoders@yahoogroups.comSubject: [flexcoders] app startup / load timesFor the first time since I started playing with flex (a couple ofweeks) I checked out the size of my app, which is currently 477k.
My app isnt that big, so I presume most of that is just the size ofthe framework. I am just wondering what do people think about that interms of user start up time. For a user with a 500kbps connection that
is about 8 seconds before the app is loaded. Are people doing loadersto get things started? is there an accepted strategy for how to dealwith this?There was another thread recently about how people shouldnt use flex
for websites and one person provided aesthetic reasons. In my mind, ifthere is a reason (and I am not arguing that there is) but if there isa reason not to use it for websites it would be the file size. 10
seconds seems like a long time to make someone wait before they seesomething. On the other hand perhaps I am underestimating the averageconnection speed.Anyway, like I said I would just like to get peoples thoughts on this issue.
Hank--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 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.



  






__,_._,___



Re: [flexcoders] app startup / load times

2006-07-03 Thread hank williams



Actually, I have to take it back. This answer doesnt quite get to the issue, and I realize I probably didnt fully make the question clear.The alternatives are not two flex apps or one. The choices are1. one flex app or
2. one flex app and a flash website. The issue is that I am not very good with making super cool graphics in basic flash. If I put my mind to it I can do it, but its not my strength. So needing to do two separate apps significantly increases the amount of time I am wasting doing something I am not particularly good at. In flex I could do something cool and I could do it quickly. So there is a time value of money issue here vs. will users get frustrated by the wait time. If I had the time and/or the skills to do a good flash site (or heck even a good html site) efficiently then I would probably just do it because it would be smaller. But this involves real world tradeoffs of time and resources so I need to know how acceptable people think a flex download is for a website.
RegardsHankOn 7/3/06, hank williams [EMAIL PROTECTED] wrote:
Ok, so it sounds like I have one vote for keeping it together and one vote for separateOn 7/3/06, Richard Kroll 

[EMAIL PROTECTED] wrote:Hank,
Think of what you are trying to accomplish, and how each fits into your
overall business.It seems to me as though you are trying to merge yourapplication with the more marketing related website that sells it.I wouldnt say I am *trying* to do anything other than ask what people think is a good idea on this front. From a work load perspective it would be easier as one app. But that *is* the question.
So it sounds like I have one vote for (bjorn) and one against - you.ThanksHank

Ifyou look at these two things as distinct entities, it makes much moresense to separate these into separate files with their own source code,progress bars, (potentially) domains, etc.This would reduce the load
time for users just coming to check out your software, and have theadditional benefit of keeping your source for the app completelyseparate from the code you use to sell it.HTH,Rich
From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] OnBehalf Of hank williamsSent: Monday, July 03, 2006 9:01 AM
To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] app startup / load timesOn 7/3/06, Richard Kroll 
[EMAIL PROTECTED]
 wrote: Hank, One thing you have to keep in mind is that Flex 2.0 is tailored to web *applications* instead of to web sites.This is the rub. I am doing an application, but I am debating as to
whether to put the intro stuff into a separate flash app so that thewebsite part of my stuff can open more quickly. Most applicationsstill need the website-ish stuff to tell the user why they should care
and what the app is.Basically I am wondering whether I really need to go through thatextra effort of making a separate thing in order to improve startupperformance. I *really* dont want to. I am lazy. And flex would allow
me to do that intro so much easier. But if the startup time is reallyannoying to people I dont want to loose potential users because thestartup was too slow.Now that flex is mainstream, I am sure lots of people are dealing with
or thinking about similar issues so I just wanted to get peoplesthoughts. I'm really hoping people will convince me not to worry aboutit, but I am open to being convinced that I need to do a two stagesite.
When a user starts up a typical application, a 8-10 second delay prior to the application to start upis not an unusually long delay for startup. Most Flex apps that I've seen to date are starting up in the 3-5 second range, which I believe is
 completely acceptable.I agree that 3-5 seconds is totally ok. I have no idea what the realworld experience will be for most people and 8-10 seconds was just aguess based on file size and guesses about the low end of average
connection speeds.RegardsHank Yahoo! Groups Sponsor ~--Something is new at Yahoo! Groups.Check out the enhanced email design.

http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM~---Flexcoders Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 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

[flexcoders] app startup / load times

2006-07-02 Thread hank williams
For the first time since I started playing with flex (a couple of
weeks) I checked out the size of my app, which is currently 477k.

My app isnt that big, so I presume most of that is just the size of
the framework. I am just wondering what do people think about that in
terms of user start up time. For a user with a 500kbps connection that
is about 8 seconds before the app is loaded. Are people doing loaders
to get things started? is there an accepted strategy for how to deal
with this?

There was another thread recently about how people shouldnt use flex
for websites and one person provided aesthetic reasons. In my mind, if
there is a reason (and I am not arguing that there is) but if there is
a reason not to use it for websites it would be the file size. 10
seconds seems like a long time to make someone wait before they see
something. On the other hand perhaps I am underestimating the average
connection speed.

Anyway, like I said I would just like to get peoples thoughts on this issue.

Hank


--
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] Re: shadow lighting

2006-07-01 Thread hank williams
 but, since 
you 'know'
 what I am talking about.. you have also looked into the AS3 class 
Flex
 right? You see those loops, there is fancy math, just becasue it 
dosn't have
 a bitwise operator in it dosn't mean it's not fancy Math, 
Exponentialy
 multiply those loops with all containers in your app, then add 
bitmap
 cahcing, you will soon see when they decided to use the native 
vecotrs over
 bitmap filters.
 
 done
 
 Peace, Mike
 
 On 6/30/06, Michael Schmalle [EMAIL PROTECTED] wrote:
 
  By the way, when I am talking about math, I am also speaking of 
the
  Players bitmap caching alogorithms(fancy math)... I hope you get 
your
  question answered.
 
  Peace, Mike
 
  On 6/30/06, Michael Schmalle [EMAIL PROTECTED] wrote:
  
   Ok, well I heard it from the engineers mouth right in front of 
my face.
   So, I hope an engineer tells you instead of me.
  
   Peace, Mike
  
  
   On 6/30/06, hank williams  [EMAIL PROTECTED] wrote:
   
   That may have been their reasoning (I'd like to hear it 
from them)
but I dont buy that the logic (not really much math) 
involved in calculating
container positioning would interact with filters much. By 
any reasonable
measure, there is not much fancy math in flex. And the 
logic, while cool, is
not exactly taxing to the cpu, particularly in the new 10x 
VM.
   
Hank
   
On 6/30/06, Michael Schmalle [EMAIL PROTECTED] wrote:
   
  Ha,

 The only reason they 'don't' use this stuff for containers 
is the
 layout algos and they wanted to squeeze every bit of 
performance from the
 player when rendering the containers.

 You have to look at it this way, containers are Flex, they 
hold
 everything and having filters on these things would slow 
down the players
 rendering.

 Use them for animation, Flex containers are not animation 
they are
 logical mass amounts of mathematical checks and balances. 
You want every bit
 of cpu power to make it look like os containers.

 Peace, Mike

 On 6/30/06, Tim Hoff  [EMAIL PROTECTED] wrote:

 Thanks for the tip Mike. Without digging into the 
API's, for
  what
  appears to be something simple (like this), there's no 
way for the
 
  average developer to know these things.
 
  -TH
 
  --- In flexcoders@yahoogroups.com flexcoders%
40yahoogroups.com,
  hank williams hank777@
 
  wrote:
  
   Hmm...
  
   Doesnt make much sense. They encourage using filters 
in flash
  for
  animation
   and effects but its too slow for a static flex 
container?
  
   It seems to me if performance is an issue flex is the 
last place
 
  that that
   would be of concern since there is little animation. I 
dont get
  how this
   would be a serious impediment for most flex users.
  
   Hank
  
   On 6/30/06, Michael Schmalle teoti.graphix@ wrote:
   
 The following method gives you a little more 
control over
  drop
  shadow
than the shadow style properties
   
There is a reason they didn't use the DropShadow 
filter for
  panels and
containers. It is VERY expensive on processing. If 
you are not
 
  worried about
that then it dosn't matter.
   
That is why the dropShadow style is actually a 
programmatic
  skin
  shape.
   
Peace, Mike
   
On 6/30/06, hank williams hank777@ wrote:

 Thanks Tim. That is EXACTLY what I was looking 
for. That is
  so cool.

 Hank


 On 6/30/06, Tim Hoff TimHoff@  wrote:
 
  Hi Hank,
 
  You can use any of the available Flash filters, 
for simple
  control/container skinning, by setting the 
filters
  property. The
  following method gives you a little more control 
over drop
 
  shadow than the
  shadow style properties. Check the docs for the 
syntax of
  the other
  available filters.
 
  -TH
 
  mx:Script
  ![CDATA[
 
  import flash.filters.*;
  private var dropShadowFilter:Array=new Array(new
  DropShadowFilter(3,45,0x00,.6));
 
  ]]
  /mx:Script
 
  mx:Panel filters={dropShadowFilter}/
 
  --- In flexcoders@yahoogroups.comflexcoders%




40yahoogroups.com,
  Michael Schmalle
  teoti.graphix@
  wrote:
  
   I would sayif you know what you are going 
after,
  
   EVERYTHING in Flex can be skinned with your 
custom
  styles
  and
  layers.
  
   Make custom skin sets. If you read what Adobe 
has said
  quite a bit,
  they
   designed these components for extensibility 
and thus,
  some
  things

[flexcoders] shadow lighting

2006-06-30 Thread hank williams
when applying shadowing to an object, if the lighting source is to the
top left of the object, then the shadow will be on the bottom and the
right. Typically there is also a white or light band across the top
and down the left side.

I am wondering how you do this in flex. I see it in the application
bar and so I am thinking that I should be able to style a canvas to do
it, but I cant seem to do it with the shadow related settings. I
believe I was able to do this kind of things with movie clips in
flash.

I guess a second question is whether it is possible to do any of those
cool flash 8 effects on containers/canvases in flex.

Hank


--
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] What is the difference between versions of Flex Data Services

2006-06-30 Thread hank williams



There are two types of clustering. One type involves the FDS sharing information between nodes. The second type is for remoting, and other similar services where basic load balancers are used.Does the express license allow us to use load balancers where there is no FDS clustering involved?
HankOn 6/30/06, Matt Chotin [EMAIL PROTECTED] wrote:


















I think we'll cross that bridge when
we get to it J












From: 
flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com] On Behalf
Of Kelly @ Dekayd Media Inc.
Sent: Friday, June 30, 2006 10:25
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] What is
the difference between versions of Flex Data Services













Is this going to hold true as processors continue to get faster or
will Adobe change their licensing model?





For instance, IBM just made a chip that will run at 350GHz at room
temperature.





It seems like that might be able to handle more then 100
connections.









--Kelly





















From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of Matt Chotin
Sent: Wednesday, June 28, 2006
11:41 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] What is
the difference between versions of Flex Data Services













A departmental server often needs a server for testing and perhaps
one other server for failover. We want you to be able to support this
configuration so we have an option of $6k/cpu but no matter how many CPUs you
have you cannot have more than 100 concurrent users.



For enterprise you pay per CPU and your configuration can be
whatever you please with as many users as you can handle.



HTH,

Matt











From: 
flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams

Sent: Wednesday, June 28, 2006
1:05 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] What is
the difference between versions of Flex Data Services











So you
think you *can* cluster the 6k version of the product but they
only allow you 100 users?

Does that mean that for 20k the enterprise version gives you unlimited
users over an unlimited number of CPU's? I bet this isnt so. So I am
still confused as to what the difference between the 6k and the free
product is.

Hank

On 6/28/06, Dirk Eismann [EMAIL PROTECTED]
wrote:
 The free one has no concurrent user limit - it's all up to your 1 CPU
 and how much it can handle.

 If you run a beefy app (not just using proxying but Data Management
 Services and Messaging etc.) then I bet it will die before you reach the
 100 :)

 Dirk.

  -Original Message-
  From: flexcoders@yahoogroups.com
  [mailto:flexcoders@yahoogroups.com]
On Behalf Of hank williams
  Sent: Wednesday, June 28, 2006 8:54 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] What is the difference between versions
  of Flex Data Services
 
  I understand there is a free version of fds, and 6k version,
  and a 20k version of fds.
 
  But I cant find any detailed info about this on the website.
 
  One of the key questions I have is what is the difference
  between the free version and the 6k version. Supposedly the
  free version will only allow for one app on one CPU. but as I
  understand it, the 6k version only allow for 100 users. So
  does the free one have the same restrictions or not. It
  sounds like the free one is better than the 6k one, though I
  am sure thats not the case.
 
  Anyway, a detailed description of the value proposition for
  each version would be very helpful.
 
  Thanks
  Hank
 
 
   Yahoo! Groups Sponsor
  ~-- Yahoo! Groups gets a make over.
See
  the new email design.
  http://us.click.yahoo.com/XISQkA/lOaOAA/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
 
 
 
 
 
 
 
 



 --
 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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit

Re: [flexcoders] Re: shadow lighting

2006-06-30 Thread hank williams



Thanks Tim. That is EXACTLY what I was looking for. That is so cool.HankOn 6/30/06, Tim Hoff [EMAIL PROTECTED]
 wrote:


Hi Hank,
You can use any of the available Flash filters, for simple control/container skinning, by setting the filters property. The followingmethod gives you a little more control over drop shadow than the shadow style properties. Check the docs for the syntax of the other available filters.

-TH
mx:Script![CDATA[
import flash.filters.*; private var dropShadowFilter:Array=new Array(new DropShadowFilter(3,45,0x00,.6));]]/mx:Script
mx:Panel filters={dropShadowFilter}/
--- In 
flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: I would sayif you know what you are going after,  EVERYTHING in Flex can be skinned with your custom styles and layers.
  Make custom skin sets. If you read what Adobe has said quite a bit, they designed these components for extensibility and thus, some things are not implemented and are left up to the developer to extend.
  Which when you get deeper into the years with Flex, you will thank Adobe for taking that path.  Peace, Mike 
 On 6/30/06, hank williams [EMAIL PROTECTED] wrote:   when applying shadowing to an object, if the lighting source is to the  top left of the object, then the shadow will be on the bottom and the
  right. Typically there is also a white or light band across the top  and down the left side.   I am wondering how you do this in flex. I see it in the application  bar and so I am thinking that I should be able to style a canvas to do
  it, but I cant seem to do it with the shadow related settings. I  believe I was able to do this kind of things with movie clips in  flash.   I guess a second question is whether it is possible to do any of those
  cool flash 8 effects on containers/canvases in flex.   Hank   --  What goes up, does come down.







__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-30 Thread hank williams



Wow. This email list is strange. I am only seeing matts email because jack responded to it which means he already got it but I havent. Strange.But anyway, now that I am fully understanding this. It sounds *insane*.
You are telling me that remoting, which used to cost $500 or $1000 per server now costs $20,000 per server.I repeat this is insane. It is more expensive than cisco routers. It is more expensive than oracle databases. I repeat. This is insane. No one other than perhaps people using the most valuable and narrow pieces of FDS will pay it. You guys are pricing yourselves out of the market, as you always do.
I would love to hear if there is any other similarly priced server software technology (and I'm not talking ERP or something) on the market.I am in awe.HankOn 6/30/06, 
Jack W. Caldwell [EMAIL PROTECTED] wrote:







Matt:

Regarding How many CPUs does your application 
interact with . . .

For example . . .

Are you saying a server where the Flex app resides is 1 CPU 
and the server
that has MySQL is a second CPU? Which means I need 2 
CPU license?

Thanks,

Jack


From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Matt 
ChotinSent: Friday, June 30, 2006 4:25 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] What is the 
difference between versions of Flex Data Services




No, the key here is the 
idea of an application. How many CPUs does your application potentially 
interact with (which often means how many CPUs behind the load-balancer, not how 
many a given app touches). In FDS Express your application can only 
potentially talk to one CPU, and you get that for free. In departmental 
100 concurrent users can interact with your potential CPUs at $6K a CPU. 
Full license is as many users as you want across all the 
CPUs.

We'll be working in an 
improved pricing page that gets into more gory details over the next week 
hopefully.

Matt





From: 
flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: Friday, June 30, 2006 2:08 
PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] What is the 
difference between versions of Flex Data Services




There are 
two types of clustering. One type involves the FDS sharing information between 
nodes. The second type is for remoting, and other similar services where basic 
load balancers are used.Does the express license allow us to use load 
balancers where there is no FDS clustering involved? 
Hank

On 6/30/06, Matt Chotin 
[EMAIL PROTECTED] 
wrote:



I think we'll cross 
that bridge when we get to it J
 






From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Kelly @ Dekayd Media 
Inc.Sent: Friday, June 30, 
2006 10:25 AM

To: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] What is the 
difference between versions of Flex Data 
Services






Is this going to hold 
true as processors continue to get faster or will Adobe change their licensing 
model?


For instance, IBM just 
made a chip that will run at 350GHz at room 
temperature.


It seems like that 
might be able to handle more then 100 connections.




--Kelly










From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Matt ChotinSent: Wednesday, June 28, 2006 11:41 
PMTo: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] What is the 
difference between versions of Flex Data Services





A departmental server 
often needs a server for testing and perhaps one other server for failover. 
We want you to be able to support this configuration so we have an option 
of $6k/cpu but no matter how many CPUs you have you cannot have more than 100 
concurrent users.

For enterprise you pay 
per CPU and your configuration can be whatever you please with as many users as 
you can handle.

HTH,
Matt





From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of hank williams Sent: Wednesday, June 28, 2006 1:05 
PMTo: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] What is the 
difference between versions of Flex Data Services




So you 
think you *can* cluster the 6k version of the product but theyonly allow you 
100 users?Does that mean that for 20k the enterprise version gives you 
unlimitedusers over an unlimited number of CPU's? I bet this isnt so. So I 
amstill confused as to what the difference between the 6k and the 
freeproduct is.HankOn 6/28/06, Dirk Eismann [EMAIL PROTECTED]
 wrote: The free 
one has no concurrent user limit - it's all up to your 1 CPU and how 
much it can handle. If you run a beefy app (not just using 
proxying but Data Management Services and Messaging etc.) then I bet it 
will die before you reach the 100 :) 
Dirk.  -Original Message-  From: flexcoders@yahoogroups.com
  [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams 
 Sent: Wednesday, June 28, 2006 8:54 PM  To: flexcoders@yahoogroups.com  Subject: [flexcoders] 
What is the difference between versions

Re: [flexcoders] Re: shadow lighting

2006-06-30 Thread hank williams



Hmm...Doesnt make much sense. They encourage using filters in flash for animation and effects but its too slow for a static flex container?It seems to me if performance is an issue flex is the last place that that would be of concern since there is little animation. I dont get how this would be a serious impediment for most flex users.
HankOn 6/30/06, Michael Schmalle [EMAIL PROTECTED] wrote:



  The followingmethod gives you a little more control over drop shadow than the shadow style properties

There is a reason they didn't use the DropShadow filter for panels and
containers. It is VERY expensive on processing. If you are not worried
about that then it dosn't matter.

That is why the dropShadow style is actually a programmatic skin shape.

Peace, Mike
On 6/30/06, hank williams 
[EMAIL PROTECTED] wrote:













  



Thanks Tim. That is EXACTLY what I was looking for. That is so cool.HankOn 6/30/06, 
Tim Hoff [EMAIL PROTECTED]
 wrote:


Hi Hank,
You can use any of the available Flash filters,
for simple control/container skinning, by setting the filters
property. The followingmethod gives you a little more
control over drop shadow than the shadow style properties. Check
the docs for the syntax of the other available filters.

-TH
mx:Script![CDATA[
import flash.filters.*; private var dropShadowFilter:Array=new Array(new DropShadowFilter(3,45,0x00,.6));]]/mx:Script
mx:Panel filters={dropShadowFilter}/
--- In 
flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: I would sayif you know what you are going after,  EVERYTHING in Flex can be skinned with your custom styles and layers.
  Make custom skin sets. If you read what Adobe has said quite a bit, they designed these components for extensibility and thus, some things are not implemented and are left up to the developer to extend.
  Which when you get deeper into the years with Flex, you will thank Adobe for taking that path.  Peace, Mike 
 On 6/30/06, hank williams [EMAIL PROTECTED] wrote:   when applying shadowing to an object, if the lighting source is to the  top left of the object, then the shadow will be on the bottom and the
  right. Typically there is also a white or light band across the top  and down the left side.   I am wondering how you do this in flex. I see it in the application  bar and so I am thinking that I should be able to style a canvas to do
  it, but I cant seem to do it with the shadow related settings. I  believe I was able to do this kind of things with movie clips in  flash.   I guess a second question is whether it is possible to do any of those
  cool flash 8 effects on containers/canvases in flex.   Hank   --  What goes up, does come down.









  













-- What goes up, does come down.






__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: shadow lighting

2006-06-30 Thread hank williams



That may have been their reasoning (I'd like to hear it from them) but I dont buy that the logic (not really much math) involved in calculating container positioning would interact with filters much. By any reasonable measure, there is not much fancy math in flex. And the logic, while cool, is not exactly taxing to the cpu, particularly in the new 10x VM.
HankOn 6/30/06, Michael Schmalle
 [EMAIL PROTECTED] wrote:




Ha,

The only reason they 'don't' use this stuff for containers is the
layout algos and they wanted to squeeze every bit of performance from
the player when rendering the containers.

You have to look at it this way, containers are Flex, they hold
everything and having filters on these things would slow down the
players rendering.

Use them for animation, Flex containers are not animation they are
logical mass amounts of mathematical checks and balances. You want
every bit of cpu power to make it look like os containers.

Peace, MikeOn 6/30/06, Tim Hoff 

[EMAIL PROTECTED] wrote:














  



Thanks for the tip Mike.  Without digging into the API's, for what 
appears to be something simple (like this), there's no way for the 
average developer to know these things.

-TH

--- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] 



wrote:

 Hmm...
 
 Doesnt make much sense. They encourage using filters in flash for 
animation
 and effects but its too slow for a static flex container?
 
 It seems to me if performance is an issue flex is the last place 
that that
 would be of concern since there is little animation. I dont get 
how this
 would be a serious impediment for most flex users.
 
 Hank
 
 On 6/30/06, Michael Schmalle [EMAIL PROTECTED] wrote:
 
   The following method gives you a little more control over drop 
shadow
  than the shadow style properties
 
  There is a reason they didn't use the DropShadow filter for 
panels and
  containers. It is VERY expensive on processing. If you are not 
worried about
  that then it dosn't matter.
 
  That is why the dropShadow style is actually a programmatic skin 
shape.
 
  Peace, Mike
 
  On 6/30/06, hank williams [EMAIL PROTECTED] wrote:
  
  Thanks Tim. That is EXACTLY what I was looking for. That is 
so cool.
  
   Hank
  
  
   On 6/30/06, Tim Hoff [EMAIL PROTECTED]  wrote:
   
Hi Hank,
   
You can use any of the available Flash filters, for simple
control/container skinning, by setting the filters 
property.  The
following method gives you a little more control over drop 
shadow than the
shadow style properties.  Check the docs for the syntax of 
the other
available filters.
   
-TH
   
mx:Script
 ![CDATA[
   
   import flash.filters.*;
   private var dropShadowFilter:Array=new Array(new
DropShadowFilter(3,45,0x00,.6));
   
]]
/mx:Script
   
mx:Panel filters={dropShadowFilter}/
   
--- In flexcoders@yahoogroups.com, Michael Schmalle 
teoti.graphix@
wrote:

 I would sayif you know what you are going after,

 EVERYTHING in Flex can be skinned with your custom styles 
and
layers.

 Make custom skin sets. If you read what Adobe has said 
quite a bit,
they
 designed these components for extensibility and thus, some 
things
are not
 implemented and are left up to the developer to extend.

 Which when you get deeper into the years with Flex, you 
will thank
Adobe for
 taking that path.

 Peace, Mike

 On 6/30/06, hank williams hank777@ wrote:
 
  when applying shadowing to an object, if the lighting 
source is to
the
  top left of the object, then the shadow will be on the 
bottom and
the
  right. Typically there is also a white or light band 
across the
top
  and down the left side.
 
  I am wondering how you do this in flex. I see it in the
application
  bar and so I am thinking that I should be able to style 
a canvas
to do
  it, but I cant seem to do it with the shadow related 
settings. I
  believe I was able to do this kind of things with movie 
clips in
  flash.
 
  I guess a second question is whether it is possible to 
do any of
those
  cool flash 8 effects on containers/canvases in flex.
 
  Hank
 
 



 --
 What goes up, does come down.

   
   
  
 
 
  --
  What goes up, does come down. 
 



  













-- What goes up, does come down.







__._,_.___





--
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

Re: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-29 Thread hank williams



So does this means that with the enterprise servers if you wanted one machine for production and one for failover it would be 40k?On 6/29/06, Matt Chotin
 [EMAIL PROTECTED] wrote:
















A departmental server often needs a server
for testing and perhaps one other server for failover. We want you to be
able to support this configuration so we have an option of $6k/cpu but no
matter how many CPUs you have you cannot have more than 100 concurrent users.



For enterprise you pay per CPU and your
configuration can be whatever you please with as many users as you can handle.



HTH,

Matt











From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of hank williams
Sent: Wednesday, June 28, 2006
1:05 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] What is
the difference between versions of Flex Data Services











So you
think you *can* cluster the 6k version of the product but they
only allow you 100 users?

Does that mean that for 20k the enterprise version gives you unlimited
users over an unlimited number of CPU's? I bet this isnt so. So I am
still confused as to what the difference between the 6k and the free
product is.

Hank

On 6/28/06, Dirk Eismann [EMAIL PROTECTED]
wrote:
 The free one has no concurrent user limit - it's all up to your 1 CPU
 and how much it can handle.

 If you run a beefy app (not just using proxying but Data Management
 Services and Messaging etc.) then I bet it will die before you reach the
 100 :)

 Dirk.

  -Original Message-
  From: flexcoders@yahoogroups.com
  [mailto:flexcoders@yahoogroups.com]
On Behalf Of hank williams
  Sent: Wednesday, June 28, 2006 8:54 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] What is the difference between versions
  of Flex Data Services
 
  I understand there is a free version of fds, and 6k version,
  and a 20k version of fds.
 
  But I cant find any detailed info about this on the website.
 
  One of the key questions I have is what is the difference
  between the free version and the 6k version. Supposedly the
  free version will only allow for one app on one CPU. but as I
  understand it, the 6k version only allow for 100 users. So
  does the free one have the same restrictions or not. It
  sounds like the free one is better than the 6k one, though I
  am sure thats not the case.
 
  Anyway, a detailed description of the value proposition for
  each version would be very helpful.
 
  Thanks
  Hank
 
 
   Yahoo! Groups Sponsor
  ~-- Yahoo! Groups gets a make over.
See
  the new email design.
  http://us.click.yahoo.com/XISQkA/lOaOAA/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
 
 
 
 
 
 
 
 



 --
 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








   






  
  
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.



  






__,_._,___



Re: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-29 Thread hank williams
On 6/29/06, Tom Chiverton [EMAIL PROTECTED] wrote:
 On Thursday 29 June 2006 10:58, hank williams wrote:
  So does this means that with the enterprise servers if you wanted one
  machine for production and one for failover it would be 40k?


Hmm...

So this would mean you can have as many users as you want on one box
for free, or you can have a generally unused failover box and a limit
of 100 users for 6k.

I'm not getting the value proposition.

Hank



 I would imagine it depends if you have active/passive or active/active
 failover.
 In the former case, only one server is ever running at a time, ergo one
 license needed.

 --
 Tom Chiverton

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and 
 Wales under registered number OC307980 whose registered office address is at 
 St James's Court Brown Street Manchester M2 2JF.  A list of members is 
 available for inspection at the registered office. Any reference to a partner 
 in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by 
 the Law Society.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and may 
 be confidential or legally privileged.  If you are not the addressee you must 
 not read it and must not use any information contained in nor copy it nor 
 inform any person other than Halliwells LLP or the addressee of its existence 
 or contents.  If you have received this email in error please delete it and 
 notify Halliwells LLP IT Department on 0870 365 8008.

 For more information about Halliwells LLP visit www.halliwells.com.

 We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of 
 the Year at the 2005 Growth Company Awards




 --
 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










 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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/
 





[flexcoders] nub question: How do you display a jpg from a URL in a container

2006-06-29 Thread hank williams
How do you display a jpg from a URL in a container?

Hank


 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/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] Flash Player 9 is here!!!

2006-06-28 Thread hank williams



nothing is more evil than a multi-tiered marketing campaign.
lol. Maybe just a *little* over the top.Hank

__._,_.___





--
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] cornerEadius

2006-06-28 Thread hank williams



I am trying to apply cornerradius fields to a variety of UIComponents like forms vboxes and canvases. I have not been able to get it to actually show rounded corners, and I am wondering what the trick is I am missing, or if it only applies to certain types of objects.
ThanksHank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] cornerEadius

2006-06-28 Thread hank williams



Thanks much . it was not having borderStyle set. Just adding that made it work.HankOn 6/28/06, David Clark 
[EMAIL PROTECTED] wrote:


 mx:Canvas x=44 y=34 width=200 height=200 borderStyle=solid cornerRadius=10 /mx:Canvasnote case - MXML is case sensitive
-- davidMany people die at twenty five and aren't buried until they are seventy five. - Benjamin Franklin






__._,_.___





--
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] What is the difference between versions of Flex Data Services

2006-06-28 Thread hank williams
I understand there is a free version of fds, and 6k version, and a 20k
version of fds.

But I cant find any detailed info about this on the website.

One of the key questions I have is what is the difference between the
free version and the 6k version. Supposedly the free version will only
allow for one app on one CPU. but as I understand it, the 6k version
only allow for 100 users. So does the free one have the same
restrictions or not. It sounds like the free one is better than the 6k
one, though I am sure thats not the case.

Anyway, a detailed description of the value proposition for each
version would be very helpful.

Thanks
Hank


 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/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] What is the difference between versions of Flex Data Services

2006-06-28 Thread hank williams
So you think you *can* cluster the 6k version of the product but they
only allow you 100 users?

Does that mean that for 20k the enterprise version gives you unlimited
users over an unlimited number of CPU's? I bet this isnt so. So I am
still confused as to what the difference between the 6k and the free
product is.

Hank

On 6/28/06, Dirk Eismann [EMAIL PROTECTED] wrote:
 The free one has no concurrent user limit -  it's all up to your 1 CPU
 and how much it can handle.

 If you run a beefy app (not just using proxying but Data Management
 Services and Messaging etc.) then I bet it will die before you reach the
 100 :)

 Dirk.

  -Original Message-
  From: flexcoders@yahoogroups.com
  [mailto:[EMAIL PROTECTED] On Behalf Of hank williams
  Sent: Wednesday, June 28, 2006 8:54 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] What is the difference between versions
  of Flex Data Services
 
  I understand there is a free version of fds, and 6k version,
  and a 20k version of fds.
 
  But I cant find any detailed info about this on the website.
 
  One of the key questions I have is what is the difference
  between the free version and the 6k version. Supposedly the
  free version will only allow for one app on one CPU. but as I
  understand it, the 6k version only allow for 100 users. So
  does the free one have the same restrictions or not. It
  sounds like the free one is better than the 6k one, though I
  am sure thats not the case.
 
  Anyway, a detailed description of the value proposition for
  each version would be very helpful.
 
  Thanks
  Hank
 
 
   Yahoo! Groups Sponsor
  ~-- Yahoo! Groups gets a make over. See
  the new email design.
  http://us.click.yahoo.com/XISQkA/lOaOAA/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
 
 
 
 
 
 
 
 



 --
 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










 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] Re: Repost of bug issue over weekend

2006-06-27 Thread hank williams



Thanks Daniel.I was thinking something similar after I wrote my last email, but didnt have the energy to write it up. Basically, if it can draw and scroll separate items (even if they are the same) then it can identify them for the purpose of highlighting and selection. If it couldnt tell the difference between the items it should only show one item. In any case, that would be a strong clue as to what is wrong. But it *can* tell the difference between the items.
I agree, and repeat again. This is a bug.HankOn 6/27/06, Daniel Tuppeny [EMAIL PROTECTED]
 wrote:This is crazy! I'd say this is *definitely* a bug. so it has no way to differentiate between them
Yes it does - with the index. Change the list to this:mx:List id=myList dataProvider={selectedChannels} width=100click=mx.controls.Alert.show(String(myList.selectedIndex
)); /And then click on the items. It CORRECTLY identifies the selected item,even though all 4 are the same. It can EASILY be done if it used theindex of the current item, rather than the value (which IMO - is
madness).It might not be very friendly to have multiple items the same (but thereare places this is very useful), I don't see any reason this shouldn'tbe fixed.-Original Message-
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] OnBehalf Of ben.clinkinbeardSent: 26 June 2006 19:22
To: flexcoders@yahoogroups.comSubject: [flexcoders] Re: Repost of bug issue over weekendI don't think this is a bug as I am not sure how it could work any
differently. You are repeatedly adding the same item (the stringhello) to the list so it has no way to differentiate between them anduses the newest instance for the rollOver and rollOut actions. If you
want to display the same string multiple times I think you will need tofill your ArrayCollection with objects and access a property via alabelFunction.HTH,Ben--- In 
flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: I posted this over the weekend, but I am sure most people, includingadobe, did not see it. I saw that someone else had exactly the same problem in another
thread and initially responded to that thread. The discussion about that bugquickly devolved into a critique of the persons programming style, and unless I missed something didnt resolve the issue of there being a bug.
 I may be doing something wrong but I dont think so. My immediateissue is to find a work around. Since this is a really basic thing I wouldimagine that, if it is not a known issue (which is hard to imagine) that it will
get some attention. Below describes the problem, along with an mxml code example. If you take the below text, drop it into an app, You should see fourhello items in the list. If you move your mouse over the items, you should
 see that only the last item in the list of 4 hellos highlights, no matter where the mouse is. (at least hopefully you will see it... if notthat would be*really* wierd)
 ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml initialize=initList()
mx:Script ![CDATA[ import mx.collections.ArrayCollection; [Bindable] private var selectedChannels:ArrayCollection = new
 ArrayCollection(); private function initList():void{ selectedChannels.addItem(hello); selectedChannels.addItem(hello);
 selectedChannels.addItem(hello); selectedChannels.addItem(hello); } ]] /mx:Script
 mx:ListdataProvider={selectedChannels} width=100/ /mx:Canvas Yahoo! Groups Sponsor ~--
See what's inside the new Yahoo! Groups email.http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM~-
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links[Inbound Mail Scanned by MessageLabs]__
This email has been scanned by the MessageLabs Email Security System.For more information please visit http://www.messagelabs.com/email__
 Yahoo! Groups Sponsor ~--Check out the new improvements in Yahoo! Groups email.http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~---Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com

[flexcoders] simple E4X question

2006-06-27 Thread hank williams



I have an XML _expression_ that is a tree. I want to find the node that has and id of n, where the node could be at any level of the tree. It seems to me the e4x stuff that I have read seem to presume you are attempting to access a structured tree where all of the fields of a particular type are at a given level, but this cant be true.
In any case, the below code works for the top level, but does not find matching nodes that are below the top level.var item:XMLList=tree.*.(@data="">Hank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] simple E4X question

2006-06-27 Thread hank williams



thanks much!HankOn 6/27/06, Gordon Smith [EMAIL PROTECTED] wrote:
















Put two dots between tree and * to get all
descendants of arbitrary depth:



tree..*.(@data == n)



- Gordon











From:
flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of hank williams
Sent: Tuesday, June 27, 2006 5:52
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] simple E4X
question











I have an XML _expression_ that is a tree. I want to
find the node that has and id of n, where the node could be at any
level of the tree. It seems to me the e4x stuff that I have read seem to
presume you are attempting to access a structured tree where all of the fields
of a particular type are at a given level, but this cant be true. 

In any case, the below code works for the top level, but does not find matching
nodes that are below the top level.

var item:XMLList=tree.*.(@data="">

Hank














__._,_.___





--
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] Repost of bug issue over weekend

2006-06-26 Thread hank williams



I posted this over the weekend, but I am sure most people, including adobe, did not see it.I saw that someone else had exactly the same problem in another thread and initially responded to that thread. The discussion about that bug quickly devolved into a critique of the persons programming style, and unless I missed something didnt resolve the issue of there being a bug.
I may be doing something wrong but I dont think so. My immediate issue is to find a work around. Since this is a really basic thing I would imagine that, if it is not a known issue (which is hard to imagine) that it will get some attention.
Below describes the problem, along with an mxml code example.If you take the below text, drop it into an app, You should see four
hello items in the list. If you move your mouse over the items,
you should see that only the last item in the list of 4 hellos
highlights, no matter where the mouse is. (at least hopefully you will
see it... if not that would be*really* wierd)
?xml version=1.0 encoding=utf-8?mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml initialize=initList()
 mx:Script  ![CDATA[   import mx.collections.ArrayCollection;   [Bindable]   private var selectedChannels:ArrayCollection = new ArrayCollection();
  private function initList():void{selectedChannels.addItem(hello);selectedChannels.addItem(hello);selectedChannels.addItem
(hello);selectedChannels.addItem(hello);   }  ]] /mx:Script mx:List dataProvider={selectedChannels} width=100/
/mx:Canvas

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: Shouldn't we use Flex to built website

2006-06-26 Thread hank williams



On 6/26/06, Nick Collins [EMAIL PROTECTED] wrote:



I think you misunderstand me. I have nothing against flash sites. I'm referring to the poorly done ones where flash users were doing things merely because they now could, not because it was good design. I'm not saying anyone here falls into this category, but typically it was done by people who were solely developers and didn't have an ounce of design sense in their body, from my observations. My point is that Flex is a developer tool, and while some developers are pretty design savvy, most do not fall into that category so my fear is that if developers start using Flex to build sites, we'll be seeing a lot of sites springing up with lots of neat functionality with blurs and fades and slides and stuff, but zero usability and no quality user experience. Does that make more sense?
Well, interestingly, I dont think graphic designers have any kind of corner on usability. There are three disciplines involved here, programming, interface design, and graphic design. Some, though few people are good at all three. I think the biggest crime though is the assumption that good graphic designers have some inherent understanding of human interaction. Of course I presume here when you say designer you mean graphic designer which is usually what people mean. But great human interface designers (eg bruce tognazini Jacob Nielsen) dont (perhaps rarely do) have any facility with graphic design and art in my experience. I for one am on the opposite end of the spectrum being decent in human interface and coding, but unable to make decent artwork.
My point. Let a million flowers bloom. The tools are what they are. Making things easier will spawn lots of good stuff and lots of bad stuff. And so it goes.RegardsHank
On 6/25/06, Michael Schmalle 
[EMAIL PROTECTED] wrote:









  



 those who decide to use Flex to do website designs rank right with
those who did all that other crap in the early days of flash with
bouncing balls and forced site intros and such.

I have no opinion on this subject whatsoever but..

Would like to point out that this comment is ridiculous. There have
been many successful flash websites(In the right context for the right
target audience), this is just plain ignorance. I guess you were one of
those bouncing ball guys right?

BTW, a statement with such force doesn't require a reply but I HAD TO :)

Peace, MikeOn 6/25/06, Jignesh Dodiya 

[EMAIL PROTECTED] wrote:









  



thanx all for reply and wish many other give their ideas on thisRegards, Jignesh Dodiya

  













-- What goes up, does come down.

  




















__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: Repost of bug issue over weekend

2006-06-26 Thread hank williams



Thanks ben. Yes it does help. It is, from my perpsective, even now understanding what it seems to do, be an unexpected result. Perhaps it should generate an error, or not allow you to have an arrayCollection of strings instead of objects, since it is always possible for a list to have multiple matching strings. IMHO it should either do the right thing, or generate an error, not create some anomalous user interface effect with certain data sets. Because this will work right with one set of data, and not right with another data set, I would consider it a bug, though not of the kind I initially thought.
RegardsHankOn 6/26/06, ben.clinkinbeard [EMAIL PROTECTED] wrote:
I don't think this is a bug as I am not sure how it could work anydifferently. You are repeatedly adding the same item (the stringhello) to the list so it has no way to differentiate between themand uses the newest instance for the rollOver and rollOut actions. If
you want to display the same string multiple times I think you willneed to fill your ArrayCollection with objects and access a propertyvia a labelFunction.HTH,Ben--- In 
flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: I posted this over the weekend, but I am sure most people, includingadobe, did not see it. I saw that someone else had exactly the same problem in another
thread and initially responded to that thread. The discussion about that bugquickly devolved into a critique of the persons programming style, and unless I missed something didnt resolve the issue of there being a bug.
 I may be doing something wrong but I dont think so. My immediateissue is to find a work around. Since this is a really basic thing I wouldimagine that, if it is not a known issue (which is hard to imagine) that it will
get some attention. Below describes the problem, along with an mxml code example. If you take the below text, drop it into an app, You should see fourhello items in the list. If you move your mouse over the items, you should see
 that only the last item in the list of 4 hellos highlights, no matter where the mouse is. (at least hopefully you will see it... if notthat would be*really* wierd)
 ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml initialize=initList()
mx:Script ![CDATA[ import mx.collections.ArrayCollection; [Bindable] private var selectedChannels:ArrayCollection = new
 ArrayCollection(); private function initList():void{ selectedChannels.addItem(hello); selectedChannels.addItem(hello);
 selectedChannels.addItem(hello); selectedChannels.addItem(hello); } ]] /mx:Script
 mx:ListdataProvider={selectedChannels} width=100/ /mx:Canvas Yahoo! Groups Sponsor ~--
See what's inside the new Yahoo! Groups email.http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM~-
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 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] datagrid date formatting

2006-06-26 Thread hank williams



I have a datagrid that has a Date type column and I want to display the date in a mm/dd/yy format. The default is a really long format that includes the day of the week and the time. How do I tell a column how to format the date.
Hank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: datagrid date formatting

2006-06-26 Thread hank williams



Yes... well that seems like the thing to do since I couldnt get Tims solution to work :)HankOn 6/26/06, Gordon Smith 
[EMAIL PROTECTED] wrote:















I'd recommend using a labelFunction and a
DateFormatter to accomplish this, because it is a lighter-weight solution than
using an itemRenderer.



- Gordon











From:
flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Tim Hoff
Sent: Monday, June 26, 2006 1:40
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: datagrid
date formatting











Hi
Hank,

You
could use an itemRenderer component or do it in-line like this:

-TH

mx:DataGridColumn
width=104 textAlign=center dataField=myDate
headerText=My Date
mx:itemRenderer
mx:Component
 mx:VBox
 mx:DateFormatter
id=df formatString=MM/DD//

mx:Text id=myDate selectable=false
width=104 

text={df.format(data.myDate)}
paddingLeft=5
  /mx:VBox
 /mx:Component
/mx:itemRenderer
/mx:DataGridColumn 

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

 I have a datagrid that has a Date type column and I want ! to display the
date
 in a mm/dd/yy format. The default is a really long format that includes
the
 day of the week and the time. How do I tell a column how to format the
date.
 
 Hank















__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: datagrid date formatting

2006-06-26 Thread hank williams



No problem Tim. I really appreciate your help. This has just pointed me in the right direction so that I can really study all this stuff anyway. I feel like a vacuum cleaner right now!Hank
On 6/26/06, Tim Hoff [EMAIL PROTECTED] wrote:
Thanks for the tip Gordon.Sorry Hank, it works for me.-TH--- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED]wrote:
 Yes... well that seems like the thing to do since I couldnt getTims solution to work :) Hank On 6/26/06, Gordon Smith [EMAIL PROTECTED] wrote:  I'd recommend using a labelFunction and a DateFormatter to
accomplish  this, because it is a lighter-weight solution than using anitemRenderer. - Gordon   --
   *From:* flexcoders@yahoogroups.com[mailto:flexcoders@yahoogroups.com] *On  Behalf Of *Tim Hoff
  *Sent:* Monday, June 26, 2006 1:40 PM  *To:* flexcoders@yahoogroups.com  *Subject:* [flexcoders] Re: datagrid date formatting 
Hi Hank,   You could use an itemRenderer component or do it in-line likethis:   -TH   mx:DataGridColumnwidth=104 textAlign=center
dataField=myDate  headerText=My Date mx:itemRenderer  mx:Component  mx:VBox  mx:DateFormatter id=df formatString=MM/DD//
 mx:Text id=myDate selectable=false width=104  text={df.format(data.myDate)} paddingLeft=5  /mx:VBox
 /mx:Component /mx:itemRenderer  /mx:DataGridColumn   --- In flexcoders@yahoogroups.com
, hank williams hank777@wrote: I have a datagrid that has a Date type column and I want ! todisplay  the date   in a mm/dd/yy format. The default is a really long format that
includes  the   day of the week and the time. How do I tell a column how toformat the  date. Hank
  Yahoo! Groups Sponsor ~--Something is new at Yahoo! Groups.Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM~---Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 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] spinning widget with remoteObject

2006-06-25 Thread hank williams



I want to put up an area on the screen that spins when a remoteObject is getting its data. I dont mean a spinning cursor but an actual area on the screen. I have seen this many times before, and the idea is to tell the user that a particular area of the screen is waiting for remote data.
Also, I am particularly curious about the artwork for this purpose which so many people seem to use. Its sort of a spinning circle and I believe it has an arrow in it. As you move around the circle the gradient of the circle diminishes. I am wondering if this widget is in flex or if people just copy it.
Hopefully from my megar description, someone actually knows what I am talking about.Hank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] spinning widget with remoteObject

2006-06-25 Thread hank williams



Yeah, I know that I can just do it manually. I was just wondering if there was some built in thing that takes an event and does all the right stuff (like it does with spinning the cursor).I was also suspicious since so many people use the same artwork, which is only used in flash. So I thought there might be some built in way to do it.
ThanksHankOn 6/25/06, Weyert de Boer [EMAIL PROTECTED] wrote:
Hi Hank,You can just use a transparent image (i.e. 24bit PNG file) and justrotate this picture/movieclip until you are done loading.This how I do it... :-)Yours,Weyert de Boer Yahoo! Groups Sponsor ~--
Check out the new improvements in Yahoo! Groups email.http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM~-
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 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.



  






__,_._,___



Re: [flexcoders] Re: programatically assigning an ArrayCollection as the DataProvider bug...

2006-06-24 Thread hank williams



Just to make things simple, I created the simples possible example of the problem.If you take the below text, drop it into an app, You should see four hello items in the dataGrid. If you move your mouse over the items, you should see that only the last item in the list of 4 hellos highlights, no matter where the mouse is. (at least hopefully you will see it... if not that would be*really* wierd)
RegardsHank?xml version=1.0 encoding=utf-8?mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml initialize=initList()
 mx:Script  ![CDATA[   import mx.collections.ArrayCollection;   [Bindable]   private var selectedChannels:ArrayCollection = new ArrayCollection();
  private function initList():void{selectedChannels.addItem(hello);selectedChannels.addItem(hello);selectedChannels.addItem
(hello);selectedChannels.addItem(hello);   }  ]] /mx:Script mx:DataGrid id = lChannelList
x=10 y = 10dataProvider={selectedChannels} width = 200 height=150//mx:Canvas
- END OF CODE --On 6/24/06, Tim Hoff [EMAIL PROTECTED] wrote:
One other thought, when you say the blue selection highlight, areyou refering to the DataGrid's selectionColor that extends the
entire row?-TH--- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Hi Johnathan, I took everything that wasn't necessary out of ResourceVO and it
seems to work as expected.No focus border problems that I'm seeing. -TH package com.crap.vo {import org.nevis.cairngorm.vo.ValueObject;import mx.resources.Locale
;// changed resource to resources[Bindable]public class ResourceVO implements ValueObject{public var key:String = ;public var value:String = ;
public var locale:Locale = new Locale(eng_us);}} } --- In flexcoders@yahoogroups.com, hank williams hank777@
wrote:   The exact thing that Jonathan describes below in the referencedemail is  happening to me. I am attempting to programatically create abindable  arrayCollection and use that arrayCollection as a dataProvider
for a  dataGrid. When I do this, only the last item in the list isselectable with  the mouse.   I am getting the exact same results as jonathan. But according
to the  documentation, this is totally legal. In this thread, the theorywas that  the IUID was not there or that the object needed to be dynamic,but that  cant relate to an ArrayCollection. This really feels like a bug
 because I  should be able to create and modify a bindable arrayCollectionwithout  worrying about any wierd scenario. This should be flex 101.   So I am curious if anyone else can dynamically (not from a data
 service)  create a dataProvider for a dataGrid using an arrayCollection and select any  item in the list with the mouse.   Betcha cant.   Hank
   On 4/12/06, box110a jonathanbmail-flash@ wrote: I didn't see this in the known issues. but I'll attempt toexplain whats   going on:
 Here is my Code (i'll explain the bug at the end):   *DGTest.mxml   *?xml version=1.0 encoding=utf-8?   mx:Application xmlns:mx=
http://www.adobe.com/2006/mxmlxmlns=*   layout=absolute creationComplete=init();   pageTitle=DataGrid Test
   mx:Script   ![CDATA[   import mx.utils.ArrayUtil;   import com.crap.vo.ResourceVO;   import mx.collections.ArrayCollection;
 [Bindable]   public var dataObj:ArrayCollection;   [Bindable]   public var objTemp:ResourceVO = new ResourceVO(); private function init():void{
   dataObj = new ArrayCollection(); var obj1:ResourceVO = new ResourceVO();   obj1.value = foo-0;   obj1.key = bar-0;
   dataObj.addItem(obj1); var obj2:ResourceVO = new ResourceVO();   obj2.value = foo-1;   obj2.key = bar-1;   
dataObj.addItem(obj2); var obj3:ResourceVO = new ResourceVO();   obj3.value = foo-2;   obj3.key = bar-2;   dataObj.addItem
(obj3); dg.dataProvider = dataObj;   } private function selectRow():void{   objTemp = ResourceVO(dg.selectedItem);
 } ]]   /mx:Script   mx:HBox width=90% height=90% horizontalCenter=0
   verticalCenter=0   mx:Panel layout=absolute height=50% width=50%   mx:VBox width=443 height=90% horizontalCenter=1
   verticalCenter=-1   mx:DataGrid id=dg width=100% height=100%   change=selectRow();   editable=true
  mx:columns   mx:DataGridColumn headerText=Key   dataField=key/   mx:DataGridColumn headerText=Value
   dataField=value/   /mx:columns   /mx:DataGrid   /mx:VBox   /mx:Panel   mx:Panel width=50% height=50% layout=absolute
   mx:Form x=10 y=10 height=156 width=445   mx:FormItem label=Key:   mx:TextInput id=txtKey data=""
objTemp.key}/   /mx:FormItem   mx:FormItem label=Value:   mx:TextInput id=txtValue data=""
   /mx:FormItem   /mx:Form   /mx:Panel   /mx:HBox   /mx:Application *
ResourceVO.as   *package com.crap.vo {   import com.crap.mvc.vo.ValueObject;   import mx.resource.Locale;   import mx.controls.listClasses.BaseListData;   import 
mx.controls.listClasses.IDropInListItemRenderer; import mx.data.IManaged;   import mx.data.utils.Managed;   import mx.core.mx_inte

Re: [flexcoders] Re: programatically assigning an ArrayCollection as the DataProvider bug...

2006-06-24 Thread hank williams



Oh there is a slight bug in the last example. The problem occurs for a List or a DataGrid. I was playing with both and in the example, I add strings to the dataProvider instead of objects. Flex really doesnt mind except for the fact that it makes the word length the column header. But even if you make the dataGrid a list, it doesnt work. Nothing works. But the documentation does say it *should* work.
http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0502.html
HankOn 6/24/06, hank williams [EMAIL PROTECTED] wrote:
Just to make things simple, I created the simples possible example of the problem.If you take the below text, drop it into an app, You should see four hello items in the dataGrid. If you move your mouse over the items, you should see that only the last item in the list of 4 hellos highlights, no matter where the mouse is. (at least hopefully you will see it... if not that would be*really* wierd)
RegardsHank?xml version=1.0 encoding=utf-8?mx:Canvas xmlns:mx=
http://www.adobe.com/2006/mxml initialize=initList()
 mx:Script  ![CDATA[   import mx.collections.ArrayCollection;   [Bindable]   private var selectedChannels:ArrayCollection = new ArrayCollection();
  private function initList():void{selectedChannels.addItem(hello);selectedChannels.addItem(hello);selectedChannels.addItem

(hello);selectedChannels.addItem(hello);   }  ]] /mx:Script mx:DataGrid id = lChannelList

x=10 y = 10dataProvider={selectedChannels} width = 200 height=150//mx:Canvas
- END OF CODE --On 6/24/06, Tim Hoff 
[EMAIL PROTECTED] wrote:
One other thought, when you say the blue selection highlight, areyou refering to the DataGrid's selectionColor that extends the
entire row?-TH--- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote:
 Hi Johnathan, I took everything that wasn't necessary out of ResourceVO and it
seems to work as expected.No focus border problems that I'm seeing. -TH package com.crap.vo {import org.nevis.cairngorm.vo.ValueObject;import mx.resources.Locale

;// changed resource to resources[Bindable]public class ResourceVO implements ValueObject{public var key:String = ;public var value:String = ;
public var locale:Locale = new Locale(eng_us);}} } --- In 
flexcoders@yahoogroups.com, hank williams hank777@
wrote:   The exact thing that Jonathan describes below in the referencedemail is  happening to me. I am attempting to programatically create abindable  arrayCollection and use that arrayCollection as a dataProvider
for a  dataGrid. When I do this, only the last item in the list isselectable with  the mouse.   I am getting the exact same results as jonathan. But according
to the  documentation, this is totally legal. In this thread, the theorywas that  the IUID was not there or that the object needed to be dynamic,but that  cant relate to an ArrayCollection. This really feels like a bug
 because I  should be able to create and modify a bindable arrayCollectionwithout  worrying about any wierd scenario. This should be flex 101.   So I am curious if anyone else can dynamically (not from a data
 service)  create a dataProvider for a dataGrid using an arrayCollection and select any  item in the list with the mouse.   Betcha cant.   Hank
   On 4/12/06, box110a jonathanbmail-flash@ wrote: I didn't see this in the known issues. but I'll attempt toexplain whats   going on:
 Here is my Code (i'll explain the bug at the end):   *DGTest.mxml   *?xml version=1.0 encoding=utf-8?   mx:Application xmlns:mx=
http://www.adobe.com/2006/mxmlxmlns=*   layout=absolute creationComplete=init();
   pageTitle=DataGrid Test
   mx:Script   ![CDATA[   import mx.utils.ArrayUtil;   import com.crap.vo.ResourceVO;   import mx.collections.ArrayCollection;

 [Bindable]   public var dataObj:ArrayCollection;   [Bindable]   public var objTemp:ResourceVO = new ResourceVO(); private function init():void{
   dataObj = new ArrayCollection(); var obj1:ResourceVO = new ResourceVO();   obj1.value = foo-0;   obj1.key = bar-0;
   dataObj.addItem(obj1); var obj2:ResourceVO = new ResourceVO();   obj2.value = foo-1;   obj2.key = bar-1;   
dataObj.addItem(obj2); var obj3:ResourceVO = new ResourceVO();   obj3.value = foo-2;   obj3.key = bar-2;   dataObj.addItem

(obj3); dg.dataProvider = dataObj;   } private function selectRow():void{   objTemp = ResourceVO(dg.selectedItem);

 } ]]   /mx:Script   mx:HBox width=90% height=90% horizontalCenter=0

   verticalCenter=0   mx:Panel layout=absolute height=50% width=50%   mx:VBox width=443 height=90% horizontalCenter=1
   verticalCenter=-1   mx:DataGrid id=dg width=100% height=100%   change=selectRow();   editable=true
  mx:columns   mx:DataGridColumn headerText=Key   dataField=key/   mx:DataGridColumn headerText=Value
   dataField=value/   /mx:columns   /mx:DataGrid   /mx:VBox   /mx:Panel   mx:Panel width=50% height=50

[flexcoders] Using Eclipse to create a central library

2006-06-24 Thread hank williams



I have several projects in eclipse. I have a library of code that I want to be able to use in multiple projects including flex. How do I tell a flex app or eclipse, to look in another project in my workspace for the code? I dont want to change the path of my code for each project. I want my package path to remain the same for each new package that needs access to my common code. Any ideas on how to do this?
Hank

__._,_.___





--
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] Re: Using Eclipse to create a central library

2006-06-24 Thread hank williams



Ignore this one. Figured it out.HankOn 6/24/06, hank williams [EMAIL PROTECTED] wrote:
I have several projects in eclipse. I have a library of code that I want to be able to use in multiple projects including flex. How do I tell a flex app or eclipse, to look in another project in my workspace for the code? I dont want to change the path of my code for each project. I want my package path to remain the same for each new package that needs access to my common code. Any ideas on how to do this?
Hank



__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] Re: Using Eclipse to create a central library

2006-06-24 Thread hank williams



Here's how you include other directories as part of source code in a project in eclipse1. right click on the folder that is your flex project.2. select properties down at the bottom of the menu3. in the panel on the left side, select Flex Build Path
4. in the source path tab, press on the button add folder5. Navigate to the folder *containing the folder or folders that you want to include. For my structure I had a directory called src that contained folders like com. So in my case I selected src. This is necessary so that you can find fully qualified package paths.
RegardsHankOn 6/24/06, Hilary Bridel [EMAIL PROTECTED] wrote:



I would be interested in the answer...
On 6/24/06, hank williams [EMAIL PROTECTED]
 wrote:


Ignore this one. Figured it out.
Hank

On 6/24/06, hank williams [EMAIL PROTECTED]

 wrote: 

I have several projects in eclipse. I have a library of code that I want to be able to use in multiple projects including flex. How do I tell a flex app or eclipse, to look in another project in my workspace for the code? I dont want to change the path of my code for each project. I want my package path to remain the same for each new package that needs access to my common code. Any ideas on how to do this? 

Hank 
-- Hilary-- 






__._,_.___





--
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] Javadoc like comments for AS3

2006-06-24 Thread hank williams



I am wondering what the MM strategy is for commenting AS3. I would really love to be able to add javadoc comments, and compile some kind of code documentation. It seems as though the editor, on some level, understands the idea of javadoc because if on a blank line you type /* the stuff below turns green. It knows its a comment. But if you type /** (the signal for this is javadoc) it turns blue.
But it doesnt auto create the parameter signatures and I dont see any other reference to documentation in flex. Of course it is very possible I have missed something, so I am just curious if anyone else has any insight.
Hank

__._,_.___





--
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] Another simple flex newbie question

2006-06-23 Thread hank williams



How do you modularize MXML.In actionscript we import classes, and each class represents some conceptual chunk, but I am not sure what the equivalent is in MXML.I have been looking at lots of code examples, but they are all small. This has been very helpful in learning how APIs work, but I am on the edge of my two day project feeling bloated and unmodular.
I am sure, lots of people will say the answer is cairngorm, but for right now I want to learn MXML raw before adding another layer on top of it.ThanksHank

__._,_.___





--
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.



  






__,_._,___



Re: [Junk E-Mail - LOW] [flexcoders] Another simple flex newbie question

2006-06-23 Thread hank williams



Thanks. I hadnt looked at MXML components because I thought they were more like flash components(ugh), and thats not how we do code modularity in flash.I appreciate the tip.Hank
On 6/23/06, Shannon Hicks [EMAIL PROTECTED] wrote:









You want to use MXML components...


http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=Part1_GetStarted.html

You can pass in data when the component is called, and even 
have bendable and/or functions that return values/objects.

Shan


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank 
williamsSent: Friday, June 23, 2006 8:10 AMTo: 
flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] 
Another simple flex newbie question


How do you modularize MXML.In actionscript we import classes, and 
each class represents some conceptual chunk, but I am not sure what the 
equivalent is in MXML.I have been looking at lots of code examples, but 
they are all small. This has been very helpful in learning how APIs work, but I 
am on the edge of my two day project feeling bloated and unmodular. I am 
sure, lots of people will say the answer is cairngorm, but for right now I want 
to learn MXML raw before adding another layer on top of 
it.ThanksHank
--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 
6/21/2006




--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 6/21/2006
 



__._,_.___





--
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.



  






__,_._,___



Re: [Junk E-Mail - LOW] [flexcoders] Another simple flex newbie question

2006-06-23 Thread hank williams



Ok, so in looking at the docs, to include a directory you use xmlns:MyComp=*This should as I understand it include everything from the main app directory.Is MyComp a reserved word that is the holder of the directory path, or could you use other words here instead of MyComp.
ThanksHankOn 6/23/06, Shannon Hicks [EMAIL PROTECTED] wrote:









You want to use MXML components...


http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=Part1_GetStarted.html

You can pass in data when the component is called, and even 
have bendable and/or functions that return values/objects.

Shan


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank 
williamsSent: Friday, June 23, 2006 8:10 AMTo: 
flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] 
Another simple flex newbie question


How do you modularize MXML.In actionscript we import classes, and 
each class represents some conceptual chunk, but I am not sure what the 
equivalent is in MXML.I have been looking at lots of code examples, but 
they are all small. This has been very helpful in learning how APIs work, but I 
am on the edge of my two day project feeling bloated and unmodular. I am 
sure, lots of people will say the answer is cairngorm, but for right now I want 
to learn MXML raw before adding another layer on top of 
it.ThanksHank
--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 
6/21/2006




--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 6/21/2006
 



__._,_.___





--
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.



  






__,_._,___



Re: [Junk E-Mail - LOW] [flexcoders] Another simple flex newbie question

2006-06-23 Thread hank williams



Thanks. One last question on this. I have no problem defining how to put a component in the same directory and using MyComp=*, but if I want to put it in a sub directory, MyComp=MyComponents is not working. The MyComponents directory is now at the same level as the main app. Any ideas?
ThanksHankOn 6/23/06, Matt Horn [EMAIL PROTECTED] wrote:
You can use anything when you define a namespace. You need to matchwhatever you use in your mxml tags; for example, if you name it fred,then you reference the ButtonComp control with a fred prefix:
?xml version=1.0?mx:Application xmlns:mx=http://www.adobe.com/2006/mxmlxmlns:Fred=*Fred:ButtonComp id=b1 click=sumTotal()/
/mx:ApplicationIn this case, the file ButtonComp.mxml is in the same directory as theapp that references it. The entire file can consist of something assimple as:mx:Button xmlns:mx=
http://www.adobe.com/2006/mxml/hth,matt hornflex docs -Original Message- From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: Friday, June 23, 2006 10:19 AM To: 
flexcoders@yahoogroups.com Subject: Re: [Junk E-Mail - LOW] [flexcoders] Another simple flex newbie question Ok, so in looking at the docs, to include a directory you use xmlns:MyComp=*
 This should as I understand it include everything from the main app directory. Is MyComp a reserved word that is the holder of the directory path, or could you use other words here instead of MyComp.
 Thanks Hank On 6/23/06, Shannon Hicks [EMAIL PROTECTED] wrote: You want to use MXML components...
 http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhim pl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=Part1_Ge
tStarted.html http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhi mpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=Part1_G
etStarted.html You can pass in data when the component is called, and even have bendable and/or functions that return values/objects. Shan 
 From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams
 Sent: Friday, June 23, 2006 8:10 AM To: flexcoders@yahoogroups.com Subject: [Junk E-Mail - LOW] [flexcoders] Another simple flex newbie question
 How do you modularize MXML. In actionscript we import classes, and each class represents some conceptual chunk, but I am not sure what the equivalent is in MXML.
 I have been looking at lots of code examples, but they are all small. This has been very helpful in learning how APIs work, but I am on the edge of my two day project feeling bloated and unmodular.
 I am sure, lots of people will say the answer is cairngorm, but for right now I want to learn MXML raw before adding another layer on top of it. Thanks
 Hank -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.2/372 -
 Release Date: 6/21/2006 -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394
 / Virus Database: 268.9.2/372 - Release Date: 6/21/2006 Yahoo! Groups Sponsor ~--Something is new at Yahoo! Groups.Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM~---
Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 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.



  






__,_._,___



Re: [Junk E-Mail - LOW] [flexcoders] Another simple flex newbie question

2006-06-23 Thread hank williams



Sorry, that is what I was doing. I just misstyped the email. And that isnt working.HankOn 6/23/06, Shannon Hicks 
[EMAIL PROTECTED] wrote:








You want to use:

xmlns:mx=MyComponents/*

Shan


From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank 
williamsSent: Friday, June 23, 2006 10:03 AM
To: 
flexcoders@yahoogroups.comSubject: Re: [Junk E-Mail - LOW] 
[flexcoders] Another simple flex newbie question


Thanks. One last question on this. I have no problem defining how to put a 
component in the same directory and using MyComp=*, but if I want to put it in 
a sub directory, MyComp=MyComponents is not working. The MyComponents 
directory is now at the same level as the main app. Any ideas? 
ThanksHank
On 6/23/06, Matt Horn 
[EMAIL PROTECTED] wrote:
You can use anything when you 
  define a namespace. You need to matchwhatever you use in your mxml tags; 
  for example, if you name it fred,then you reference the ButtonComp control 
  with a fred prefix:?xml version=1.0?mx:Application 
  xmlns:mx=http://www.adobe.com/2006/mxmlxmlns:Fred=*Fred:ButtonComp 
  id=b1 click=sumTotal()/ /mx:ApplicationIn this 
  case, the file ButtonComp.mxml is in the same directory as theapp that 
  references it. The entire file can consist of something assimple 
  as:mx:Button xmlns:mx= http://www.adobe.com/2006/mxml/hth,
matt 
  hornflex docs -Original Message- From: flexcoders@yahoogroups.com
 
  [mailto:flexcoders@yahoogroups.com] On 
  Behalf Of hank williams Sent: Friday, June 23, 2006 10:19 AM 
  To: flexcoders@yahoogroups.com 
  Subject: Re: [Junk E-Mail - LOW] [flexcoders] Another simple flex 
  newbie question Ok, so in looking at the docs, to include a 
  directory you use xmlns:MyComp=*  This should as I 
  understand it include everything from the main app 
  directory. Is MyComp a reserved word that is the holder of the 
  directory path, or could you use other words here instead of MyComp. 
   Thanks Hank On 6/23/06, 
  Shannon Hicks [EMAIL PROTECTED] 
  wrote: You want to use 
  MXML components...  http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhim
 
  pl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=Part1_Ge 
  tStarted.html http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhi
 
  mpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=Part1_G 
  etStarted.html You 
  can pass in data when the component is called, and even have bendable 
  and/or functions that return 
  values/objects. 
  Shan  
   From: flexcoders@yahoogroups.com 
  [mailto:flexcoders@yahoogroups.com] On 
  Behalf Of hank williams  Sent: 
  Friday, June 23, 2006 8:10 AM To: 
  flexcoders@yahoogroups.com 
  Subject: [Junk E-Mail - LOW] [flexcoders] Another simple flex newbie 
  question 
   
  How do you modularize 
  MXML. In actionscript we 
  import classes, and each class represents some conceptual chunk, but I 
  am not sure what the equivalent is in MXML. 
   I have been looking at 
  lots of code examples, but they are all small. This has been very 
  helpful in learning how APIs work, but I am on the edge of my two day 
  project feeling bloated and unmodular. 
   I am sure, lots of people 
  will say the answer is cairngorm, but for right now I want to learn 
  MXML raw before adding another layer on top of 
  it. Thanks 
   
  Hank 
  -- No virus found in this incoming 
  message. Checked by AVG Free 
  Edition. Version: 7.1.394 / Virus 
  Database: 268.9.2/372 -  Release Date: 
  6/21/2006 
  -- No virus found in this outgoing 
  message. Checked by AVG Free 
  Edition. Version: 7.1.394 / Virus 
  Database: 268.9.2/372 - Release Date: 
  6/21/2006 
  Yahoo! Groups Sponsor ~--Something is new at 
  Yahoo! Groups.Check out the enhanced email design. http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~---Flexcoders 
  Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
  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/


--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 
6/21/2006




--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 6/21/2006
 



__._,_.___





--
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

Re: [Junk E-Mail - LOW] [flexcoders] Another simple flex newbie question

2006-06-23 Thread hank williams



Thanks. The dot did it!HankOn 6/23/06, Jean-Luc ESSER [EMAIL PROTECTED] wrote:







You'll have to specify .* to get to the files 
inside your directory.
MyComp=MyComponents.* should work.

Jean-Luc.


  - Original Message - 
  
From: 
  hank williams 
  
  To: 
flexcoders@yahoogroups.com 
  Sent: Friday, June 23, 2006 5:02 PM

  Subject: Re: [Junk E-Mail - LOW] 
  [flexcoders] Another simple flex newbie question
  
  
  Thanks. One last question on this. I have no problem defining how to put a 
  component in the same directory and using MyComp=*, but if I want to put it 
  in a sub directory, MyComp=MyComponents is not working. The MyComponents 
  directory is now at the same level as the main app. Any ideas? 
  ThanksHank
  On 6/23/06, Matt 
  Horn [EMAIL PROTECTED] 
  wrote:
  You can use anything when 
you define a namespace. You need to matchwhatever you use in your mxml 
tags; for example, if you name it fred,then you reference the ButtonComp 
control with a fred prefix:?xml 
version=1.0?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
xmlns:Fred=*Fred:ButtonComp 
id=b1 click=sumTotal()/ /mx:ApplicationIn 
this case, the file ButtonComp.mxml is in the same directory as theapp 
that references it. The entire file can consist of something assimple 
as:mx:Button xmlns:mx= http://www.adobe.com/2006/mxml/hth,
matt 
hornflex docs -Original Message- From: flexcoders@yahoogroups.com
 
[mailto:flexcoders@yahoogroups.com] On 
Behalf Of hank williams Sent: Friday, June 23, 2006 10:19 AM 
To: flexcoders@yahoogroups.com 
Subject: Re: [Junk E-Mail - LOW] [flexcoders] Another simple flex 
newbie question Ok, so in looking at the docs, to include a 
directory you use xmlns:MyComp=*  This should as I 
understand it include everything from the main app 
directory. Is MyComp a reserved word that is the holder of 
the directory path, or could you use other words here instead of 
MyComp.  Thanks Hank On 
6/23/06, Shannon Hicks [EMAIL PROTECTED] 
wrote: You want to use 
MXML components...  http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhim
 
pl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=Part1_Ge 
tStarted.html http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhi
 
mpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=Part1_G 
etStarted.html 
You can pass in data when the component is called, and even have 
bendable and/or functions that return 
values/objects. 
Shan  
 From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On 
Behalf Of hank williams  Sent: 
Friday, June 23, 2006 8:10 AM 
To: flexcoders@yahoogroups.com 
Subject: [Junk E-Mail - LOW] [flexcoders] Another simple flex newbie 
question 
 
How do you modularize 
MXML. In actionscript we 
import classes, and each class represents some conceptual chunk, but 
I am not sure what the equivalent is in MXML. 
 I have been looking at 
lots of code examples, but they are all small. This has been very 
helpful in learning how APIs work, but I am on the edge of my two 
day project feeling bloated and unmodular. 
 I am sure, lots of 
people will say the answer is cairngorm, but for right now I want to 
learn MXML raw before adding another layer on top of 
it. Thanks 
 
Hank 
-- No virus found in this 
incoming message. Checked by AVG 
Free Edition. Version: 7.1.394 / 
Virus Database: 268.9.2/372 -  Release Date: 
6/21/2006 
-- No virus found in this 
outgoing message. Checked by AVG 
Free Edition. Version: 7.1.394 / 
Virus Database: 268.9.2/372 - Release Date: 
6/21/2006 
Yahoo! Groups Sponsor ~--Something is new at 
Yahoo! Groups.Check out the enhanced email design. http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~---Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
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 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

[flexcoders] RemoteObjects in components

2006-06-23 Thread hank williams



Ok, so I just created a component. It needs to access remoteObjects. I defined the component as a canvas. But I guess canvas's cant have sub items that are remoteObjects, so a compiler error is thrown. But the whole purpose of this component is to display remoteObject data in a scrolling list. It makes sense to me that the remoteObject be close to the list. Although perhaps not. Perhaps ultimately the RemoteObjects should be in one place and the display in another to keep things highly factored (I know cairngorm again). So I would like to know how to place remoteObjects in a component, and how to place then in another component that might serve data to this component.
ThanksHankPS At some point I am sure I will use cairngorm, but I need to understand how the real system works before I start using something that obscures or simplifes how things work. Otherwise I dont think I will be a good MXML coder.


__._,_.___





--
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.



  






__,_._,___



Re: [Junk E-Mail - LOW] [flexcoders] RemoteObjects in components

2006-06-23 Thread hank williams



Thanks. Its great to see some other code. I have learned a few things just checking it out.But one question. In looking at your code, I noticed that the remoteObject stuff is at the application level. Does this mean that you cant put remoteObjects in MXML components? I was hoping to modularize that.
ThanksHankOn 6/23/06, Shannon Hicks [EMAIL PROTECTED] wrote:









Check out my little flex project...

http://flex.work.iotashan.com/hlstatsx/hlstatsx.html


Nothing special, but it does what you're asking. Right-click to view the 
source.

Shan



From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank 
williamsSent: Friday, June 23, 2006 11:02 AMTo: 
flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] 
RemoteObjects in components


Ok, so I just created a component. It needs to access remoteObjects. I 
defined the component as a canvas. But I guess canvas's cant have sub items that 
are remoteObjects, so a compiler error is thrown. But the whole purpose of this 
component is to display remoteObject data in a scrolling list. It makes sense to 
me that the remoteObject be close to the list. Although perhaps not. Perhaps 
ultimately the RemoteObjects should be in one place and the display in another 
to keep things highly factored (I know cairngorm again). So I would like to know 
how to place remoteObjects in a component, and how to place then in another 
component that might serve data to this component. 
ThanksHankPS At some point I am sure I will use cairngorm, 
but I need to understand how the real system works before I start using 
something that obscures or simplifes how things work. Otherwise I dont think I 
will be a good MXML coder. 

--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 
6/21/2006




--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 6/21/2006
 



__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] [F2B3] Could Adobe make Flex Framework available trough SVN?

2006-06-23 Thread hank williams



I love the SVN idea. And you dont even need to post interim code, just official releases. This would allow us to update our projects in a very natural way. Of course it would be great to get unofficial bug fixes, but that shouldnt prevent you from publishing updates in a more modern way. They are two separate issues.
Hank.On 6/23/06, Matt Chotin [EMAIL PROTECTED] wrote:
If you've ever done support though you'll know how many times someonewill say they're using the official release when later they rememberthat oh yeah, I did try that experiment a few weeks ago and must have
forgotten to undo it :-)We are not against the idea, but it will take time for us to figure outthe right way to do it so that expectations can be managed and we cancontinue to be responsive.Matt
-Original Message-From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] OnBehalf Of Tom Chiverton
Sent: Thursday, June 22, 2006 1:47 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] [F2B3] Could Adobe make Flex Frameworkavailable trough SVN?
On Wednesday 21 June 2006 22:24, Matt Chotin wrote: things that we would need to be concerned about from a support perspective if essentially daily builds of the framework wereavailable.That's easy :-)
Only offical releases and/or tags are supported.Daily builds/trunk aren't - use at own risk.I think many people would be happy with that.--Tom Chiverton
This email is sent for and on behalf of Halliwells LLP.Halliwells LLP is a limited liability partnership registered in Englandand Wales under registered number OC307980 whose registered officeaddress is at St James's Court Brown Street Manchester M2 2JF.A list
of members is available for inspection at the registered office. Anyreference to a partner in relation to Halliwells LLP means a member ofHalliwells LLP. Regulated by the Law Society.CONFIDENTIALITY
This email is intended only for the use of the addressee named above andmay be confidential or legally privileged.If you are not the addresseeyou must not read it and must not use any information contained in nor
copy it nor inform any person other than Halliwells LLP or the addresseeof its existence or contents.If you have received this email in errorplease delete it and notify Halliwells LLP IT Department on 0870 365
8008.For more information about Halliwells LLP visit www.halliwells.com.We are pleased to announce that Halliwells LLP has been voted AIM Lawyerof the Year at the 2005 Growth Company Awards
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links 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 ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 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.



  






__,_._,___



Re: [flexcoders] programatically assigning an ArrayCollection as the DataProvider bug...

2006-06-23 Thread hank williams



The exact thing that Jonathan describes below in the referenced email is happening to me. I am attempting to programatically create a bindable arrayCollection and use that arrayCollection as a dataProvider for a dataGrid. When I do this, only the last item in the list is selectable with the mouse.
I am getting the exact same results as jonathan. But according to the documentation, this is totally legal. In this thread, the theory was that the IUID was not there or that the object needed to be dynamic, but that cant relate to an ArrayCollection. This really feels like a bug because I should be able to create and modify a bindable arrayCollection without worrying about any wierd scenario. This should be flex 101.
So I am curious if anyone else can dynamically (not from a data service) create a dataProvider for a dataGrid using an arrayCollection and select any item in the list with the mouse.Betcha cant.Hank
On 4/12/06, box110a [EMAIL PROTECTED] wrote:



I didn't see this in the known issues. but I'll attempt to explain whats going on:Here is my Code (i'll explain the bug at the end):DGTest.mxml
?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
 xmlns=* layout=absolute creationComplete=init(); pageTitle=DataGrid Testmx:Script ![CDATA[  import mx.utils.ArrayUtil;
  import com.crap.vo.ResourceVO;  import mx.collections.ArrayCollection;   [Bindable]  public var dataObj:ArrayCollection;  [Bindable]  public var objTemp:ResourceVO = new ResourceVO(); 
  private function init():void{   dataObj = new ArrayCollection();  var obj1:ResourceVO = new ResourceVO();obj1.value = foo-0;   
obj1.key = bar-0;   dataObj.addItem(obj1);  var obj2:ResourceVO = new ResourceVO();obj2.value = foo-1;
   obj2.key = bar-1;   dataObj.addItem(obj2);  var obj3:ResourceVO = new ResourceVO();obj3.value
 = foo-2;   obj3.key = bar-2;   dataObj.addItem(obj3);  dg.dataProvider = dataObj;  }
private function selectRow():void{   objTemp = ResourceVO(dg.selectedItem);  }   ]]/mx:Script mx:HBox width=90% height=90% horizontalCenter=0 verticalCenter=0
  mx:Panel layout=absolute height=50% width=50%   mx:VBox width=443 height=90% horizontalCenter=1 verticalCenter=-1
mx:DataGrid id=dg width=100% height=100% change=selectRow(); editable=true 
 mx:columns  mx:DataGridColumn headerText=Key dataField=key/  mx:DataGridColumn headerText=Value dataField=value/
 /mx:columns/mx:DataGrid   /mx:VBox  /mx:Panel  mx:Panel width=50% height=50% layout=absolute
   mx:Form x=10 y=10 height=156 width=445mx:FormItem label=Key: mx:TextInput id=txtKey data=""
objTemp.key}//mx:FormItemmx:FormItem label=Value: mx:TextInput id=txtValue data=""
/mx:FormItem   /mx:Form  /mx:Panel /mx:HBox/mx:ApplicationResourceVO.aspackage com.crap.vo
 { import com.crap.mvc.vo.ValueObject; import mx.resource.Locale; import mx.controls.listClasses.BaseListData; import mx.controls.listClasses.IDropInListItemRenderer; import mx.data.IManaged
; import mx.data.utils.Managed; import mx.core.mx_internal;  [Bindable] public class ResourceVO implements ValueObject{  public var key:String = ;  public var value:String = ;
  public var locale:Locale = new Locale(eng_us); }}The Issue:When I view this application, it works as expected: it shows the datagrid with the three items and when I click on it, the fields to the right are populated. However, the blue 
selection highlight doesn't move off of the last item in the list! I have also sceen this issue in a ComboBox.
Any ideas as to why this is happening?-JB






--
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



  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 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] simple charting question

2006-06-22 Thread hank williams



If I have a line chart, and I want there to be bullets at each of the data points how do I turn this feature on.Hank

__._,_.___





--
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] animated line charts

2006-06-22 Thread hank williams



I saw a demo somewhere of a flex line chart that was animated such that the lines series lines where drawn onto the screen rather than just appearing when the chart was drawn. Does anybody have any idea how this was done.
Hank

__._,_.___





--
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.



  






__,_._,___



Re: [flexcoders] animated line charts

2006-06-22 Thread hank williams



Those are cool effects but, based on my reading and a quick and dirty test, as documented, none of the effects that I read about do what I want.HankOn 6/22/06, 
Pan Troglodytes [EMAIL PROTECTED] wrote:



I haven't dealt with the line charts much, but it sounds like they are using a showDataEffect. Look up SeriesInterpolate in the help. I've used it with pie and column graphs and it looks great.

On 6/22/06, hank williams [EMAIL PROTECTED] wrote:










  



I saw a demo somewhere of a flex line chart that was animated such that the lines series lines where drawn onto the screen rather than just appearing when the chart was drawn. Does anybody have any idea how this was done.

Hank

  













-- Jason






__._,_.___





--
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.



  






__,_._,___



<    1   2   3   4   5   >