[flexcoders] Incomplete Java API docs

2006-07-20 Thread m88e24
The Java API doc which is included in the Flex2 final release is
incomplete and doesn't reflect the actual class library packaged in
the jar files. 

For example the MessageBroker and MessageClient is missing from the
Java API docs. 

Furthermore the information contained in the Java API doc is not very
verbose. A development guide and up to date docs would be very much
appreciated.

Anyone has a reference to the complete and up to date Java API doc?






 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] performance issues

2006-07-20 Thread Matt Chotin












Well DataGrid scrolling performance is
something that we’ve spent a lot of time tuning so I would love for us to
get a full test case that we can look at.  I saw in the thread you linked
mentioning a 1600x1200 monitor, is the DataGrid taking up most of that real
estate?  The more visible rows the slower the scrolling will be.  Another
thing you could look at is in your setter for the data comparing against the
old value and if it hasn’t changed not doing anything, it may be that it’s
invalidating too often?  I’ll ask one of the people who worked on
performance if she has any thoughts.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pan Troglodytes
Sent: Wednesday, July 19, 2006
11:44 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] performance
issues



 







Well, specifically I had a DataGrid using this for the
itemRenderer:

package nes {

  import mx.controls.dataGridClasses.DataGridListData ;
  import mx.controls.Label;

  public class SignColorItemRenderer extends Label {
    public var negativeColor:uint = 0xFF;
    public var positiveColor:uint = 0x008000;
    public var zeroColor:uint; 

    override public function set data(value:Object):void {
  super.data = "">

  var n:Number =
data[DataGridListData(listData).dataField];
  if (n < 0)
    setStyle("color",
negativeColor); 
  else if (n > 0)
    setStyle("color", positiveColor);
  else if (n == 0)
    setStyle("color",
zeroColor);
    }
  }
}

I brought it up in this thread: 
http://groups.yahoo.com/group/flexcoders/message/43243;_ylc=X3oDMTM3cWM2MG9mBF9TAzk3MzU5NzE0BGdycElkAzEyMjg2MTY3BGdycHNwSWQDMTYwMDAwNzIwNwRtc2dJZAM0MzI2MwRzZWMDZnRyBHNsawN2dHBjBHN0aW1lAzExNTI4NTY4NDUEdHBjSWQDNDMyNDM-

I tried LOADS of different ways to do it.  I found that anytime I put much
of any extra code in, it took away from the responsiveness.  Even
replacing the above data procedure with just a single setStyle statement. 
As I said, it's not horrible.  But I definitely notice it. 

The other main thing I can point out is some sluggishness when resizing the
browser window and having it resize/relayout the Flex app.  But it's hard
to tell how much of that is the browser and how much is Flex.



On 7/20/06, Matt
Chotin < [EMAIL PROTECTED] > wrote:













Can you provide a little
more detail on the performance areas that are hurting you?  If there's a
sample that demonstrates the speed issue it may be something we can look at.

 

Matt

 









From: flexcoders@yahoogroups.com
[mailto:
flexcoders@yahoogroups.com ] On Behalf Of
Pan Troglodytes
Sent: Wednesday, July 19, 2006
10:49 PM
To: flexcoders@yahoogroups.com

Subject: Re: [flexcoders] So? What
are folks here actually building...?



 







Well, since I have never
programmed in ActionScript at all, my projects have served a dual purpose -
functional and educational.  In other words, some of the software may
never see the light of day but that's okay - at least it taught me how to build
in Flex. 

My most "real" application has been an ad-hoc query builder.  We
have some financial reporting that it broken down into various fields: branch,
quarter, period, that kind of thing.  So I gave each field an accordion
pane and filled it with the values for that field.  Then I let the user
drag-n-drop the values for each field into another List, arranging them
hierarchically however they want.  This then feeds a sql statement that
uses group by and rollup to get all the data both on the detail level and
summarized by each parent level. 

I then feed that into a DataGrid that has many custom renderers.  The main
powerhouse is the "tree" renderer.  Basically, the first column
down the page looks like a tree of those key fields.  So if they chose to
report by quarter, then branch, then manager, it would look like: 

(view the following in a fixed width font)
 
Gross  Expenses   Profit 
Total
X 
X  X
 
1Q-2006
X 
X  X
   
Branch 1 
X 
X  X
 
Jane Doe   
X 
X  X
 
John Smith 
X 
X  X
   
Branch 2 
X 
X  X
 
Phil Johnson   
X 
X  X 
 
2Q-2006
X 
X  X 
    Branch
1 
X 
X  X 
 
Jane Doe   
X 
X  X 
 
John Smith 
X 
X  X
   
Branch 2 
X 
X  X
 
Phil Johnson   
X 
X  X

I put in Xs because I got tired of making up stuff.  But you get the
picture.  It's basically very pivot-table-ish.  It's really the
graphical touches that seal the deal.  There's icons and animations and
colors all over the place.  Not too much, but more than I could have coded
in the week or so I've been building it.  I'm an experienced Delphi user and have to say I'm really blown away by
Flex.  Delphi is RAD 

RE: [flexcoders] Updates for Flex 2.0?

2006-07-20 Thread Matt Chotin












We will certainly be considering coder
features for later releases.  I can’t promise what will be done when as
we need to focus on some other things first (like getting it out on Mac).

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sergey Kovalyov
Sent: Thursday, July 20, 2006 9:24
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Updates
for Flex 2.0?



 







Just
posted there. Sure, it's interesting to know, whether new
features of IDE will be implemented in next version only or they can
arrive with some kind on Flex 2.0 Update Pack. :)

On 7/20/06, Tom Chiverton 
wrote:
> On Thursday 20 July 2006 15:34, Sergey Kovalyov wrote:
> > Are there any plans regarding updates or add-ons for Flex 2.0 by
> > Adobe?
>
> I imagine so.
> Have you dropped your list in the box at http://adobe.com/go/wish
?
> --
> Tom Chiverton






__._,_.___





--
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: positioning custom drag item next to mouse cursor

2006-07-20 Thread Pan Troglodytes



Okay, I think I've got it.  For the question of finding the right way to tell if it was the right renderer, I kind of cheated.  I subclassed DataGrid and exposed mouseEventToItemRenderer() like so:
package{  import 
mx.controls.DataGrid;  public class CustomDataGrid extends DataGrid
  {  import mx.controls.listClasses.IListItemRenderer;
  import flash.events.MouseEvent;  public function mouseEventToItemRenderer2(event:MouseEvent):IListItemRenderer {
    return mouseEventToItemRenderer(event);  }
  }}Then I was able to use that in my function quite easily:
  import mx.controls.listClasses.IListItemRenderer;  var r:IListItemRenderer = dragInitiator.mouseEventToItemRenderer2
(e);  if (!(r == null) && !(r is DataGridItemRenderer)) {    // do dragging stuff here, etc.    
DragManager.doDrag(dragInitiator, ds, e, renderer,   r.measuredWidth-dragInitiator.contentMouseX, r.measuredHeight-dragInitiator.contentMouseY);Now I just need to control for the mouse button going down in a non-cell and being moved into a cell.  I'll post that code when I get it.
On 7/20/06, Pan Troglodytes <[EMAIL PROTECTED]> wrote:
Ok, I'm trying to make my dragged grid item look a certain way and am running into two problems.  I'm dragging a grid row to a list.  But I don't want the default behavior of the giant grid row.  I want my own custom drag widget and I want it to pop up with its bottom right point at the current cursor position.  I have yet to be able to accomplish the latter.  Second, I want the dragging to start only when the mouse is actually clicked on the grid row.  With the code I have, it starts it if you select an item and then click and drag down in the blank area of the grid.
Here is some source code that basically shows what I'm doing.  It is not my actual source code, because that has a ton of other irrelevant crap.  But it does replicate the experience pretty closely.  I have commented out the part where I'm trying to figure out what to set the X/Y to.  If you have some wild guesses, I'd suggest trying them before posting. ;)  Believe me, I've thought of about a dozen things (like subtracting the renderers width off the X - won't work cause it isn't set) and all have been dead ends.
http://www.adobe.com/2006/mxml" layout="vertical">
            
                                    
  -- Jason

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



  






__,_._,___



Re: [flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-20 Thread Pan Troglodytes



Well, I can certainly confirm what you're seeing.  It's not just a dead area at the top, it seems it's thinking you're still in the box when you're actually below it.  So it seems like there's something screwed up in its detection of where the mouse is that only comes out in popups.
I'd say you have a pretty solid test case to submit to http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
On 7/20/06, gotgoose09 <[EMAIL PROTECTED]> wrote:













  



I'm beginning to think that this is a bug.  Is there something I'm
missing here?
--- In flexcoders@yahoogroups.com, "gotgoose09" <[EMAIL PROTECTED]> wrote:

>
> In one of my projects, I create a new TitleWindow that has two Lists
in
> which can drag items from one to the other.  However, when I try
> dragging items from one to the other, there is a blank space at the
top
> of each list that I can not drop items into - I have to drop the items
> in the bottom of the list.  If I have the same two lists not in a
> TitleWindow, dragging and dropping works fine, with no "barrier."  You
> can view the problem at the link below, and recreate the problem with
> the steps below.
>
> 
http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> <
http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf>
>
> Hi, to recreate my problem:
>
> 1. Create a new project (basic)
>
> 2. In the application mxml file, paste this code in:
> 
> http://www.adobe.com/2006/mxml
"
> layout="vertical">
>  
>  
>  
>  
>  
>  
> dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>  
> dropEnabled="true" width="100" height="100" />
>  
> 
>
>
> 3. Create a new MXML Component, base it off of TitleWindow, call it
> MyPopup.mxml
>
> 4. Paste this code into that file:
> 
> http://www.adobe.com/2006/mxml
"
> layout="vertical">
>  
>  
> dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>  
> dropEnabled="true" width="100" height="100" />
>  
> 
>
> 5. Run the application.
>
> 6. Try dragging items from list to list on the main application. 
Then,
> click the button and try dragging and dropping, notice the difference
in
> where you can drop items.
>


  













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



  






__,_._,___



[flexcoders] Re: Icons in menu - not working

2006-07-20 Thread Devin Holloway
Thank you for the example file, Kelly. Turns out I was doing it
correctly, it's just that I was trying to get the icon to appear on
the root menuitem. As soon as I moved the icon to one of the sub
menuitems, it appeared with no problems.

My intentions were to have icons in the root menuitems, but I gather
this is not natively built-in and would require some sort of workaround?


--- In flexcoders@yahoogroups.com, "Devin Holloway" <[EMAIL PROTECTED]> wrote:
>
> I don't quite understand this solution. Mind showing a more complete
> code example? thanks
> 
> 
> --- In flexcoders@yahoogroups.com, "Kelly Birr"  wrote:
> >
> > I found my problem.  It appears that the menu cannot bind to static
> vars for
> > images.  I solved the problem by specifying 
> > { public const myMenuIcon:Class = GlobalIcons.MyCoolIcon; }  where
> > GlobalIcons.MyCoolIcon is declared exactly as below. Then pout the
local
> > name "myMenuIcon" in the @icon field of the xml.
> >  
> > - Kelly
> > 
> >   _  
> > 
> > From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
> > Behalf Of Kelly Birr
> > Sent: Wednesday, June 28, 2006 4:26 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Icons in menu - not working
> > 
> > 
> > I've been racking my brain trying to get icons in the menu bar.  I
> think I'm
> > doing exactly what the docs say but I cannot get any icon to render.
>  The
> > label and actions work perfectly but the icon does not show up.  The
> icon is
> > embedding properly as I can see it in the "icon" property of a
> button in the
> > same file.  I've also tried putting the path to the icon file in the
> xml, no
> > joy.
> >  
> > My Menu XML Is:
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> >  
> > My MXML is:
> > 
> >   
> >  
> > 
> >   > dataProvider="{menuXml}" showRoot="false" 
> >cornerRadius="3" itemClick="menuHandler(event)" labelField="@label"
> > iconField="@icon" />
> > 
> > 
> > I cannot find any samples anywhere with icons in the menu,  Is this
> still
> > supported?  Can anyone tell me what i'm doing wrong?  I am using
> Flex 2.0
> > RTM
> >  
> > - Kelly
> >
>






 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] positioning custom drag item next to mouse cursor

2006-07-20 Thread Pan Troglodytes



This does not work for the problem.  Unfortunately, when you have custom renderers, event.target is no longer always DataGridItemRenderer.  In the example, the dragged item will be a UITextField when you click on the text and drag it.  If you click and drag the area of the cell to the right after the text, it will be SpriteAsset.  Things get even more complicated in the real app, with it being Images sometimes, custom ItemRenderers other, etc.  I'd really like to avoid having to hardcode a giant if statement that only allows very specific target classes.
On 7/20/06, Scotty Scott <[EMAIL PROTECTED]> wrote:













  



Totally missed your second requirement somehow.Change yourif (row != null)toif ((event.target is DataGridItemRenderer) && !(
event.target.data is DataGridColumn))Scotty
On 7/20/06, Scotty Scott
 <[EMAIL PROTECTED]> wrote:
How about...
    if (event.buttonDown) {  var dragInitiator:DataGrid = DataGrid(event.currentTarget);  var ds:DragSource = new DragSource();
  var row:Object = 
dragInitiator.selectedItem;   if (row != null) {    var draggedItem:Object = {label:row.label};    var renderer:Canvas = new Canvas();    var lbl:Label = new Label();
    renderer.addChild(lbl);    lbl.text = row.label;       ds.addData([draggedItem], 'items');               // Convert the contentMouse locations to a negative number
            // and subtract 10 or so to offset the mouse pointer and the drag feedback image            var offsetx:int = -dragInitiator.contentMouseX - 15;            var offsety:int = -dragInitiator.contentMouseY


 - 15;                DragManager.doDrag(dragInitiator, ds, event, renderer,offsetx,offsety);  }   }                Scotty Scott

http://www.franciswscott.com
On 7/20/06, Pan Troglodytes <

[EMAIL PROTECTED]> wrote:













  



Ok, I'm trying to make my dragged grid item look a certain way and am running into two problems.  I'm dragging a grid row to a list.  But I don't want the default behavior of the giant grid row.  I want my own custom drag widget and I want it to pop up with its bottom right point at the current cursor position.  I have yet to be able to accomplish the latter.  Second, I want the dragging to start only when the mouse is actually clicked on the grid row.  With the code I have, it starts it if you select an item and then click and drag down in the blank area of the grid.
Here is some source code that basically shows what I'm doing.  It is not my actual source code, because that has a ton of other irrelevant crap.  But it does replicate the experience pretty closely.  I have commented out the part where I'm trying to figure out what to set the X/Y to.  If you have some wild guesses, I'd suggest trying them before posting. ;)  Believe me, I've thought of about a dozen things (like subtracting the renderers width off the X - won't work cause it isn't set) and all have been dead ends.
http://www.adobe.com/2006/mxml
" layout="vertical">
            
                                    
  -- Jason

  

















  













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



  






__,_._,___



Re: [flexcoders] positioning custom drag item next to mouse cursor

2006-07-20 Thread Pan Troglodytes



Thanks for your reply, but this is really the opposite of what I was looking for.  I want the mouse cursor to be at the *bottom right* of the drag feedback image.On 7/20/06, 
Scotty Scott <[EMAIL PROTECTED]> wrote:













  



How about...    if (event.buttonDown) {  var dragInitiator:DataGrid = DataGrid(event.currentTarget);
  var ds:DragSource = new DragSource();  var row:Object = 
dragInitiator.selectedItem;   if (row != null) {    var draggedItem:Object = {label:row.label};    var renderer:Canvas = new Canvas();    var lbl:Label = new Label();
    renderer.addChild(lbl);    lbl.text = row.label;       ds.addData([draggedItem], 'items');               // Convert the contentMouse locations to a negative number
            // and subtract 10 or so to offset the mouse pointer and the drag feedback image            var offsetx:int = -dragInitiator.contentMouseX - 15;            var offsety:int = -dragInitiator.contentMouseY

 - 15;                DragManager.doDrag(dragInitiator, ds, event, renderer,offsetx,offsety);  }   }                Scotty Scott
http://www.franciswscott.com
On 7/20/06, Pan Troglodytes <
[EMAIL PROTECTED]> wrote:













  



Ok, I'm trying to make my dragged grid item look a certain way and am running into two problems.  I'm dragging a grid row to a list.  But I don't want the default behavior of the giant grid row.  I want my own custom drag widget and I want it to pop up with its bottom right point at the current cursor position.  I have yet to be able to accomplish the latter.  Second, I want the dragging to start only when the mouse is actually clicked on the grid row.  With the code I have, it starts it if you select an item and then click and drag down in the blank area of the grid.
Here is some source code that basically shows what I'm doing.  It is not my actual source code, because that has a ton of other irrelevant crap.  But it does replicate the experience pretty closely.  I have commented out the part where I'm trying to figure out what to set the X/Y to.  If you have some wild guesses, I'd suggest trying them before posting. ;)  Believe me, I've thought of about a dozen things (like subtracting the renderers width off the X - won't work cause it isn't set) and all have been dead ends.
http://www.adobe.com/2006/mxml" layout="vertical">
            
                                    
  -- Jason

  















  













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



  






__,_._,___



Re: [flexcoders] Passing server data back to FileReference upload

2006-07-20 Thread hank williams



What I do is to tell the server about the file *before* I upload it. The server passes back a unique identifier which I pass in the upload URL as a parameter. When my server side code recieves the file it knows what to do with the file and how to file it.
I make the unique identifiers expire after a short period of time.RegardsHankOn 7/20/06, Luís Gustavo Sanabio <
[EMAIL PROTECTED]> wrote:


Hi...
 
   Is Anyone have a solution for this topic?
 
2006/6/5, Nathan Smith <[EMAIL PROTECTED]>:



I have the same question, can we get access to the HTTP response?

On 5/2/06, mark_judd <
[EMAIL PROTECTED]
> wrote:




Though I can get FileReference.upload() talking to my server to getfiles uploaded, what I'd like to do is get some sort of token returned
by the server that is the server-side identifier for that uploaded file.None of the event handlers seem to return any server-side information.I was hoping that (at least) the complete handler would allow me to
tap into the actual HTTP response so that I could pick up furtherinformation.Am I missing something in this API?  Or is there a better designpattern to use to get some server-side context back to the frontend?
--Flexcoders Mailing ListFAQ: 
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 Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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 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] Passing server data back to FileReference upload

2006-07-20 Thread Luís Gustavo Sanabio



Hi...
 
   Is Anyone have a solution for this topic?
 
2006/6/5, Nathan Smith <[EMAIL PROTECTED]>:


I have the same question, can we get access to the HTTP response?

On 5/2/06, mark_judd <[EMAIL PROTECTED]
> wrote:




Though I can get FileReference.upload() talking to my server to getfiles uploaded, what I'd like to do is get some sort of token returned
by the server that is the server-side identifier for that uploaded file.None of the event handlers seem to return any server-side information.I was hoping that (at least) the complete handler would allow me to
tap into the actual HTTP response so that I could pick up furtherinformation.Am I missing something in this API?  Or is there a better designpattern to use to get some server-side context back to the frontend?
--Flexcoders Mailing ListFAQ: 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 Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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 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: Detect if Object exists

2006-07-20 Thread Nick Collins



I tried something very similar to that, but got the following error, as I did this time:1118: Implicit coercion of a value with static type flash.display:DisplayObject to a possibly unrelated type mx.core:Container.
On 7/20/06, fwscott <[EMAIL PROTECTED]> wrote:













  



Hey Nick,

You could assign a name to your tab and then use
this.windowTabs.getChildByName(newtab.name);

Something like

private function createTab(createTabName:String):void
  {
var newid:String = 'userTab' +
this.masterList.selectedItem.ContribNum;
var selectTab:Container = this.windowTabs.getChildByName(newid);
if(!selectTab) {
 var newVbox:VBox = new VBox();
 var newHbox:HBox = new HBox();
 var newTab:Canvas = new Canvas();
 var newSpacer:Spacer = new Spacer();
 var tabCloseBtn:Button = new Button();
 
 // create button to close tab
 tabCloseBtn.label = "Close Tab";
 tabCloseBtn.addEventListener
(MouseEvent.CLICK,myClickListener);
 
 // create spacer to position close button
 newSpacer.percentWidth = 100;
 
 // create box layout controls
 newHbox.percentWidth = 100;
 newHbox.addChild(newSpacer);
 newHbox.addChild(tabCloseBtn);
 newVbox.addChild(newHbox);
 newVbox.addChild
(getTithesComponent(this.masterList.selectedItem.ContribNum));
 
 // create tab
 newTab.label = createTabName;
 newTab.id = newid;
 newTab.name = newid;
   
 newTab.addChild(newVbox);
 
 this.windowTabs.addChild(newTab);
 this.windowTabs.selectedChild = newTab;
 }
  
 else
 this.windowTabs.selectedChild = selectTab;
   }

Scotty
http://www.franciswscott.com


--- In flexcoders@yahoogroups.com, "Nick Collins" <[EMAIL PROTECTED]> wrote:

>
> I've got a datagrid with a list of people, that when you double click on
> one, it creates a new tab with that person's data into a
TabNavigator. I'm
> trying to get it so it will only open one instance of a tab for each
person,
> and if you try to open a person again, it will simply select their
tab that
> already exists. Sounds pretty straightforward, right?
> 
> Here's what I've got, when you click the button for their data or double
> click their name, an event is launched which then calls this function,
> createTab:
> 
> private function createTab(createTabName:String):void
> {
> var newVbox:VBox = new VBox();
> var newHbox:HBox = new HBox();
> var newTab:Canvas = new Canvas();
> var newSpacer:Spacer = new Spacer();
> var tabCloseBtn:Button = new Button();
> 
> // create button to close tab
> tabCloseBtn.label = "Close Tab";
> tabCloseBtn.addEventListener (MouseEvent.CLICK,
> myClickListener);
> 
> // create spacer to position close button
> newSpacer.percentWidth = 100;
> 
> // create box layout controls
> newHbox.percentWidth = 100;
> newHbox.addChild(newSpacer);
> newHbox.addChild(tabCloseBtn);
> newVbox.addChild(newHbox);
> newVbox.addChild (getTithesComponent(
> this.masterList.selectedItem.ContribNum));
> 
> // create tab
> newTab.label = createTabName;
> newTab.id = 'userTab' +
> this.masterList.selectedItem.ContribNum ;
> newTab.addChild(newVbox);
> 
> var selectTab:ObjectName = newTab.id;
> 
> if (!selectTab) {
> this.windowTabs.selectedChild = selectTab;
> } else {
> this.windowTabs.addChild(newTab);
> this.windowTabs.selectedChild = newTab;
> }
> 
> }
> 
> Now from the docs I've found, it seems like doing an if statement
with the
> condition of ! objectID should be checking if that id exists, right? for
> some reason it always returns false, even when a new canvas in the
> TabNavigator stack with that id value already exists.
> 
> Any ideas how I can accurately detect if the object exists?
>


  















__._,_.___





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

[flexcoders] Re: [Flex2] FlexBuilder throws "Removing compiler problem markers"

2006-07-20 Thread justinmschell
I also experience this error frequently, it is very annoying.  I 
just reinstalled and the first time I saved a file, I received the 
error.

Justin Schell


--- In flexcoders@yahoogroups.com, Thomas Rühl -akitogo- 
<[EMAIL PROTECTED]> wrote:
>
> 
> Hello list,
> 
> the attached error occurs randomly during saving files - mxml or 
as.
> Even on clean/freshly created projects. Restarting Eclipse doesn't 
help 
> on this.
> 
> Is this already known?
> 
> Cheers, Thomas
> 
> 
> 
>   
>   Thomas Rühl
>   Design, Programming & Concepts
>   
>   akitogo OHG
>   Hanauer Landstrasse 188
>   60314 Frankfurt
>   
>   Telefon +49 (0) 69 800 69 445
>   Fax +49 (0) 69 800 69 449
>   Mobil   +49 (0) 179 750 75 87
>   E-Mail  [EMAIL PROTECTED]
>   Web http://www.akitogo.com
>   
> 
>







 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/
 




[flexcoders] Re: Detect if Object exists

2006-07-20 Thread fwscott
Hey Nick,

You could assign a name to your tab and then use
this.windowTabs.getChildByName(newtab.name);

Something like

private function createTab(createTabName:String):void
  {
var newid:String = 'userTab' +
this.masterList.selectedItem.ContribNum;
var selectTab:Container = this.windowTabs.getChildByName(newid);
if(!selectTab) {
 var newVbox:VBox = new VBox();
 var newHbox:HBox = new HBox();
 var newTab:Canvas = new Canvas();
 var newSpacer:Spacer = new Spacer();
 var tabCloseBtn:Button = new Button();
 
 // create button to close tab
 tabCloseBtn.label = "Close Tab";
 tabCloseBtn.addEventListener
(MouseEvent.CLICK,myClickListener);
 
 // create spacer to position close button
 newSpacer.percentWidth = 100;
 
 // create box layout controls
 newHbox.percentWidth = 100;
 newHbox.addChild(newSpacer);
 newHbox.addChild(tabCloseBtn);
 newVbox.addChild(newHbox);
 newVbox.addChild
(getTithesComponent(this.masterList.selectedItem.ContribNum));
 
 // create tab
 newTab.label = createTabName;
 newTab.id = newid;
 newTab.name = newid;
   
 newTab.addChild(newVbox);
 
 this.windowTabs.addChild(newTab);
 this.windowTabs.selectedChild = newTab;
 }
  
 else
 this.windowTabs.selectedChild = selectTab;
   }

Scotty
http://www.franciswscott.com


--- In flexcoders@yahoogroups.com, "Nick Collins" <[EMAIL PROTECTED]> wrote:
>
> I've got a datagrid with a list of people, that when you double click on
> one, it creates a new tab with that person's data into a
TabNavigator. I'm
> trying to get it so it will only open one instance of a tab for each
person,
> and if you try to open a person again, it will simply select their
tab that
> already exists. Sounds pretty straightforward, right?
> 
> Here's what I've got, when you click the button for their data or double
> click their name, an event is launched which then calls this function,
> createTab:
> 
> private function createTab(createTabName:String):void
> {
> var newVbox:VBox = new VBox();
> var newHbox:HBox = new HBox();
> var newTab:Canvas = new Canvas();
> var newSpacer:Spacer = new Spacer();
> var tabCloseBtn:Button = new Button();
> 
> // create button to close tab
> tabCloseBtn.label = "Close Tab";
> tabCloseBtn.addEventListener (MouseEvent.CLICK,
> myClickListener);
> 
> // create spacer to position close button
> newSpacer.percentWidth = 100;
> 
> // create box layout controls
> newHbox.percentWidth = 100;
> newHbox.addChild(newSpacer);
> newHbox.addChild(tabCloseBtn);
> newVbox.addChild(newHbox);
> newVbox.addChild (getTithesComponent(
> this.masterList.selectedItem.ContribNum));
> 
> // create tab
> newTab.label = createTabName;
> newTab.id = 'userTab' +
> this.masterList.selectedItem.ContribNum ;
> newTab.addChild(newVbox);
> 
> var selectTab:ObjectName = newTab.id;
> 
> if (!selectTab) {
> this.windowTabs.selectedChild = selectTab;
> } else {
> this.windowTabs.addChild(newTab);
> this.windowTabs.selectedChild = newTab;
> }
> 
> }
> 
> Now from the docs I've found, it seems like doing an if statement
with the
> condition of ! objectID should be checking if that id exists, right? for
> some reason it always returns false, even when a new canvas in the
> TabNavigator stack with that id value already exists.
> 
> Any ideas how I can accurately detect if the object exists?
>






 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/
 




[flexcoders] Weblogic webservice access problem

2006-07-20 Thread kifene
So, I've downloaded the free Flex SDK and tried my hands at Flex
programming by starting with a weblogic webservice client implementation.
Keep getting this error:
"[RPC Fault faultString="Security error accessing url"
faultCode="Channel.Security.Error" faultDetail="Unable to load WSDL.
If currently online, please verify the URI and/or format of the WSDL..."

The wsdl url is good, have been tested from Java prog and browser.

Weblogic is running locally on my machine, from within an Eclipse
instance.

I've tried an all permissive crossdomain.xml in all folders, but it
doesn't seem to work.

Also tried  config entry in the flex-config, but I
don't think I've got it right, as the flex compiler choke on it.

My Flex (mxml?) code for the webservice definition is something like this:
http://somedomain/ws/MyWebSvc?WSDL"; 
showBusyCursor="true">

I used the same technique to make another prog that talked to one of
the sample Flex webservices available and it worked just fine, so just
as the message says, it's some sort of security error here on my pc.

Thanks for your comments in advance!





 Yahoo! Groups Sponsor ~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] Re: Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09
I'm beginning to think that this is a bug.  Is there something I'm
missing here?
--- In flexcoders@yahoogroups.com, "gotgoose09" <[EMAIL PROTECTED]> wrote:
>
> In one of my projects, I create a new TitleWindow that has two Lists
in
> which can drag items from one to the other.  However, when I try
> dragging items from one to the other, there is a blank space at the
top
> of each list that I can not drop items into - I have to drop the items
> in the bottom of the list.  If I have the same two lists not in a
> TitleWindow, dragging and dropping works fine, with no "barrier."  You
> can view the problem at the link below, and recreate the problem with
> the steps below.
>
> http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> 
>
> Hi, to recreate my problem:
>
> 1. Create a new project (basic)
>
> 2. In the application mxml file, paste this code in:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>  
>  
>  
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
>
>
> 3. Create a new MXML Component, base it off of TitleWindow, call it
> MyPopup.mxml
>
> 4. Paste this code into that file:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
>
> 5. Run the application.
>
> 6. Try dragging items from list to list on the main application. 
Then,
> click the button and try dragging and dropping, notice the difference
in
> where you can drop items.
>







 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] List and ViewStack Problem

2006-07-20 Thread Scotty Scott



You could also allow binding to take care of everything for you, if you are trying to have the list display the titles of your panels in the ViewStack.Something like

Hope this helps,   Scotty Scott   http://www.franciswscott.comOn 7/20/06, 
s_hernandez01 <[EMAIL PROTECTED]> wrote:













  



Hey Flexers

I am trying to use the ViewStack to switch Panels from a List
Component, but I am having no luck because I get an error saying "Call
to possibly undefined method ItemClickEvent".  Could someone help me,
please?


   
horizontalAlign="center" verticalAlign="middle">


itemClick="panelVS.selectedIndex=ItemClickEvent(event).index">
   
  
	   
	   
  
   










Thanks

Sal


  















__._,_.___





--
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] MXMLC and Cairngorm

2006-07-20 Thread Dimitrios Gianninas





oh :) sorry was thinking u were using 
2.0.
 
maybe someone else can help you then.
 
Dimitrios 
Gianninas
RIA Developer
Optimal 
Payments Inc.
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Mehdi, 
AghaSent: Thursday, July 20, 2006 8:36 PMTo: 
'flexcoders@yahoogroups.com'Subject: RE: [flexcoders] MXMLC and 
Cairngorm




You mean there's no 
need to specify the manifest file in the flex-config.xml? I'm still using Flex 
1.5 and cairngorm 0.99


Agha 
Mehdi 
IDT - eBusiness 
Program Manager 





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Dimitrios 
GianninasSent: Thursday, July 
20, 2006 5:28 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] MXMLC and 
Cairngorm

No need to 
specify that namespace/manifest in the flex-config.xml. It should work just fine 
without it, I use the MXMLC myself.


Dimitrios 
Gianninas
RIA Developer
Optimal 
Payments Inc.






From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Mehdi, 
AghaSent: Thursday, July 
20, 2006 7:37 PMTo: 
'flexcoders@yahoogroups.com'Subject: [flexcoders] MXMLC and 
Cairngorm

Hi 
All,
I am trying to 
compile my application with mxmlc.exe. It throws error that it 
can't find 
that http://www.iterationtwo.com/cairngorm has been associated 
with c! omponent manifest. The application is running in production just fine 
but it doesn't like it when I try to compile it using 
mxmlc.exe.
Any 
thoughts?
Thanks
Agha 
Mehdi
IDT - eBusiness 
Program Manager
Work: 
408.284.8239
Cell  : 
510.493.0491
Fax  :  
408.284.2766

  
  

  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] MXMLC and Cairngorm

2006-07-20 Thread Mehdi, Agha










You mean there's no need to specify
the manifest file in the flex-config.xml? I'm still using Flex 1.5 and
cairngorm 0.99

 



Agha Mehdi 
IDT - eBusiness Program Manager 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dimitrios Gianninas
Sent: Thursday, July 20, 2006 5:28
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] MXMLC
and Cairngorm



 

No need to
specify that namespace/manifest in the flex-config.xml. It should work just
fine without it, I use the MXMLC myself.



 



Dimitrios
Gianninas

RIA Developer

Optimal Payments
Inc.



 



 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mehdi,
 Agha
Sent: Thursday, July 20, 2006 7:37
PM
To: 'flexcoders@yahoogroups.com'
Subject: [flexcoders] MXMLC and
Cairngorm



Hi All,

I am trying to compile my application with
mxmlc.exe. It throws error that it can't
find that http://www.iterationtwo.com/cairngorm has been associated with c! omponent manifest. The application is
running in production just fine but it doesn't like it when I try to compile it
using mxmlc.exe.

Any thoughts?

Thanks

Agha Mehdi

IDT - eBusiness Program Manager

Work: 408.284.8239

Cell  : 510.493.0491

Fax  :  408.284.2766




 
  
  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.



  






__,_._,___





[flexcoders] Detect if Object exists

2006-07-20 Thread Nick Collins



I've got a datagrid with a list of people, that when you double click on one, it creates a new tab with that person's data into a TabNavigator. I'm trying to get it so it will only open one instance of a tab for each person, and if you try to open a person again, it will simply select their tab that already exists. Sounds pretty straightforward, right?
Here's what I've got, when you click the button for their data or double click their name, an event is launched which then calls this function, createTab:private function createTab(createTabName:String):void
            {                var newVbox:VBox = new VBox();                var newHbox:HBox = new HBox();                var newTab:Canvas = new Canvas();                var newSpacer:Spacer = new Spacer();
                var tabCloseBtn:Button = new Button();                                // create button to close tab                tabCloseBtn.label = "Close Tab";                tabCloseBtn.addEventListener

(MouseEvent.CLICK, myClickListener);                                    // create spacer to position close button                            newSpacer.percentWidth = 100;                                // create box layout controls
                newHbox.percentWidth = 100;                newHbox.addChild(newSpacer);                newHbox.addChild(tabCloseBtn);                newVbox.addChild(newHbox);                newVbox.addChild

(getTithesComponent(this.masterList.selectedItem.ContribNum));                                // create tab                newTab.label = createTabName;                newTab.id = 'userTab' + this.masterList.selectedItem.ContribNum

;                newTab.addChild(newVbox);                                var selectTab:ObjectName = newTab.id;                                    if (!selectTab) {                    this.windowTabs.selectedChild

 = selectTab;                } else {                    this.windowTabs.addChild(newTab);                    this.windowTabs.selectedChild = newTab;                }                            }

Now from the docs I've found, it seems like doing an if statement with the condition of ! objectID should be checking if that id exists, right? for some reason it always returns false, even when a new canvas in the TabNavigator stack with that id value already exists.
Any ideas how I can accurately detect if the object exists?


__._,_.___





--
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] positioning custom drag item next to mouse cursor

2006-07-20 Thread Scotty Scott



Totally missed your second requirement somehow.Change yourif (row != null)toif ((event.target is DataGridItemRenderer) && !(
event.target.data is DataGridColumn))ScottyOn 7/20/06, Scotty Scott
 <[EMAIL PROTECTED]> wrote:How about...
    if (event.buttonDown) {  var dragInitiator:DataGrid = DataGrid(event.currentTarget);  var ds:DragSource = new DragSource();
  var row:Object = 
dragInitiator.selectedItem;   if (row != null) {    var draggedItem:Object = {label:row.label};    var renderer:Canvas = new Canvas();    var lbl:Label = new Label();
    renderer.addChild(lbl);    lbl.text = row.label;       ds.addData([draggedItem], 'items');               // Convert the contentMouse locations to a negative number
            // and subtract 10 or so to offset the mouse pointer and the drag feedback image            var offsetx:int = -dragInitiator.contentMouseX - 15;            var offsety:int = -dragInitiator.contentMouseY

 - 15;                DragManager.doDrag(dragInitiator, ds, event, renderer,offsetx,offsety);  }   }                Scotty Scott
http://www.franciswscott.com
On 7/20/06, Pan Troglodytes <
[EMAIL PROTECTED]> wrote:













  



Ok, I'm trying to make my dragged grid item look a certain way and am running into two problems.  I'm dragging a grid row to a list.  But I don't want the default behavior of the giant grid row.  I want my own custom drag widget and I want it to pop up with its bottom right point at the current cursor position.  I have yet to be able to accomplish the latter.  Second, I want the dragging to start only when the mouse is actually clicked on the grid row.  With the code I have, it starts it if you select an item and then click and drag down in the blank area of the grid.
Here is some source code that basically shows what I'm doing.  It is not my actual source code, because that has a ton of other irrelevant crap.  But it does replicate the experience pretty closely.  I have commented out the part where I'm trying to figure out what to set the X/Y to.  If you have some wild guesses, I'd suggest trying them before posting. ;)  Believe me, I've thought of about a dozen things (like subtracting the renderers width off the X - won't work cause it isn't set) and all have been dead ends.
http://www.adobe.com/2006/mxml" layout="vertical">
            
                                    
  -- 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.



  






__,_._,___



[flexcoders] Single Instance Multi-tenant Architecture in Flex 2

2006-07-20 Thread JimForJim
Hi,

My company is looking at developing a Single Instance Multi-Tenant 
application that we would host at an ISP.  We're anticipating that 
there will be up to 50 clients, each with about 10 concurrent users on 
average.  Each client would be able to define their own custom data 
entry fields (text, lists, etc.), manage their own users, and apply 
styles.  There would also be considerable personalization of a couple 
of dashboards by individual users also.  We're probably looking at 
using Microsoft .NET web services and a SQL Server 2005 backend.  Has 
anybody else been working on similar SIMT applications?  Do you have 
some suggestions as to best practices, lessons learned, 
security/encryption, etc.?

Thanks very much in advance,

Jim






 Yahoo! Groups Sponsor ~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] MXMLC and Cairngorm

2006-07-20 Thread Dimitrios Gianninas





No need to specify that namespace/manifest in the 
flex-config.xml. It should work just fine without it, I use the MXMLC 
myself.
 
Dimitrios 
Gianninas
RIA Developer
Optimal 
Payments Inc.
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Mehdi, 
AghaSent: Thursday, July 20, 2006 7:37 PMTo: 
'flexcoders@yahoogroups.com'Subject: [flexcoders] MXMLC and 
Cairngorm



Hi All,
I am trying to 
compile my application with mxmlc.exe. 
It throws error that it 
can't find 
that http://www.iterationtwo.com/cairngorm has 
been associated with c! omponent manifest. The application is running in production just fine but it 
doesn't like it when I try to compile it using 
mxmlc.exe.
Any thoughts?
Thanks
Agha 
Mehdi
IDT - eBusiness Program 
Manager
Work: 
408.284.8239
Cell  : 
510.493.0491
Fax  :  
408.284.2766


 
  
  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.



  






__,_._,___



[flexcoders] Slider Thumb Width and Height

2006-07-20 Thread dirtmediaworld



Can anyone lead me in the direction to changing the width and height of the slider thumb without reskinning it? I tried following Manish's suggestion in this post  and extended the mx.skins.halo.SliderThumbSkin and just set the width and height values in the constructor:package com.mydomain.view.skins{import mx.skins.halo.SliderThumbSkin;/** *  The skin for all the states of a thumb in a Slider. */public class SliderThumbSkinLarge extends SliderThumbSkin{        /**     *  @private     *  Constructor.     */    public function SliderThumbSkinLarge()    {        super();        this.width=30;        this.height=30;    }}}My slider mxml looks like this:thumbDownSkin="com.mydomain.view.skins.SliderThumbSkinLarge" thumbDisabledSkin="com.mydomain.view.skins.SliderThumbSkinLarge"thumbUpSkin="com.mydomain.view.skins.SliderThumbSkinLarge" thumbOverSkin="com.mydomain.view.skins.SliderThumbSkinLarge"tickInterval="1" snapInterval="1" ...etc/>but I can't seem to get it to work. Any help with my skinning implementation or a solution that avoids skinning is much appreciated.-Dustin

__._,_.___





--
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] Sending Arrays of VO's from Flex to CF

2006-07-20 Thread briggzaytravel
Hi All,

I've been working on a particularly sticky wicket for many hours 
now.  

I'm sending multiple .AS valueObjects from Flex to a ColdFusion CFC, 
and can't seem to get it to work. My array is set and passed 
properly to the CFC, but once there, i can't seem to get it read the 
object - and can't even get it to pass the object back to FLEX 
(notice that in the code below i'm merely passing the object 
directly back).  I'm probably missing something obvious:  (Thanks 
for any assistance!)

MXML:

var accessKeys:Array = new Array

//LOOP THROUGH ALL ACCESSKEYS

for (var i:int = 0; i < actualAccess.length; i++)
{

//ASSIGN A NEW USER FOR EACH ACCESS KEY
var o:OfferInstance = new OfferInstance;

o.PersonID=accessKey[i].personID;
   
accessKeysOutgoing.push(o)
}

//CALL THE CFC
this.offerInstanceDataManager.saveAll(accessKeys);



.CFC:












OfferInstance.as:

package com.cfgenerated.models
{

[RemoteClass
(alias="btapp3.components.cfgenerated.OfferInstance.OfferInstanceBean
")]

[Bindable]
public class OfferInstance
{

public var personID:Number = 0;

public function OfferInstance()

{

}

}

}





 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] Looking for Free SWF Projector

2006-07-20 Thread Shade Gmail
Awesome, guys, thanks for the tips! I'll check them out.

Cheers!

  Pedro.

On 7/20/06, hank williams <[EMAIL PROTECTED]> wrote:
> Edwin is working on flash 9, but it is crashing right now.
> You should join the mailing list at haxe.org. Edwin (the author of 
> screenweaver) and Nicolas canasse have created a new screenweaver called 
> screenweaver swhx. Flash 9 support as soon as he fixes the bug. Its quite 
> cool. All of the stuff you do that communicates with the local OS is done in 
> a language called haxe which is very similar to actionscript, but a good bit 
> more powerful. Nicolas is the guy that did MTASC. It is a great project that 
> will, I think, ultimately beat things like zinc, once they get all the kinks 
> out.
>
> Regards
> Hank
>
> On 7/20/06, JesterXL <[EMAIL PROTECTED]> wrote:
> > Rock and a hard place.
> >
> > Screenweaver is open source, I believe supports Flash Player 8 and below:
> > http://www.osflash.org/screenweaver
> >
> > Zinc 2.5 supports Flex 2, but is not open 
> > source.http://www.multidmedia.com/software/zinc/
> >
> >


 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] positioning custom drag item next to mouse cursor

2006-07-20 Thread Scotty Scott



How about...    if (event.buttonDown) {  var dragInitiator:DataGrid = DataGrid(event.currentTarget);  var ds:DragSource = new DragSource();  var row:Object = 
dragInitiator.selectedItem;   if (row != null) {    var draggedItem:Object = {label:row.label};    var renderer:Canvas = new Canvas();    var lbl:Label = new Label();
    renderer.addChild(lbl);    lbl.text = row.label;       ds.addData([draggedItem], 'items');               // Convert the contentMouse locations to a negative number
            // and subtract 10 or so to offset the mouse pointer and the drag feedback image            var offsetx:int = -dragInitiator.contentMouseX - 15;            var offsety:int = -dragInitiator.contentMouseY
 - 15;                DragManager.doDrag(dragInitiator, ds, event, renderer,offsetx,offsety);  }   }                Scotty Scotthttp://www.franciswscott.com
On 7/20/06, Pan Troglodytes <[EMAIL PROTECTED]> wrote:













  



Ok, I'm trying to make my dragged grid item look a certain way and am running into two problems.  I'm dragging a grid row to a list.  But I don't want the default behavior of the giant grid row.  I want my own custom drag widget and I want it to pop up with its bottom right point at the current cursor position.  I have yet to be able to accomplish the latter.  Second, I want the dragging to start only when the mouse is actually clicked on the grid row.  With the code I have, it starts it if you select an item and then click and drag down in the blank area of the grid.
Here is some source code that basically shows what I'm doing.  It is not my actual source code, because that has a ton of other irrelevant crap.  But it does replicate the experience pretty closely.  I have commented out the part where I'm trying to figure out what to set the X/Y to.  If you have some wild guesses, I'd suggest trying them before posting. ;)  Believe me, I've thought of about a dozen things (like subtracting the renderers width off the X - won't work cause it isn't set) and all have been dead ends.
http://www.adobe.com/2006/mxml" layout="vertical">
            
                                    
  -- 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.



  






__,_._,___



[flexcoders] Examples of coding an Equalizer Control in Flex 2

2006-07-20 Thread User ABC



Does anyone experience this?     Thank you. 
		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.



  






__,_._,___



[flexcoders] MXMLC and Cairngorm

2006-07-20 Thread Mehdi, Agha
Title: MXMLC and Cairngorm







Hi All,

I am trying to compile my application with mxmlc.exe. It throws error that it can't find that http://www.iterationtwo.com/cairngorm has been associated with component manifest. The application is running in production just fine but it doesn't like it when I try to compile it using mxmlc.exe.

Any thoughts?

Thanks

Agha Mehdi

IDT - eBusiness Program Manager

Work: 408.284.8239

Cell  : 510.493.0491

Fax  :  408.284.2766




__._,_.___





--
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] ecr flexbuilder: F3 shows list of implementations in case of interface

2006-07-20 Thread Ralf Bokelberg
Quickly navigating the code is very important for me. That's why i
love the F3 key to jump to the source of a class. If the class is an
interface, jumping to the source of the interface is most probably not
what i want. Instead of this it would be nice, if FlexBuilder could
show me a selection of classes, which implement this interface.
Choosing one of this classes jumps to the source eventually. Sounds
like a plan, doesn't it?

Cheers,
Ralf.

-- 
Ralf Bokelberg <[EMAIL PROTECTED]>
Flex & Flash Consultant based in Cologne/Germany


 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/
 





[flexcoders] Re: So? What are folks here actually building...?

2006-07-20 Thread Mike_Robinson_98
An ambitious project to convert a client/server order entry/inventory
management/purchasing system for a stainless steel distributor with
offices in several countries. This may not be the best project to use
as an introduction to Flex but it is certainly not boring. I am coming
from a j2ee background with a fair amount of experience in developing
web application using that architecture. However, for the client side
of things I do find Flex pretty daunting.

The most frustrating part is that I have a fairly complex data
structure and am struggling with trying to integrate that into the
flex UI. In particular, the objects I need to display have deep graphs
and I am finding it difficult to display (but mostly manipulate) the
data in a DataGrid. I'm sure this will all become clearer as I get a
greater knowledge of Flex but right now it is frustrating. 

However, I am upbeat about the promise of Flex and feel it does
provide the means to create innovative and fun to use web applications.

-Mike

 
--- In flexcoders@yahoogroups.com, "David Mendels" <[EMAIL PROTECTED]> wrote:
>
> 
> Hello,
>  
> It has been less than a month since we shipped Flex, but I know many
> folks on this list had projects they started back in the public beta
> time.  I know in many cases you may not be able to talk about what
> projects you are working on, but for those who can I'd love to get a
> view onto what folks are building.  We spent a long time (almost two
> years) on all the parts of the Flex 2 product line (and the Flash Player
> 9) and it is very cool to see the traffic here, the emergence of third
> party conferences like www.flexseminar.com, the books coming out on
> Flex, the 60K plus downloads of the IDE in the public beta, but we'd
> love to get a sense of what real applications people are starting to
> build.  The team is already working on plans for mid-term and longer
> term upgrades to Flex, and it helps us to really understand what people
> are building.  So, if you are able to talk about what you are building
> please do share--I think it would be very interesting for the community
> and very valuable for us on the Flex team at Adobe.
>  
> --David
> Adobe
>







 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] Binding from Actionscript

2006-07-20 Thread Ralf Bokelberg
PS. It only works, when i use the other binding instead


On 7/21/06, Ralf Bokelberg <[EMAIL PROTECTED]> wrote:
> Hi Alberto,
>
> how are you doing?
> I'm not sure, why it works in the first place. I can't get it to run
> it with the following code.
> What is different in your code?
>
>  snip 
> 
> http://www.adobe.com/2006/mxml"; layout="absolute">
>
> 
> 
> 
>
> 
>
>  source="model.podManager.getPod( mypodId ).destroy"
> destination="handleDestroy" />
>
>  />
>
> 
>
>  snip 
> package
> {
> public class Model
> {
>
> [Bindable]
> public var podManager : PodManager;
>
> public function Model()
> {
> podManager = new PodManager();
> }
>
> private static var instance : Model;
>
> public static function getInstance() : Model
> {
> if( instance == null ) instance = new Model();
> return instance;
> }
> }
> }
>  snip 
> package
> {
> import mx.collections.ArrayCollection;
> import flash.events.Event;
> import flash.events.EventDispatcher;
>
> public class PodManager extends EventDispatcher
> {
>
> private var pods : ArrayCollection;
>
> public function PodManager()
> {
> pods = new ArrayCollection();
> pods.addItem( new Pod("pod0"));
> pods.addItem( new Pod("pod1"));
> pods.addItem( new Pod("pod2"));
> pods.addItem( new Pod("pod3"));
> }
>
> public function getPod( podId : int ) : Pod
> {
> return pods.getItemAt( podId ) as Pod;
> }
> }
> }
>  snip 
> package
> {
> public class Pod
> {
>
> public var name : String;
>
> [Bindable]
> public var destroy : Boolean;
>
> public function Pod( name : String )
> {
> this.name = name;
> }
> }
> }
>  snip 
>
> Cheers,
> Ralf
>
>
> On 7/18/06, Alberto Albericio <[EMAIL PROTECTED]> wrote:
> > Hello all,
> >
> > I have an MXML component that has an mxml binding to a setter function
> > like this:
> >
> >  > destination="handleDestroy" />
> >
> > and a setter function defined :
> >
> > private function set handleDestroy( destroy:Boolean ): void {
> >   // some code
> > }
> >
> > This works 100% but I need to create this binding in an actionscript
> > component; I have tried the following:
> >
> > BindingUtils.bindSetter( handleDestroy, model.podManager.getPod(
> > this.mypodId ), "destroy", false );
> >
> > and having the same setter function. It complains about the setter
> > function. If I remove the "set" keyword (on the setter function) it
> > compiles but does nothing ( the binding doesnt seem to enter the function )
> >
> > How can I create this binding from actionscript? Can someone give a
> > working example on how to create a binding to a setter function in
> > actionscript? It should be easy but I have found no documentation at all
> > on this. I need the help of an expert.
> >
> > Thank you very much.
> >
> > Alberto
> >
> >
> >
> >
> >
> > --
> > 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
> >
> >
> >
> >
> >
> >
> >
>
>
> --
> Ralf Bokelberg <[EMAIL PROTECTED]>
> Flex & Flash Consultant based in Cologne/Germany
>


-- 
Ralf Bokelberg <[EMAIL PROTECTED]>
Flex & Flash Consultant based in Cologne/Germany


 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] List and ViewStack Problem

2006-07-20 Thread Hilary Bridel



Hi Sal,
You are calling a method/function that does not exist.
Try replacing:
itemClick="panelVS.selectedIndex=ItemClickEvent(event).index
 
 with:
 
itemClick="panelVS.selectedIndex=myList.selectedIndex
 
that should work...
 
Regards
 
Hilary
 
-- 
On 7/21/06, s_hernandez01 <[EMAIL PROTECTED]> wrote:
Hey FlexersI am trying to use the ViewStack to switch Panels from a ListComponent, but I am having no luck because I get an error saying "Call
to possibly undefined method ItemClickEvent".  Could someone help me,please?  horizontalAlign="center" verticalAlign="middle">itemClick="panelVS.selectedIndex=ItemClickEvent
(event).index">    
 
   ThanksSal
 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/
-- 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.



  






__,_._,___



Re: [flexcoders] Binding from Actionscript

2006-07-20 Thread Ralf Bokelberg
Hi Alberto,

how are you doing?
I'm not sure, why it works in the first place. I can't get it to run
it with the following code.
What is different in your code?

 snip 

http://www.adobe.com/2006/mxml"; layout="absolute">







  

 



 snip 
package
{
public class Model
{

[Bindable]
public var podManager : PodManager;

public function Model()
{
podManager = new PodManager();
}

private static var instance : Model;

public static function getInstance() : Model
{
if( instance == null ) instance = new Model();
return instance;
}
}
}
 snip 
package
{
import mx.collections.ArrayCollection;
import flash.events.Event;
import flash.events.EventDispatcher;

public class PodManager extends EventDispatcher
{

private var pods : ArrayCollection;

public function PodManager()
{
pods = new ArrayCollection();
pods.addItem( new Pod("pod0"));
pods.addItem( new Pod("pod1"));
pods.addItem( new Pod("pod2"));
pods.addItem( new Pod("pod3"));
}

public function getPod( podId : int ) : Pod
{
return pods.getItemAt( podId ) as Pod;
}
}
}
 snip 
package
{
public class Pod
{

public var name : String;

[Bindable]
public var destroy : Boolean;

public function Pod( name : String )
{
this.name = name;
}
}
}
 snip 

Cheers,
Ralf


On 7/18/06, Alberto Albericio <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> I have an MXML component that has an mxml binding to a setter function
> like this:
>
>  destination="handleDestroy" />
>
> and a setter function defined :
>
> private function set handleDestroy( destroy:Boolean ): void {
>   // some code
> }
>
> This works 100% but I need to create this binding in an actionscript
> component; I have tried the following:
>
> BindingUtils.bindSetter( handleDestroy, model.podManager.getPod(
> this.mypodId ), "destroy", false );
>
> and having the same setter function. It complains about the setter
> function. If I remove the "set" keyword (on the setter function) it
> compiles but does nothing ( the binding doesnt seem to enter the function )
>
> How can I create this binding from actionscript? Can someone give a
> working example on how to create a binding to a setter function in
> actionscript? It should be easy but I have found no documentation at all
> on this. I need the help of an expert.
>
> Thank you very much.
>
> Alberto
>
>
>
>
>
> --
> 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
>
>
>
>
>
>
>


-- 
Ralf Bokelberg <[EMAIL PROTECTED]>
Flex & Flash Consultant based in Cologne/Germany


 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] Flex 2 plugin with Eclipse 3.2 errors

2006-07-20 Thread Ralf Bokelberg
Afaik it works beside the debugger.
Cheers,
Ralf.

On 7/20/06, thunderstumpgesatwork <[EMAIL PROTECTED]> wrote:
> Hi all. Before you all tell me "It's not supported", I know. However
> I'm using HibernateTools which requires it, so I've been giving it a try.
>
> I read on the official Flex forum that some people are using Eclipse
> 3.2 successfully. However I get the following 'internal errors' when
> the stack trace is loading in debug view... anyone have any ideas or
> seen similar perhaps even with Eclipse 3.1?
>
> The Eclipse log is shown below.
> thanks,
> Thunder
>
> !ENTRY org.eclipse.core.jobs 4 2 2006-07-19 16:53:57.687
> !MESSAGE An internal error occurred during: "Retrieving labels".
> !STACK 0
> org.eclipse.swt.SWTException: Invalid thread access
> at org.eclipse.swt.SWT.error(SWT.java:3374)
> at org.eclipse.swt.SWT.error(SWT.java:3297)
> at org.eclipse.swt.SWT.error(SWT.java:3268)
> at org.eclipse.swt.widgets.Display.error(Display.java:978)
> at org.eclipse.swt.widgets.Display.checkDevice(Display.java:638)
> at org.eclipse.swt.widgets.Display.getSystemColor(Display.java:1931)
> at
> com.adobe.flexbuilder.debug.ui.FlexDebugModelPresentation.getStackFrameForeground(FlexDebugModelPresentation.java:804)
> at
> com.adobe.flexbuilder.debug.ui.FlexDebugModelPresentation.getForeground(FlexDebugModelPresentation.java:795)
> at
> org.eclipse.debug.internal.ui.LazyModelPresentation.getForeground(LazyModelPresentation.java:362)
> at
> org.eclipse.debug.internal.ui.DelegatingModelPresentation.getForeground(DelegatingModelPresentation.java:327)
> at
> org.eclipse.debug.internal.ui.views.launch.DebugElementHelper.getForeground(DebugElementHelper.java:108)
> at
> org.eclipse.debug.internal.ui.elements.adapters.AsynchronousDebugLabelAdapter.getForegrounds(AsynchronousDebugLabelAdapter.java:103)
> at
> org.eclipse.debug.internal.ui.viewers.provisional.AsynchronousLabelAdapter.computeLabels(AsynchronousLabelAdapter.java:105)
> at
> org.eclipse.debug.internal.ui.elements.adapters.AsynchronousDebugLabelAdapter.computeLabels(AsynchronousDebugLabelAdapter.java:66)
> at
> org.eclipse.debug.internal.ui.viewers.provisional.AsynchronousLabelAdapter$2.run(AsynchronousLabelAdapter.java:51)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)
>
>
>
>
>
>
>
> --
> 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
>
>
>
>
>
>
>
>


-- 
Ralf Bokelberg <[EMAIL PROTECTED]>
Flex & Flash Consultant based in Cologne/Germany


 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] Re: Cryptology libraries for Flex

2006-07-20 Thread ryanm
> This is great. I am actually in no rush. So, if you are willing to
> share the code, please, let me know when you are finished.
>
Well, it'll be for sale, naturally. Not too expensive (haven't decided 
in a final price yet), but worth it considering the tool set.

http://www.horsefish.net/businesstools/about.html

ryanm 



 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/
 




[flexcoders] setting value on cfc & invoke another method on cfc

2006-07-20 Thread Doug Arthur



How would you invoke one method on a cfc from flex, then call another method on the same cfc and the cfc maintain the values from the first invoke? 
 
example:


     name="init"
 access="remote" output=
"false" returntype="any">
         this />        
 name="doSomething" access=
"remote" output="false" returntype=
"any>         getSomeValue() &
 ' is the value you asked for...' />    
     name="setSomeValue"
 access="remote" output=
"false" returntype="any">
     name="someValue" required=
"true" default="" 
/>     Variables.someValue =
 arguments.someValue />    
     name="getSomeValue" access=
"remote" output="false" 
returntype="any">     
Variables.someValue />    
 
remoteObject.setSomeValue('something');
remotObject.doSomething(); // I'm looking for event.result to contain the string 'something is the value you asked for...'
 
 
 

__._,_.___





--
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: Icons in menu - not working

2006-07-20 Thread Devin Holloway
I don't quite understand this solution. Mind showing a more complete
code example? thanks


--- In flexcoders@yahoogroups.com, "Kelly Birr" <[EMAIL PROTECTED]> wrote:
>
> I found my problem.  It appears that the menu cannot bind to static
vars for
> images.  I solved the problem by specifying 
> { public const myMenuIcon:Class = GlobalIcons.MyCoolIcon; }  where
> GlobalIcons.MyCoolIcon is declared exactly as below. Then pout the local
> name "myMenuIcon" in the @icon field of the xml.
>  
> - Kelly
> 
>   _  
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Kelly Birr
> Sent: Wednesday, June 28, 2006 4:26 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Icons in menu - not working
> 
> 
> I've been racking my brain trying to get icons in the menu bar.  I
think I'm
> doing exactly what the docs say but I cannot get any icon to render.
 The
> label and actions work perfectly but the icon does not show up.  The
icon is
> embedding properly as I can see it in the "icon" property of a
button in the
> same file.  I've also tried putting the path to the icon file in the
xml, no
> joy.
>  
> My Menu XML Is:
> 
> 
> 
> 
> 
> 
> 
>  
> My MXML is:
> 
>   
>  
> 
>   dataProvider="{menuXml}" showRoot="false" 
>cornerRadius="3" itemClick="menuHandler(event)" labelField="@label"
> iconField="@icon" />
> 
> 
> I cannot find any samples anywhere with icons in the menu,  Is this
still
> supported?  Can anyone tell me what i'm doing wrong?  I am using
Flex 2.0
> RTM
>  
> - Kelly
>






 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/
 





[flexcoders] Editing datagrid w/nested properties

2006-07-20 Thread Mike_Robinson_98
Can someone tell me if this is possible or should I give up and remove
the nested properties from the datasource.

I have a datagrid bound to an arraycollection. The collection is a
list of Order Items. Each Order Item has a Product which in turns has
several properties to display. I have used a LabelFunction to display
the Product properties. No problem. However, I would like the user to
be able to edit those properties. 

Right now the DataGrid itemEditorItemEditEndHandler throws an
exception because it cannot access the nested property since it uses
the data[property] ... where data=OrderItem and
property="product.description".

I thought writing my own endEdit event handler might be the way to go
to be able to modify the property myself, however it seems the
DataGrid's itemEditorItemEditEndHandler is still going to get called
with the same results.

Any thoughts on this situation?





 Yahoo! Groups Sponsor ~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] Binding from Actionscript

2006-07-20 Thread Alberto Albericio
Hello all,

I have an MXML component that has an mxml binding to a setter function 
like this:



and a setter function defined :

private function set handleDestroy( destroy:Boolean ): void {
  // some code 
}

This works 100% but I need to create this binding in an actionscript 
component; I have tried the following:

BindingUtils.bindSetter( handleDestroy, model.podManager.getPod( 
this.mypodId ), "destroy", false );

and having the same setter function. It complains about the setter 
function. If I remove the "set" keyword (on the setter function) it 
compiles but does nothing ( the binding doesnt seem to enter the function )

How can I create this binding from actionscript? Can someone give a 
working example on how to create a binding to a setter function in 
actionscript? It should be easy but I have found no documentation at all 
on this. I need the help of an expert.

Thank you very much.

Alberto




 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/
 




[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09
Could you resubmit your message?  There's no content.
--- In flexcoders@yahoogroups.com, "Dimitrios Gianninas"
<[EMAIL PROTECTED]> wrote:
>
>
>
> Dimitrios Gianninas
> RIA Developer
> Optimal Payments Inc.
>
>
> 
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of gotgoose09
> Sent: Thursday, July 20, 2006 4:43 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Strange issue with drag and drop between
Lists
>
>
>
> I added a "View Source" option to the swf.
>
> --- In flexcoders@yahoogroups.com
 , "gotgoose09" thegoosmans@ wrote:
> >
> > In one of my projects, I create a new TitleWindow that has two Lists
in
> > which can drag items from one to the other. However, when I try
> > dragging items from one to the other, there is a blank space at the
top
> > of each list that I can not drop items into - I have to drop the
items
> > in the bottom of the list. If I have the same two lists not in a
> > TitleWindow, dragging and dropping works fine, with no "barrier."
You
> > can view the problem at the link below, and recreate the problem
with
> > the steps below.
> >
> > http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf

> >  >
> >
> > Hi, to recreate my problem:
> >
> > 1. Create a new project (basic)
> >
> > 2. In the application mxml file, paste this code in:
> > 
> > http://www.adobe.com/2006/mxml
 "
> > layout="vertical">
> > 
> > 
> > 
> > 
> > 
> >  > dropEnabled="true" width="100" height="100">
> > 
> > Item 1
> > Item 2
> > 
> > 
> >  > dropEnabled="true" width="100" height="100" />
> > 
> > 
> >
> >
> > 3. Create a new MXML Component, base it off of TitleWindow, call it
> > MyPopup.mxml
> >
> > 4. Paste this code into that file:
> > 
> > http://www.adobe.com/2006/mxml
 "
> > layout="vertical">
> > 
> >  > dropEnabled="true" width="100" height="100">
> > 
> > Item 1
> > Item 2
> > 
> > 
> >  > dropEnabled="true" width="100" height="100" />
> > 
> > 
> >
> > 5. Run the application.
> >
> > 6. Try dragging items from list to list on the main application.
Then,
> > click the button and try dragging and dropping, notice the
difference in
> > where you can drop items.
> >
>
>
>
>
>
> --
> WARNING
> ---
> 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.
>
> AVIS IMPORTANT
> --
> 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.
>







 Yahoo! Groups Sponsor ~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] Flex arrows?

2006-07-20 Thread Douglas Knudsen



right, but I really don't want to creat a new skin, I want ot use the existing skin so that it inherits all the Halo goodness, eh?  I still have not got this working yet.  Looking deeper into the source for the DateChooser and the DateChoser skin I have found that the code actually draws the arrow.  The DateChooser code adds styles like prevMonthOverSkin and nextMonthOverSkin with default values.  These styles names are expected in teh programmatic skin and do not exist in the Button class.  So Jester, me got brave...not so brave as Mel Gibson mind you, I like me entrails!
This is a excerpt:fwdMonthButton = new Button();    fwdMonthButton.styleName = this;    fwdMonthButton.autoRepeat = true;    fwdMonthButton.focusEnabled = false;    
fwdMonthButton.upSkinName = "nextMonthUpSkin";    fwdMonthButton.overSkinName = "nextMonthOverSkin";    fwdMonthButton.downSkinName = "nextMonthDownSkin";    
fwdMonthButton.disabledSkinName = "nextMonthDisabledSkin";ugh where does Button.upSkinName come from?  Its not in th edocs that i can see.DKOn 7/20/06, 
juan sanchez <[EMAIL PROTECTED]> wrote:


download the default skin here.
http://www.adobe.com/devnet/flex/articles/flex_skins.htmlOn Jul 20, 2006, at 7:56 AM, Douglas Knudsen wrote:


no workiehope jester's bag of tricks is deep!  
I looked around the Flex SDK source and see no arrow pngs at all, many other pngs though.  My guess is the arrows are compiled in a swc somewheres, which means they should be 'grabable' eh?  Be nice to use any graphics in the SDK in custom components to maintain the 'Flexiness', eh? 
What I'm trying to do is create a next/previous month browser.  We have reports that users run on a month end basis, the datechoser is really not the right tool for this.  I'm just using mxml to do this currently...suppose I will have to go off and lear the way of the force for building components soon. 
DK

On 7/19/06, 
JesterXL <
[EMAIL PROTECTED]> wrote:

Hrm... try:
 

 
If that doesn't work, I have more ideas.
 The skin is already imported in the defaults.css
, so she IS in there. 

- Original Message -
From: 
Douglas Knudsen
To:
 
flexcoders@yahoogroups.com

Sent:
 Wednesday, July 19, 2006 4:00 PM
Subject: Re: [flexcoders] Flex arrows?

hmm, ok, I'm lost when it comes to fancy UI stuff  :)  How do you make use of this?
        upSkin="DateChooserMonthArrowSkin" />
throws a def not found error.  Do I import the sckin somehow? 
DK

On 7/19/06, JesterXL
 <
[EMAIL PROTECTED]> wrote:

Found these digging in DateChooser.as.  I'm assuming these skins are compiled into the base framework.  Try using like DateChooserMonthArrowSkin as one of your upSkins and see what happens.
 
 *    nextMonthDisabledSkin="DateChooserMonthArrowSkin" *    nextMonthDownSkin="DateChooserMonthArrowSkin"
 *    nextMonthOverSkin="DateChooserMonthArrowSkin"
 *    nextMonthUpSkin="DateChooserMonthArrowSkin"
 *    nextYearDisabledSkin="DateChooserYearArrowSkin" *    nextYearDownSkin="DateChooserYearArrowSkin"
 *    nextYearOverSkin="DateChooserYearArrowSkin"
 *    nextYearUpSkin="DateChooserYearArrowSkin"
 *    prevMonthDisabledSkin="DateChooserMonthArrowSkin" *    prevMonthDownSkin="DateChooserMonthArrowSkin"
 *    prevMonthOverSkin="DateChooserMonthArrowSkin"
 *    prevMonthUpSkin="DateChooserMonthArrowSkin"
 *    prevYearDisabledSkin="DateChooserYearArrowSkin" *    prevYearDownSkin="DateChooserYearArrowSkin"
 *    prevYearOverSkin="DateChooserYearArrowSkin"
 *    prevYearUpSkin="DateChooserYearArrowSkin"

 
 
- Original Message -
From: 
Douglas Knudsen
To:
 
flexcoders@yahoogroups.com

Sent: Wednesday, July 19, 2006 3:19 PM
Subject: [flexcoders] Flex arrows?

So, I'm creating a custom component with next/previous functionality.  I'd like to use the same arrows on say the DateChooser control.  Are these avaialbale to the developer somehow?
DK
-- 
Douglas Knudsen 
http://www.cubicleman.com
this is my signature, like it?

-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


-- Douglas Knudsen

http://www.cubicleman.comthis is my signature, like it?




-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

__._,_.___





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

[flexcoders] Accessibility Keys

2006-07-20 Thread Brian Holmes





Does anyone have any 
quick code for setting Accessibility Keys. In truth all I want to do is listen 
for certain keys and fire certain events based off those keys. Like CTRL + I = 
toggle and informational screen.
 
thanks,
brian.

***
The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed.  If you have received this e-mail in error, please notify the sender by return e-mail, delete this e-mail, and refrain from any disclosure or action based on the information.
*** 


__._,_.___





--
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] DateField cellRenderer not working with date as String

2006-07-20 Thread Ralf Bokelberg



Works for me, if i use the following external itemEditor http://www.adobe.com/2006/mxml
">                                                cheers,Ralf. On 7/20/06, 
John Buhl <[EMAIL PROTECTED]> wrote:



Yes.  The data can be parsed fine.  I think I need somehow to use a Model with my XML so I can massage the data first, and then set the dataProvider to the Model instead of the XML object.  Still researching...

 
On 7/20/06, Tom Chiverton <
[EMAIL PROTECTED]> wrote:
On Thursday 20 July 2006 15:53, John Buhl wrote:> field comes across as text, so I'm trying to cast it into a Date object
> before using the cellRenderer component.  But it just won't work.  HasWhat format is the data string in ? Is it one Date can parse itself ?--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.
CONFIDENTIALITYThis 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.
 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/
-- ***John Buhl770-722-5209 (c)770-234-6710 (f)
*** 




-- Ralf Bokelberg <[EMAIL PROTECTED]>Flex & Flash Consultant based in Cologne/Germany

__._,_.___





--
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: Confusion about 'Security error accessing url'

2006-07-20 Thread orange012572
This has to do with the Flash Trust config files. These files 
installed in all systems designate directories or specific files 
that will enjoy full trust (can access the network without 
crossdomain.xml restrictions, and can access files on local system).

Any swf outside these locations will use local-with-networking 
(respecting crossdomain.xml policies) or local-with-filesystem, 
depending on how the author compiled the swf (there are switches).

I believe Flex Builder automatically puts your bin folders on the 
Trust config automatically to facilitate development.

Somebody correct me if I am wrong.

Regards

--- In flexcoders@yahoogroups.com, "flexava" <[EMAIL PROTECTED]> wrote:
>
> Ya,I know the existence of crossdomain.xml.But what really 
confused me
> is that the generated swf file can run in the bin directory 
without a
> crossdomain.xml file put in the root of the server while it failed 
to
> run in other position!! I can't figure out why.







 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: Strange issue with drag and drop between Lists

2006-07-20 Thread Dimitrios Gianninas





 
 
Dimitrios 
Gianninas
RIA Developer
Optimal 
Payments Inc.
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
gotgoose09Sent: Thursday, July 20, 2006 4:43 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: Strange issue 
with drag and drop between Lists


I added a "View Source" option to the swf.--- In [EMAIL PROTECTED]ups.com, 
"gotgoose09" ...> wrote:>> In one of my 
projects, I create a new TitleWindow that has two Lists in> which can 
drag items from one to the other. However, when I try> dragging items 
from one to the other, there is a blank space at the top> of each list 
that I can not drop items into - I have to drop the items> in the bottom 
of the list. If I have the same two lists not in a> TitleWindow, dragging 
and dropping works fine, with no "barrier." You> can view the problem at 
the link below, and recreate the problem with> the steps below.> 
> http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf> 
> 
> Hi, to recreate my problem:> > 1. Create a new project 
(basic)> > 2. In the application mxml file, paste this code 
in:> 8"?>> 
http://www.adobe.com/2006/mxml"> 
layout="vertical">> > 
> > > > 
"true" 
dragMoveEnabled="true"> dropEnabled="true" width="100" 
height="100">> > 
Item 1> Item 
2> > 
> "true" 
dragMoveEnabled="true"> dropEnabled="true" width="100" 
height="100" />> > 
> > > 3. Create a new MXML 
Component, base it off of TitleWindow, call it> MyPopup.mxml> 
> 4. Paste this code into that file:> 8"?>> http://www.adobe.com/2006/mxml"> 
layout="vertical">> > "true" dragMoveEnabled="true"> 
dropEnabled="true" width="100" height="100">> 
> Item 
1> Item 2> 
> > "true" dragMoveEnabled="true"> 
dropEnabled="true" width="100" height="100" />> 
> > > 5. Run the 
application.> > 6. Try dragging items from list to list on the 
main application. Then,> click the button and try dragging and dropping, 
notice the difference in> where you can drop 
items.>
 
  
  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.



  






__,_._,___



[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09
I added a "View Source" option to the swf.

--- In flexcoders@yahoogroups.com, "gotgoose09" <[EMAIL PROTECTED]> wrote:
>
> In one of my projects, I create a new TitleWindow that has two Lists in
> which can drag items from one to the other.  However, when I try
> dragging items from one to the other, there is a blank space at the top
> of each list that I can not drop items into - I have to drop the items
> in the bottom of the list.  If I have the same two lists not in a
> TitleWindow, dragging and dropping works fine, with no "barrier."  You
> can view the problem at the link below, and recreate the problem with
> the steps below.
> 
> http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> 
> 
> Hi, to recreate my problem:
> 
> 1. Create a new project (basic)
> 
> 2. In the application mxml file, paste this code in:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>  
>  
>  
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
> 
> 
> 3. Create a new MXML Component, base it off of TitleWindow, call it
> MyPopup.mxml
> 
> 4. Paste this code into that file:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
> 
> 5. Run the application.
> 
> 6. Try dragging items from list to list on the main application.  Then,
> click the button and try dragging and dropping, notice the difference in
> where you can drop items.
>






 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] So? What are folks here actually building...?

2006-07-20 Thread Jim Schneider










We are developing a health care Practice
Management and Electronic Health Records platform to service small to medium
sized health care practices.

 



-

Jim Schneider

EyeCodeRight, LLC

1-877-370-6906

1-612-605-5399











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of David Mendels
Sent: Thursday, July 20, 2006
12:23 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] So? What are
folks here actually building...?



 



    





Hello,





 





It has been less than a month since we
shipped Flex, but I know many folks on this list had projects they started back
in the public beta time.  I know in many cases you may not be able to talk
about what projects you are working on, but for those who can I'd love to get a
view onto what folks are building.  We spent a long time (almost two
years) on all the parts of the Flex 2 product line (and the Flash Player 9) and
it is very cool to see the traffic here, the emergence of third party conferences
like www.flexseminar.com, the books
coming out on Flex, the 60K plus downloads of the IDE in the public beta, but
we'd love to get a sense of what real applications people are starting to
build.  The team is already working on plans for mid-term and longer term
upgrades to Flex, and it helps us to really understand what people are
building.  So, if you are able to talk about what you are building please
do share--I think it would be very interesting for the community and very
valuable for us on the Flex team at Adobe.





 





--David





Adobe









__._,_.___





--
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] concise explanation of sizing (measured, explicit, preferred) custom components

2006-07-20 Thread tddclare
Does anyone know of a good (reasonably plain language) writeup of how
(and why and when) to use the various sizing properties when extending
UIComponent?

I've read the documentation in Help, but it hasn't fully sunk through
my thick head yet.

I'd like to understand enough to know not only WHAT they are, but WHY
I'm setting them and HOW Flex uses them:

( ... means "Height" or "Width".  I DO understand that those mean! : ))
- measured...
- measuredPreferred...
- explicit...
- ...

Thanks for any leads or any explanations you can give me!

--TC





 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] So? What are folks here actually building...?

2006-07-20 Thread Dimitrios Gianninas





Two things:
 
1) Recurring Billing interface. Our merchants will use this 
UI to manage their consumers and their associated recurring billing setups. They 
can do a variety of searches, view summary data using charts and then drill into 
the details of the consumer record. Uses FDS to manage the consumer records and 
makes use of RO and WS RPC calls.
 
2) Chargeback Tool. Built by my partner in crime Stacy, 
internal employees upload CSV files containing chargeback records and 
during the processing of the file (can take minutes), the server send messages 
to the client to update him on the status via JMS. The rest of the app allows 
the editing of records and searches.
 
Dimitrios 
Gianninas
RIA Developer
Optimal 
Payments Inc.
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Stacy 
YoungSent: Thursday, July 20, 2006 2:46 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] So? What are 
folks here actually building...?




Latest project I’m 
engineering is a real-time monitoring/administrative console for an in-house CF 
reporting system. Managing report threads in CF clusters, alarms and some very 
custom functionality to manage reporting workload around our system upgrades 
which may involve downtime etc. Technologies involved: Flex 2, Java, CF, JMS and 
eventually ESB (servicemix)

Cheers,
Stace





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of David MendelsSent: Thursday, July 20, 2006 1:23 
AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] So? What are folks 
here actually building...?





    


Hello,



It has been less than a 
month since we shipped Flex, but I know many folks on this list had projects 
they started back in the public beta time.  I know in many cases you may 
not be able to talk about what projects you are working on, but for those who 
can I'd love to get a view onto what folks are building.  We spent a long 
time (almost two years) on all the parts of the Flex 2 product line (and the 
Flash Player 9) and it is very cool to see the traffic here, the emergence of 
third party conferences like www.flexseminar.com, the books coming out 
on Flex, the 60K plus downloads of the IDE in the public beta, but we'd love to 
get a sense of what real applications people are starting to build.  The 
team is already working on plans for mid-term and longer term upgrades to Flex, 
and it helps us to really understand what people are building.  So, if you 
are able to talk about what you are building please do share--I think it would 
be very interesting for the community and very valuable for us on the Flex team 
at Adobe.



--David

Adobe

  
  

  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
  
  


 

Re: [flexcoders] Re: [Bindable] not working

2006-07-20 Thread Ralf Bokelberg
Works for me

 snip ---

http://www.adobe.com/2006/mxml";
layout="vertical"
preinitialize="createTestData()">






 snip ---
package
{
import mx.collections.ArrayCollection;

public class ItemManager
{

[Bindable]
public var currentItem : MyClassObject;

[Bindable]
public var currentItems : ArrayCollection;

public function ItemManager()
{
currentItems = new ArrayCollection();
}

public function addItem( item : MyClassObject ) : void
{
currentItem = item;
currentItems.addItem( item );
}

private static var instance : ItemManager;

public static function getInstance() : ItemManager
{
if( instance == null ) instance = new ItemManager();
return instance;
}
}
}
 snip ---
package
{
public class MyClassObject
{
[Bindable]
public var title : String;

public function MyClassObject( title : String )
{
this.title = title;
}
}
}
 snip ---

Cheers,
Ralf.

On 7/20/06, Tim Hoff <[EMAIL PROTECTED]> wrote:
>
> Hi Tracy,
>
> I'm not sure if this will make any difference, but the entire Cairngorm
> ModelLocator class is Bindable instead of the individual variables.
> Perhaps this would make a difference with your model.
>
> -TH
>
>[Bindable]
>   public class ModelLocator implements
> com.adobe.cairngorm.model.ModelLocator
>   {
>private static var modelLocator:com.ets.main.model.ModelLocator;
>
>public static function getInstance() : com.ets.main.model.ModelLocator
>{
> if ( modelLocator == null )
>  modelLocator = new com.ets.main.model.ModelLocator();
>
> return modelLocator;
>  }
>
>
> //--\
> ---
>
>   public function ModelLocator()
>   {
>if ( com.ets.main.model.ModelLocator.modelLocator != null )
>  throw new Error( "Only one ModelLocator instance should be
> instantiated" );
>   }
>
> }
>
>
>
>
> --- In flexcoders@yahoogroups.com, "polestar11" <[EMAIL PROTECTED]> wrote:
> >
> > Hi there
> >
> > I have a class containing 2 variables, which I am trying to bind to a
> > seperate component. I am not using Cairngorm, although the structure
> > is quite similar, in that I have a component (view) that references
> > values in a singleton class (model)
> >
> > In the model-like class I have the following:
> >
> > public function addItem(item:MyClassObject) {
> > currentItem = item;
> > currentItems.addItem(item);
> > }
> >
> > [Bindable]
> > public var currentItem:MyClassObject;
> > [Bindable]
> > public var currentItems:ArrayCollection;
> >
> > In the view-like class I reference the variables like so:
> >
> >  dataProvider="{itemManager.currentItems}" />
> > 
> >
> > In the script part of this component I reference the model-like class:
> > [Bindable]
> > public var itemManager:ItemManager = ItemManager.getInstance();
> >
> > My MultiView class is a custom component that takes the
> > ArrayCollection of 'currentItems' and adds them as children. There
> > might be a problem in this code preventing the associated children
> > from updating.
> >
> > The binding should however work for the label (tmpLabel).
> >
> > Any help much appreciated
> >
> > Tracy
> >
>
>
>
>
>
>
>
>
>
> --
> 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
>
>
>
>
>
>
>


-- 
Ralf Bokelberg <[EMAIL PROTECTED]>
Flex & Flash Consultant based in Cologne/Germany


 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://d

[flexcoders] Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09



In one of my projects, I create a new TitleWindow that has two Lists in which can drag items from one to the other.  However, when I try dragging items from one to the other, there is a blank space at the top of each list that I can not drop items into - I have to drop the items in the bottom of the list.  If I have the same two lists not in a TitleWindow, dragging and dropping works fine, with no "barrier."  You can view the problem at the link below, and recreate the problem with the steps below.http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf Hi, to recreate my problem:1. Create a new project (basic)2. In the application mxml file, paste this code in:                                                            Item 1                Item 2                                3. Create a new MXML Component, base it off of TitleWindow, call it MyPopup.mxml4. Paste this code into that file:                                        Item 1                Item 2                                5. Run the application.6. Try dragging items from list to list on the main application.  Then, click the button and try dragging and dropping, notice the difference in where you can drop items.

__._,_.___





--
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: Cryptology libraries for Flex

2006-07-20 Thread Dmitry Miller
This is great. I am actually in no rush. So, if you are willing to
share the code, please, let me know when you are finished.

Thanks, 

--- Dmitry 

--- In flexcoders@yahoogroups.com, "ryanm" <[EMAIL PROTECTED]> wrote:
>
> > Does anyone know if there is an implementation of tripple DES
> > algorithm for ActionScript 3.0?
> >
> I have an AS2.0 one almost finished, as part of a toolset that
should be 
> available in the next couple months. Shouldn't take much to port up
to AS3. 
> But if you need it today I can't help, because it's still not
working quite 
> right.
> 
> ryanm
>







 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] So? What are folks here actually building...?

2006-07-20 Thread Stacy Young












Latest project I’m engineering is a
real-time monitoring/administrative console for an in-house CF reporting
system. Managing report threads in CF clusters, alarms and some very custom
functionality to manage reporting workload around our system upgrades which may
involve downtime etc. Technologies involved: Flex 2, Java, CF, JMS and
eventually ESB (servicemix)

 

Cheers,

Stace

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of David Mendels
Sent: Thursday, July 20, 2006 1:23
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] So? What are
folks here actually building...?



 









    





Hello,





 





It has been less than a month since we
shipped Flex, but I know many folks on this list had projects they started back
in the public beta time.  I know in many cases you may not be able to talk
about what projects you are working on, but for those who can I'd love to get a
view onto what folks are building.  We spent a long time (almost two
years) on all the parts of the Flex 2 product line (and the Flash Player 9) and
it is very cool to see the traffic here, the emergence of third party conferences
like www.flexseminar.com, the books
coming out on Flex, the 60K plus downloads of the IDE in the public beta, but
we'd love to get a sense of what real applications people are starting to
build.  The team is already working on plans for mid-term and longer term
upgrades to Flex, and it helps us to really understand what people are
building.  So, if you are able to talk about what you are building please
do share--I think it would be very interesting for the community and very
valuable for us on the Flex team at Adobe.





 





--David





Adobe








 
  
  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] Flex arrows?

2006-07-20 Thread juan sanchez


download the default skin here.http://www.adobe.com/devnet/flex/articles/flex_skins.htmlOn Jul 20, 2006, at 7:56 AM, Douglas Knudsen wrote:no workiehope jester's bag of tricks is deep!  I looked around the Flex SDK source and see no arrow pngs at all, many other pngs though.  My guess is the arrows are compiled in a swc somewheres, which means they should be 'grabable' eh?  Be nice to use any graphics in the SDK in custom components to maintain the 'Flexiness', eh? What I'm trying to do is create a next/previous month browser.  We have reports that users run on a month end basis, the datechoser is really not the right tool for this.  I'm just using mxml to do this currently...suppose I will have to go off and lear the way of the force for building components soon. DKOn 7/19/06, JesterXL <[EMAIL PROTECTED]> wrote:Hrm... try:  If that doesn't work, I have more ideas. The skin is already imported in the defaults.css, so she IS in there. - Original Message -From: Douglas KnudsenTo: flexcoders@yahoogroups.comSent: Wednesday, July 19, 2006 4:00 PMSubject: Re: [flexcoders] Flex arrows?hmm, ok, I'm lost when it comes to fancy UI stuff  :)  How do you make use of this?        upSkin="DateChooserMonthArrowSkin" />throws a def not found error.  Do I import the sckin somehow? DKOn 7/19/06, JesterXL <[EMAIL PROTECTED]> wrote:Found these digging in DateChooser.as.  I'm assuming these skins are compiled into the base framework.  Try using like DateChooserMonthArrowSkin as one of your upSkins and see what happens.  *    nextMonthDisabledSkin="DateChooserMonthArrowSkin" *    nextMonthDownSkin="DateChooserMonthArrowSkin" *    nextMonthOverSkin="DateChooserMonthArrowSkin" *    nextMonthUpSkin="DateChooserMonthArrowSkin" *    nextYearDisabledSkin="DateChooserYearArrowSkin" *    nextYearDownSkin="DateChooserYearArrowSkin" *    nextYearOverSkin="DateChooserYearArrowSkin" *    nextYearUpSkin="DateChooserYearArrowSkin" *    prevMonthDisabledSkin="DateChooserMonthArrowSkin" *    prevMonthDownSkin="DateChooserMonthArrowSkin" *    prevMonthOverSkin="DateChooserMonthArrowSkin" *    prevMonthUpSkin="DateChooserMonthArrowSkin" *    prevYearDisabledSkin="DateChooserYearArrowSkin" *    prevYearDownSkin="DateChooserYearArrowSkin" *    prevYearOverSkin="DateChooserYearArrowSkin" *    prevYearUpSkin="DateChooserYearArrowSkin"  - Original Message -From: Douglas KnudsenTo: flexcoders@yahoogroups.comSent: Wednesday, July 19, 2006 3:19 PMSubject: [flexcoders] Flex arrows?So, I'm creating a custom component with next/previous functionality.  I'd like to use the same arrows on say the DateChooser control.  Are these avaialbale to the developer somehow?DK-- Douglas Knudsen http://www.cubicleman.comthis is my signature, like it?-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?
__._,_.___





--
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] List and ViewStack Problem

2006-07-20 Thread s_hernandez01
Hey Flexers

I am trying to use the ViewStack to switch Panels from a List
Component, but I am having no luck because I get an error saying "Call
to possibly undefined method ItemClickEvent".  Could someone help me,
please?


   


   
  
   
   
  
   











Thanks

Sal






 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] Cryptology libraries for Flex

2006-07-20 Thread ryanm
> Does anyone know if there is an implementation of tripple DES
> algorithm for ActionScript 3.0?
>
I have an AS2.0 one almost finished, as part of a toolset that should be 
available in the next couple months. Shouldn't take much to port up to AS3. 
But if you need it today I can't help, because it's still not working quite 
right.

ryanm 



 Yahoo! Groups Sponsor ~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] So? What are folks here actually building...?

2006-07-20 Thread Tom Bray



We host chat and instant messaging apps for the major social networking sites (wink, wink) and we're porting these apps over to Flex on the client-side and we intend to replace Flashcom with FDS for everything but A/V.  We're finding the latter process to be painful but promising.  We'd love to see more samples, tutorials, and documentation for the server API.  I suppose you might not want to encourage the cannibalization of Flashcom, but docs targeting people like us who want to migrate to FDS from FMS would be awesome.  Also, this list is a great place to get framework and builder questions answered, but my FDS questions tend to die a lonely death -- is there a better forum for those questions?

 
Thanks,
 
Tom 
On 7/19/06, David Mendels <[EMAIL PROTECTED]> wrote:







    
Hello,
 
It has been less than a month since we shipped Flex, but I know many folks on this list had projects they started back in the public beta time.  I know in many cases you may not be able to talk about what projects you are working on, but for those who can I'd love to get a view onto what folks are building.  We spent a long time (almost two years) on all the parts of the Flex 2 product line (and the Flash Player 9) and it is very cool to see the traffic here, the emergence of third party conferences like 
www.flexseminar.com, the books coming out on Flex, the 60K plus downloads of the IDE in the public beta, but we'd love to get a sense of what real applications people are starting to build.  The team is already working on plans for mid-term and longer term upgrades to Flex, and it helps us to really understand what people are building.  So, if you are able to talk about what you are building please do share--I think it would be very interesting for the community and very valuable for us on the Flex team at Adobe.

 
--David
Adobe
 

__._,_.___





--
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: [Bindable] not working

2006-07-20 Thread Tim Hoff

Hi Tracy,

I'm not sure if this will make any difference, but the entire Cairngorm
ModelLocator class is Bindable instead of the individual variables. 
Perhaps this would make a difference with your model.

-TH

   [Bindable]
  public class ModelLocator implements
com.adobe.cairngorm.model.ModelLocator
  {
   private static var modelLocator:com.ets.main.model.ModelLocator;

   public static function getInstance() : com.ets.main.model.ModelLocator
   {
if ( modelLocator == null )
 modelLocator = new com.ets.main.model.ModelLocator();

return modelLocator;
 }

  
//--\
---

  public function ModelLocator()
  {
   if ( com.ets.main.model.ModelLocator.modelLocator != null )
 throw new Error( "Only one ModelLocator instance should be
instantiated" );
  }

}




--- In flexcoders@yahoogroups.com, "polestar11" <[EMAIL PROTECTED]> wrote:
>
> Hi there
>
> I have a class containing 2 variables, which I am trying to bind to a
> seperate component. I am not using Cairngorm, although the structure
> is quite similar, in that I have a component (view) that references
> values in a singleton class (model)
>
> In the model-like class I have the following:
>
> public function addItem(item:MyClassObject) {
> currentItem = item;
> currentItems.addItem(item);
> }
>
> [Bindable]
> public var currentItem:MyClassObject;
> [Bindable]
> public var currentItems:ArrayCollection;
>
> In the view-like class I reference the variables like so:
>
> 
> 
>
> In the script part of this component I reference the model-like class:
> [Bindable]
> public var itemManager:ItemManager = ItemManager.getInstance();
>
> My MultiView class is a custom component that takes the
> ArrayCollection of 'currentItems' and adds them as children. There
> might be a problem in this code preventing the associated children
> from updating.
>
> The binding should however work for the label (tmpLabel).
>
> Any help much appreciated
>
> Tracy
>








 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] So? What are folks here actually building...?

2006-07-20 Thread hank williams



For the last two years I have been working on a technology platform called Elroy.Elroy is a media discovery platform that in some respects operates like a personalized television or radio station that had Digg built in.  There will be a variety of services providing content in the areas of comedy and music, and other stuff I cant talk about yet. But for music I like to say its like a mashup of internet radio, American idol and TiVo.
Basically, you can indicate what content you like and don't like and the service will tailor the experience to your tastes. At the same time your opinions effect what other people see/hear because if a piece of content is popular it will be played on more peoples stations.
The content for most (but not all) of the Elroy services will be user generated. But we don't share much in common with YouTube. YouTube is a giant content repository. What we are doing is creating continuous play channels that are topic specific that use technology to create the editorial perspective. Like on your TV, you know if you go to Lifetime you are going to see chick flix, or MTV you are going to see "young" programming. And on discovery you are going to see more educational stuff. We believe editorial perspective is critical to all content consumption. 
There is a fair bit more to say and I am not sure this really gives a clear idea, but it at least gives some flavor. We expect to launch the first service in August. In any case, what's nice is that I have, in one month redone most of the user interface in flex and I am very happy with it. 
You were talking about wanting insight into what people are doing to inform your strategy going forward, and one of the areas that would be very helpful to me is DRM, because, as it stands, for me to play major label music, I need to use WMA, which is a bummer. We do plan this later this fall and I hate having to do it. But I am going to have to do some funky _javascript_/WMA thing for that service.
Another thing that would be really helpful is p2p in Apollo. I think you should consider buying a company like redswoosh, or writing your own. I am not talking about filesharing/stealing p2p but the core technology which allows me to distribute content without giant bandwidth bills. Another company is Kontiki.
Finally, one area that would be very helpful is a ARM version of AVM2. As I understand, the arm port is already written. Even without the flash object model, it would be very helpful to have a perhaps GCC based VM that would allow me to target ARM. I have lots of algorithms that I want to port to a portable environment where everything is ARM. and I would love to keep AS3 as my language of choice. As it is, complex algorithms need to be ported, which is a bummer. I guess what I am saying is you should open source the VM is flash. Not the Object model, but the interpreter. This would really help to establish the platform without costing you anything. It would help make people more loyal to the language.
Regards,HankOn 7/20/06, David Mendels <[EMAIL PROTECTED]> wrote:









    
Hello,
 
It has 
been less than a month since we shipped Flex, but I know many folks on this list 
had projects they started back in the public beta time.  I know in many 
cases you may not be able to talk about what projects you are working on, but 
for those who can I'd love to get a view onto what folks are building.  We 
spent a long time (almost two years) on all the parts of the Flex 2 product line 
(and the Flash Player 9) and it is very cool to see the traffic here, the 
emergence of third party conferences like www.flexseminar.com, the books coming out 
on Flex, the 60K plus downloads of the IDE in the public beta, but we'd love to 
get a sense of what real applications people are starting to build.  The 
team is already working on plans for mid-term and longer term upgrades to Flex, 
and it helps us to really understand what people are building.  So, if you 
are able to talk about what you are building please do share--I think it would 
be very interesting for the community and very valuable for us on the Flex team 
at Adobe.
 
--David
Adobe





__._,_.___





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

Re: [flexcoders] Re: Strange behavior in datagrid

2006-07-20 Thread Joe Stramel





Just to clarify...it wasn't actually the font for 
me.  It was because I set the font-size to 12.  When I changed it to 
11 the problem went away.
 

  - Original Message - 
  From: 
  Colin 
  Wiseley 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, July 20, 2006 12:24 
  PM
  Subject: [flexcoders] Re: Strange 
  behavior in datagrid
  
  
  
  
  I had this problem too with extra 
  rows displaying sometimes both above and below the actual control as you 
  scrolled the datagrid.  I had an embedded font in the header style for 
  the datagrid.  Turning off the embedded font and using a client font for 
  the header fixed it for me.
  
  Colin
  
  
  
  --- In flexcoders@yahoogroups.com, "Joe 
  Stramel" <[EMAIL PROTECTED]> wrote:
  > 
  > I have a datagrid in my app 
  that is displaying one row of data BELOW the actual visible control.  Any 
  idea what could cause something like that?
  > 
  
  
__._,_.___





--
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: Loaded SWF proportions

2006-07-20 Thread flexnewbie06
Okay...just playing with the simple stuff...the SWFLoader wasn't 
situated in the panel so it was just exploding...it is contained now.

thanks.


--- In flexcoders@yahoogroups.com, "flexnewbie06" <[EMAIL PROTECTED]> 
wrote:
>
> Hi.
> 
> I have a flex app that loads a swf (created in Flash 8) using 
> SWFLoader.  When the swf is playing it automaiticaly expands size, 
> beyond the size of the swfLoader component and shows parts of the SWF 
> that are supposed to be invisable - design elements of the fla file. 
> This doesn't happen if the swf is played in Flash Player.  As anyone 
> encountered this before? Could it be controlled with the swfLoader 
> component or in the fla file itself? I have tried using max width and 
> max height on the swfLoader to no avail.  Any suggestions would be 
> appreciated.
> 
> Thanks
> Jenn
>







 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/
 





[flexcoders] positioning custom drag item next to mouse cursor

2006-07-20 Thread Pan Troglodytes



Ok, I'm trying to make my dragged grid item look a certain way and am running into two problems.  I'm dragging a grid row to a list.  But I don't want the default behavior of the giant grid row.  I want my own custom drag widget and I want it to pop up with its bottom right point at the current cursor position.  I have yet to be able to accomplish the latter.  Second, I want the dragging to start only when the mouse is actually clicked on the grid row.  With the code I have, it starts it if you select an item and then click and drag down in the blank area of the grid.
Here is some source code that basically shows what I'm doing.  It is not my actual source code, because that has a ton of other irrelevant crap.  But it does replicate the experience pretty closely.  I have commented out the part where I'm trying to figure out what to set the X/Y to.  If you have some wild guesses, I'd suggest trying them before posting. ;)  Believe me, I've thought of about a dozen things (like subtracting the renderers width off the X - won't work cause it isn't set) and all have been dead ends.
http://www.adobe.com/2006/mxml" layout="vertical">            
                                    
  -- 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.



  






__,_._,___



Re: [flexcoders] Confusion about 'Security error accessing url'

2006-07-20 Thread Sreejith Unnikrishnan





Let me try and put it as simple as 
possible.
 
Every request you make to a "data" server will 
require the "data" provider to provide explicit permission to access their data. 
This is done using a crossdomain.xml file that resides in the root of the "data" 
server.
 
For example, the following is the URL to access the 
MXNA feed.
 
http://weblogs.macromedia.com/mxna/xml/rss.cfm?query=byCategory&languages=1&categoryId=5
 
How can you check of you can access the data from 
this feed?
Type in http://weblogs.macromedia.com/crossdomain.xml
 
The result would be as below:
    

 
Note that the "allow-access-from-domain" is 
specified as "*". This means "anybody" can access it.
 
Now, lets look at another example.
The following is the RSS feed for CNN Money 
Economy
http://rss.cnn.com/rss/money_news_economy.rss
 
Now, if you access http://rss.cnn.com/crossdomain.xml, 
you will find a list of URLs. ONLY these URLs can access data from that 
particular feed.
 
In your case, type in http://www.wopos.com/crossdomain.xml.
I see the result in Chinese(?), but I could see 
that the no crossdomain.xml policy file exists on the server.
This means you do not have explicit permission to 
access that webService.
 
So, for 2 reasons you would get the "'Security 
error accessing url'" error.
 
1. No crossdomain.xml policy file exists on the 
"data" server.
2. The crossdomain.xml does not permit you to 
access that data.
 
I hope my understanding is 
correct and it clears your confusion.
 
Regards
Sree
 
 
 
 

  - Original Message - 
  From: 
  flexava 
  
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, July 20, 2006 3:56 
  PM
  Subject: [flexcoders] Confusion about 
  'Security error accessing url'
  
  
  I'm using flex builder to create a small flex project to learn how to 
  call web service in flex,but I encountered a problem really confusing 
  me.I created a new file called wstest.mxml and here's its 
  content:8"?>http://www.adobe.com/2006/mxml" 
  layout="vertical">port="WeatherSoap" wsdl="http://www.wopos.com/webservice/weather.asmx?wsdl" 
  showBusyCursor="true"fault="onFault(event)">>ÉϺ£text="{adminService.getWeather.lastResult}"/>After building 
  finished,I ran the generated wstest.swf in the directory called bin,the 
  output directory of the flex project,everything is ok.But when I put the 
  swf file in another position, say, c:/. Then when I ran the swf file an 
  error message was returned saying 'Security error accessing url'. I can't 
  understand why this happened. It seems the swf file can only run under the 
  bin directory. Any one can help? Thanks!
__._,_.___





--
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: Strange behavior in datagrid

2006-07-20 Thread Joe Stramel





Colin,
 
You got it.  I had a font-family: Arial 
attribute in my application css.  As soon as I took it out, viola!  
Thanks!
 
Joe
 

  - Original Message - 
  From: 
  Colin 
  Wiseley 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, July 20, 2006 12:24 
  PM
  Subject: [flexcoders] Re: Strange 
  behavior in datagrid
  
  
  
  
  I had this problem too with extra 
  rows displaying sometimes both above and below the actual control as you 
  scrolled the datagrid.  I had an embedded font in the header style for 
  the datagrid.  Turning off the embedded font and using a client font for 
  the header fixed it for me.
  
  Colin
  
  
  
  --- In flexcoders@yahoogroups.com, "Joe 
  Stramel" <[EMAIL PROTECTED]> wrote:
  > 
  > I have a datagrid in my app 
  that is displaying one row of data BELOW the actual visible control.  Any 
  idea what could cause something like that?
  > 
  
  
__._,_.___





--
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] Loaded SWF proportions

2006-07-20 Thread flexnewbie06
Hi.

I have a flex app that loads a swf (created in Flash 8) using 
SWFLoader.  When the swf is playing it automaiticaly expands size, 
beyond the size of the swfLoader component and shows parts of the SWF 
that are supposed to be invisable - design elements of the fla file. 
This doesn't happen if the swf is played in Flash Player.  As anyone 
encountered this before? Could it be controlled with the swfLoader 
component or in the fla file itself? I have tried using max width and 
max height on the swfLoader to no avail.  Any suggestions would be 
appreciated.

Thanks
Jenn






 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] So? What are folks here actually building...?

2006-07-20 Thread Evan Gifford












Evan Gifford here from Profitstreams.

 

We’ve started our project with Beta 3 and are now
using Flex Builder 2. We are using a Service Orientated Architecture with
multiple operating systems and languages powering our presentation tier. I was
able to use the Restaurant finder example application to convince our CEO to
use Flex as our primary presentation tier technology. :^)

 

We are using Flex to empower customers to easily make online
food orders and online restaurant reservations. We are also creating an invite
system which will allow a restaurant or customer to create an invitation
(either SWF, Email or Print) and send it to their contact list. All this is
tied to their payment information and completed online. 

 

We currently have a working prototype of the invitation
creator which allows a customer to choose a template, customize it using modified
Rich Text Editors (resizable, customized), add and re-size and image or logo,
then manage and select recipients and complete the proofing process using PDF.
This proof-of-concept application was successful and very impressive to
everyone concerned. We us FLV video helper videos (yours truly), in-context
help windows and embedded SWF animations along with a very intuitive interface
in an effort to create a very low-touch and virally-cool solution.

 

Coming from a Perl/Generator 2/Flash 3 background, I’m
very excited to see a mature product which accomplishes exactly what we knew
the internet is capable of all along.

 

I’ve bounced back and forth between Graphic Designer
and Programmer for these last 6 years, using everything from Quark Express and
more recently CS2 to using Generator 2 and Perl to generate dynamic flash
content to programming eCommerce solutions in PHP.  Flex is the technology I would work with
if given a choice of anything in the world. :^)

 

-Evan









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Mendels
Sent: Wednesday, July 19, 2006
11:23 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] So? What are
folks here actually building...?



 









    





Hello,





 





It has been less than a month since we
shipped Flex, but I know many folks on this list had projects they started back
in the public beta time.  I know in many cases you may not be able to talk
about what projects you are working on, but for those who can I'd love to get a
view onto what folks are building.  We spent a long time (almost two years)
on all the parts of the Flex 2 product line (and the Flash Player 9) and it is
very cool to see the traffic here, the emergence of third party conferences
like www.flexseminar.com, the books
coming out on Flex, the 60K plus downloads of the IDE in the public beta, but
we'd love to get a sense of what real applications people are starting to
build.  The team is already working on plans for mid-term and longer term
upgrades to Flex, and it helps us to really understand what people are
building.  So, if you are able to talk about what you are building please
do share--I think it would be very interesting for the community and very
valuable for us on the Flex team at Adobe.





 





--David





Adobe








__._,_.___





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



  






__,_._,___








--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.1/391 - Release Date: 7/18/2006
 

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.1/391 - Release Date: 7/18/2006
 


Re: [flexcoders] Getting Data Out of Rollovers in TileLists

2006-07-20 Thread Ethan Miller
I found that this works as well (when it's an object with fields):

var o = getItem ( myTileList, 2, 2 ) ["label"];
trace(o); // Some Label

Thanks again, this totally worked!

ethan


> getItem returns whatever is at the index you are hover over.
>
> So, if it's a string, you'll get:
>
> var o = getItem ( myTileList, 2, 2 );
> trace(o); // Cow
>
> If it's an Object with the fields label, and data, you'll get this:
>
> trace(o); // [object Object];
> trace(o.label); // Some Label
> trace(o.data); // 42
>
> If it's a class object, like a ValueObject, you'll get the  
> ValueObject:
>
> var person:PersonVO = new PersonVO("Jester", "XL");
> my_collection.addItem(person);
>
> // later...
> var o:PersonVO = getItem ( myTileList, 2, 2 ) as PersonVO;
> trace(o.firstName); // Jester
>
> You've already got the power... use it for teh w1n!
>





 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/
 




[flexcoders] Problems binding results of

2006-07-20 Thread yaagcur
I have been using   to obtain data via a cfc with
returntype query
 
The result comes back as result = mx.collections.ArrayCollection 
with a list of Objects each with a set of properties
which I turn into a bindable ArrayCollection via 
myAC = new ArrayCollection(mx.utils.ArrayUtil.toArray(event.result))

I then use myAC as the dataProvider for a dataGrid.


However, when I use  for a similar process,
the result is returned as an Array with a list of mx.utils.ObjectProxy
each with a set of properties

I'm having trouble getting at this data so I can bind it to the dataGrid
Any idea what I should be doing - and why RemoteObject and WebService
present data differently






 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] DateField cellRenderer not working with date as String

2006-07-20 Thread John Buhl



Yes.  The data can be parsed fine.  I think I need somehow to use a Model with my XML so I can massage the data first, and then set the dataProvider to the Model instead of the XML object.  Still researching...
 
On 7/20/06, Tom Chiverton <[EMAIL PROTECTED]> wrote:
On Thursday 20 July 2006 15:53, John Buhl wrote:> field comes across as text, so I'm trying to cast it into a Date object
> before using the cellRenderer component.  But it just won't work.  HasWhat format is the data string in ? Is it one Date can parse itself ?--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.
CONFIDENTIALITYThis 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. 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/-- ***John Buhl770-722-5209 (c)770-234-6710 (f)
*** 

__._,_.___





--
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: Chart data transitions effects when using AS

2006-07-20 Thread Doug Lowder
The interpolation should work when adding data sets; I'm thinking it 
would look the same as going from a 0-datapoint series to a non-0 
series.  Removing a data set, on the other hand, may just cause it 
to instantly disappear from the chart, since the effect is defined 
on the series.

--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> 
wrote:
>
> On Wednesday 19 July 2006 17:35, Doug Lowder wrote:
> > The Series class has a showDataEffect.  Ely has some source code
> > available at 
http://demo.quietlyscheming.com/ChartSampler/srcview/
> > that demonstrates how to use it.  Take a look at the
> >  and  declarations in
> > Interpolate.mxml under examples.effects.
> 
> Right, he's doing it:
>  
> 
> 
> i.e. have the set bound to a DP, and updating the DP.
> This I can use for when the list of sets is the same size always 
(because I 
> can list all the series' in the MXML), ta.
> 
> What about if I want to show a nice transition when the graph 
changes from 
> having (say) 2 data sets to 4 ?
> -- 
> 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.
>






 Yahoo! Groups Sponsor ~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] Cryptology libraries for Flex

2006-07-20 Thread Dmitry Miller
Hello, everyone

Does anyone know if there is an implementation of tripple DES
algorithm for ActionScript 3.0? 

Thanks,

--- Dmitry





 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 Blows Up in Production Player

2006-07-20 Thread David Mendels
Hi,

Sorry about the challenges purchasing the product.  I just pinged the
folks responsible and will try to make sure someone closes the loop with
you asap.

Thanks,
David 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of dadrobson
> Sent: Thursday, July 20, 2006 6:19 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] App Blows Up in Production Player
> 
> We have the boxed version of FlexBuilder 2 on back-order; 
> Adobe tells us they're out of stock. Adobe's website won't 
> take our corporate credit cards, so we can't order the 
> download version.
> 
> Meanwhile, I've completed an entire app in Flex Builder 2 
> Beta 3. It works beautifully in the Beta debug player 
> (9.0.0.296). However, it fails utterly when run in the 
> production version of the player (9.0.16.0). 
> 
> The major problems involve HTTPService requests. Some of them 
> work fine, but most fail. Of those that fail, some return 
> HTTP errors, but others just fail. 
> 
> Other problems include outlines around images that should not 
> have outlines, and various items being drawn in the wrong place.
> 
> In short, it's a complete mess. The difference between 
> running the app in the Beta player vs. the production player 
> is night and day. It is truly incredible. 
> 
> If anyone at Adobe wants to see what I mean, I'd be glad to show them.
> I don't think I could get clearance to post the app on a 
> public web server, but I would be glad to work with them to 
> find a way to show them what's happening.
> 
> If anyone has any suggestions at all, please let me know what 
> they are.
> 
> Jim
> 
> 
> 
> 
> 
> 
> 
>  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
> 
> 
> 
>  
> 
> 
> 


 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] Flex arrows?

2006-07-20 Thread JesterXL





Books?  I don't much care for books... they're 
full of truths.
 
I went digging into the defaults.css and ripped out 
what I saw in there for DateChooser.  It's located here for 
me:
 
C:\Program Files\Adobe\Flex Builder 2 Plug-in\Flex 
SDK 2\frameworks
 
The reason I put it in the CSS is that you can use 
multiple NextDateButtons, and they are only 1 line, not the 14 below.  
However, if you are only using it once in your app, it's not worth extending 
Button & putting it as a CSS selector like I did.
 
If you need more info and are brave, look at the 
class here:
 
C:\Program Files\Adobe\Flex Builder 2 Plug-in\Flex 
SDK 2\frameworks\source\mx\controls
 
I'm sure it may reveal how it's handling some of 
the skins.
 
 
- Original Message - 
From: Douglas 
Knudsen 
To: flexcoders@yahoogroups.com 
Sent: Thursday, July 20, 2006 12:26 PM
Subject: Re: [flexcoders] Flex arrows?
holy kow batman!  Thank you Jester!  I'm now fully 
lost, what book is this stuff you suggested in?  have to read up!  
I will add somehting i just found thoughone word  
Binding!  ooops!  The below is starting to work.  Just have to 
figure out the settings used in the DateChooser to get things to work exactly 
the same.  Maybe make a custom component of just the button to share later. 
Thanks again d00d!        
upSkin="{mx.skins.halo.DateChooserMonthArrowSkin }"    
    downSkin="{mx.skins.halo.DateChooserMonthArrowSkin }" 
        
overSkin="{mx.skins.halo.DateChooserMonthArrowSkin }"    
    disabledSkin="{mx.skins.halo.DateChooserMonthArrowSkin 
}"        
selectedUpSkin="{mx.skins.halo.DateChooserMonthArrowSkin 
}"        
selectedOverSkin="{mx.skins.halo.DateChooserMonthArrowSkin 
}"        
selectedDownSkin="{mx.skins.halo.DateChooserMonthArrowSkin 
}"        
selectedDisabledSkin="{mx.skins.halo.DateChooserMonthArrowSkin 
}"        
overIcon="{mx.skins.halo.DateChooserMonthArrowSkin }"  
        
downIcon="{mx.skins.halo.DateChooserMonthArrowSkin }"     
    icon="{mx.skins.halo.DateChooserMonthArrowSkin 
}"        
disabledIcon="{mx.skins.halo.DateChooserMonthArrowSkin }"    
    upIcon="{mx.skins.halo.DateChooserMonthArrowSkin 
}"            
            
     />DK
On 7/20/06, JesterXL 
<[EMAIL PROTECTED]> 
wrote:

  
  
  Here G, this should get you started:
   
  http://pastebin.de/9387
   
  http://pastebin.de/9388
   
   
   
   
  http://www.adobe.com/2006/mxml" layout="vertical" 
  xmlns:local="*">
   
    
   
  NextMonthButton{ /* 
  ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); */ /* 
  ClassReference("mx.skins.halo.DateChooserYearArrowSkin"); */ /* 
  ClassReference("mx.skins.halo.DateChooserIndicator"); 
  */  disabledIcon: 
     ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); downIcon:ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); icon: ClassReference("mx.skins.halo.DateChooserMonthArrowSkin 
  "); overIcon: 
  ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedDisabledIcon: 
   ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedDownIcon: 
    ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedOverIcon: 
    ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedUpIcon: 
    ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); upIcon: ClassReference("mx.skins.halo.DateChooserMonthArrowSkin");}
   
   
  
  - Original Message - 
  From: 
  Douglas Knudsen 

  To: flexcoders@yahoogroups.com 
  
  Sent: Thursday, July 20, 2006 10:56 AM
  Subject: Re: [flexcoders] Flex arrows?
  
  
  no workiehope jester's bag of tricks is deep!  
  I looked around the Flex SDK source and see no arrow pngs at all, many 
  other pngs though.  My guess is the arrows are compiled in a swc 
  somewheres, which means they should be 'grabable' eh?  Be nice to use any 
  graphics in the SDK in custom components to maintain the 'Flexiness', eh? 
  What I'm trying to do is create a next/previous month browser.  
  We have reports that users run on a month end basis, the datechoser is really 
  not the right tool for this.  I'm just using mxml to do this 
  currently...suppose I will have to go off and lear the way of the force for 
  building components soon. DK
  On 7/19/06, JesterXL <[EMAIL PROTECTED]> wrote: 
  


Hrm... try:
 

 
If that doesn't work, I have more 
ideas.
 
The skin is already imported in the 
defaults.css, so she IS in there.
 

- Original Message - 
From: 
Douglas Knudsen 

To: flexcoders@yahoogroups.com 

Sent: Wednesday, July 19, 2006 4:00 PM
Subject: Re: [flexcoders] Flex arrows?


hmm, ok, I'm lost when it comes to fancy UI stuff  
:)  How do you make use of this?        
upSkin="DateChooserMonthArrowSkin" />throws a def not found 
error.  Do I import the sckin somehow? DK
On 7/19/06, JesterXL < 
[EMAIL PROTECTED]> wrote: 

  
  
 

RE: [Junk E-Mail - MED] [flexcoders] Please Put Back Multiple Select in Tree Control

2006-07-20 Thread Shannon Hicks





Now all you need to do is put that into the wish 
box...
 
http://www.adobe.com/go/wish/
 
Remember... flexcoders is just monitored by some of the 
Adobe guys when they can... use the official channels for the important stuff 
:)
 
Shan


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of sufibabaSent: 
Thursday, July 20, 2006 11:37 AMTo: 
flexcoders@yahoogroups.comSubject: [Junk E-Mail - MED] [flexcoders] 
Please Put Back Multiple Select in Tree Control


Dearest Adobe Flex Engineers,Our application uses the Tree control's 
multiple selection quiteheavily. At first, we thought it was a bug in the 
final release butthen realised that this functionality had been dropped due 
to bugissues. Please reinstate this feature because we really really need 
it.Thanks for your understanding and super fine efforts in 
puttingtogether the best Flex product,- Tim
--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 
7/19/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.



  






__,_._,___



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 7/19/2006
 


Re: [flexcoders] Datagrid/Webservices - best practice??

2006-07-20 Thread JesterXL





What we do in Cairngorm:
- bind DataGrid to ModelLocator
- refresh button fires off Command to call 
WebService
- when Delegate comes back, Command puts data on 
ModelLlocator
- this fires the bindings and the DataGrid to 
update
 
If you click the button again, the above 
repeats.
 
- Original Message - 
From: Ken Bromberger 

To: flexcoders@yahoogroups.com 
Sent: Thursday, July 20, 2006 12:22 PM
Subject: [flexcoders] Datagrid/Webservices - best 
practice??


Hello 
All,
 
If I have a web service operation 
that populates a datagrid and an operation in the same web service that inserts 
a record, what would be the best way to then get the initial web service to 
refresh the data grid when an insert has occurred and an identity result has 
been successfully sent back?? I know there are a lot of ways to handle data in 
Flex, but I am unclear on what the best methods are for keeping the data fresh 
on the client… any tips would be appreciated!! (If you haven’t guessed, I’m new 
to Flex)
 
Thanks! 
-Ken
 
 
 

 
  
__._,_.___





--
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] Please Put Back Multiple Select in Tree Control

2006-07-20 Thread sufibaba
Dearest Adobe Flex Engineers,

Our application uses the Tree control's multiple selection quite
heavily. At first, we thought it was a bug in the final release but
then realised that this functionality had been dropped due to bug
issues.  Please reinstate this feature because we really really need it.

Thanks for your understanding and super fine efforts in putting
together the best Flex product,

- Tim








 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] Flex arrows?

2006-07-20 Thread Douglas Knudsen



holy kow batman!  Thank you Jester!  I'm now fully lost, what book is this stuff you suggested in?  have to read up!  I will add somehting i just found thoughone word  Binding!  ooops!  The below is starting to work.  Just have to figure out the settings used in the DateChooser to get things to work exactly the same.  Maybe make a custom component of just the button to share later.
Thanks again d00d!        upSkin="{mx.skins.halo.DateChooserMonthArrowSkin }"        downSkin="{mx.skins.halo.DateChooserMonthArrowSkin }"
        overSkin="{mx.skins.halo.DateChooserMonthArrowSkin }"        disabledSkin="{mx.skins.halo.DateChooserMonthArrowSkin }"        selectedUpSkin="{mx.skins.halo.DateChooserMonthArrowSkin
 }"        selectedOverSkin="{mx.skins.halo.DateChooserMonthArrowSkin }"        selectedDownSkin="{mx.skins.halo.DateChooserMonthArrowSkin }"        selectedDisabledSkin="{mx.skins.halo.DateChooserMonthArrowSkin
 }"        overIcon="{mx.skins.halo.DateChooserMonthArrowSkin }"          downIcon="{mx.skins.halo.DateChooserMonthArrowSkin }"         icon="{mx.skins.halo.DateChooserMonthArrowSkin
 }"        disabledIcon="{mx.skins.halo.DateChooserMonthArrowSkin }"        upIcon="{mx.skins.halo.DateChooserMonthArrowSkin }"                             />
DKOn 7/20/06, JesterXL <[EMAIL PROTECTED]> wrote:









Here G, this should get you started:
 
http://pastebin.de/9387
 
http://pastebin.de/9388
 
 
 

http://www.adobe.com/2006/mxml" 
layout="vertical" xmlns:local="*">
 
  
 
NextMonthButton{ /* 
ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); */ /* 
ClassReference("mx.skins.halo.DateChooserYearArrowSkin"); */ /* 
ClassReference("mx.skins.halo.DateChooserIndicator"); 
*/  disabledIcon: 
   ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); downIcon:ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); icon: ClassReference("mx.skins.halo.DateChooserMonthArrowSkin
"); overIcon: 
ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedDisabledIcon: 
 ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedDownIcon: 
  ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedOverIcon: 
  ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedUpIcon: 
  ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); upIcon: ClassReference("mx.skins.halo.DateChooserMonthArrowSkin");}
 
 
- Original Message - 
From: 
Douglas 
Knudsen 
To: flexcoders@yahoogroups.com
 
Sent: Thursday, July 20, 2006 10:56 AM
Subject: Re: [flexcoders] Flex arrows?
no workiehope jester's bag of tricks is deep!  I 
looked around the Flex SDK source and see no arrow pngs at all, many other pngs 
though.  My guess is the arrows are compiled in a swc somewheres, which 
means they should be 'grabable' eh?  Be nice to use any graphics in the SDK 
in custom components to maintain the 'Flexiness', eh? What I'm trying to 
do is create a next/previous month browser.  We have reports that users run 
on a month end basis, the datechoser is really not the right tool for 
this.  I'm just using mxml to do this currently...suppose I will have to go 
off and lear the way of the force for building components soon. 
DK
On 7/19/06, JesterXL 
<[EMAIL PROTECTED]> 
wrote:

  
  
  Hrm... try:
   
  
   
  If that doesn't work, I have more 
  ideas.
   
  The skin is already imported in the defaults.css, 
  so she IS in there.
   
  
  - Original Message - 
  From: 
  Douglas Knudsen
 

  To: 
flexcoders@yahoogroups.com 
  
  Sent: Wednesday, July 19, 2006 4:00 PM
  Subject: Re: [flexcoders] Flex arrows?
  
  
  hmm, ok, I'm lost when it comes to fancy UI stuff  
  :)  How do you make use of this?        
  upSkin="DateChooserMonthArrowSkin" />throws a def not found 
  error.  Do I import the sckin somehow? DK
  On 7/19/06, JesterXL <
[EMAIL PROTECTED]> wrote: 
  


Found these digging in DateChooser.as.  
I'm assuming these skins are compiled into the base framework.  Try 
using like DateChooserMonthArrowSkin as one of your upSkins and see what 
happens.
 
 *    
nextMonthDisabledSkin="DateChooserMonthArrowSkin" *    
nextMonthDownSkin="DateChooserMonthArrowSkin" *    
nextMonthOverSkin="DateChooserMonthArrowSkin" *    
nextMonthUpSkin="DateChooserMonthArrowSkin" *    
nextYearDisabledSkin="DateChooserYearArrowSkin" *    
nextYearDownSkin="DateChooserYearArrowSkin" *    
nextYearOverSkin="DateChooserYearArrowSkin" *    
nextYearUpSkin="DateChooserYearArrowSkin" *    
prevMonthDisabledSkin="DateChooserMonthArrowSkin" *    
prevMonthDownSkin="DateChooserMonthArrowSkin" *    
prevMonthOverSkin="DateChooserMonthArrowSkin" *    
prevMonthUpSkin="DateChooserMonthArrowSkin" *    
prevYearDisabledSkin="DateChooserYearArrowSkin" *    
prevYearDownSkin="DateChooserYearArrowSkin" *    
prevYearOverSkin="DateChooserYearArrowSkin" *    
prevYearUpSkin="DateChooserYe

[flexcoders] Re: Strange behavior in datagrid

2006-07-20 Thread Colin Wiseley










I had this problem too with extra rows displaying sometimes
both above and below the actual control as you scrolled the datagrid.  I had an
embedded font in the header style for the datagrid.  Turning off the embedded
font and using a client font for the header fixed it for me.

 

Colin

 

 

 

--- In flexcoders@yahoogroups.com, "Joe Stramel"
<[EMAIL PROTECTED]> wrote:

> 

> I have a datagrid in my app that is displaying one row
of data BELOW the actual visible control.  Any idea what could cause something
like that?

> 

 




__._,_.___





--
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] Updates for Flex 2.0?

2006-07-20 Thread Sergey Kovalyov
Just posted there. Sure, it's interesting to know, whether new
features of IDE will be implemented in next version only or they can
arrive with some kind on Flex 2.0 Update Pack. :)

On 7/20/06, Tom Chiverton <[EMAIL PROTECTED]> wrote:
> On Thursday 20 July 2006 15:34, Sergey Kovalyov wrote:
> > Are there any plans regarding updates or add-ons for Flex 2.0 by
> > Adobe?
>
> I imagine so.
> Have you dropped your list in the box at http://adobe.com/go/wish ?
> --
> Tom Chiverton


 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/
 





[flexcoders] Datagrid/Webservices - best practice??

2006-07-20 Thread Ken Bromberger










Hello All,

 

If I have a web service operation
that populates a datagrid and an operation in the same web service that inserts
a record, what would be the best way to then get the initial web service to
refresh the data grid when an insert has occurred and an identity result has
been successfully sent back?? I know there are a lot of ways to handle data in
Flex, but I am unclear on what the best methods are for keeping the data fresh
on the client… any tips would be appreciated!! (If you haven’t
guessed, I’m new to Flex)

 

Thanks! -Ken

 

 

 



 



 




__._,_.___





--
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] Cairngorm 2 - Operation.arguments not clearing after call

2006-07-20 Thread ben.clinkinbeard
Hello all, this post is a bit long but I have tried to organize it to
accomodate easy reading. I have modified my ServiceLocator so that my
services are defined in AS, and am calling loadWSDL() from the
constructor of my delegates. The problem is that if I call an
operation more than once in my app, the arguments property never seems
to get cleared, it just ends up with multiple copies of the the
current set of arguments in it.  These are some snippets of my code:

Services.mxml (inside a Script tag obviously)
// *** CLIENT MEASURES WEB SERVICE ***
cmws = new mx.rpc.soap.WebService();
cmws.useProxy = cmws.makeObjectsBindable = false;

ClientMeasuresDelegate.as
public function ClientMeasuresDelegate(callingCommand:IResponder) 
 {
responder = callingCommand;
service = ServiceLocator.getInstance().getService("cmws") as
WebService;
  
service.loadWSDL(ModelLocator.getInstance()[EMAIL PROTECTED]
+ "?WSDL");
  }

public function loadClientMeasures():void
  {
var op:Operation = service.getOperation("GetDataByGrouping") as
Operation;
op.resultFormat = "e4x";
op.arguments.groupingRequests = new Object();
op.arguments.groupingRequests.GroupName = "RPRTool";
...
}

LoadClientMeasuresCommand.as
public function execute(event:CairngormEvent):void
{
var delegate:ClientMeasuresDelegate = new ClientMeasuresDelegate(this);
delegate.loadClientMeasures();
}

The second time I call loadClientMeasures(), there are 2
groupingRequests objects on the arguments property, the third time
there are 3, etc, but the contents of each are identical (even though
other arguments that are not shown here change between calls).
Shouldn't these be getting cleared since I am
creating a new instance of ClientMeasuresDelegate each time? Any help
is appreciated.

Thanks,
Ben





 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/
 




[flexcoders] Re: Confusion about 'Security error accessing url'

2006-07-20 Thread flexava
Ya,I know the existence of crossdomain.xml.But what really confused me
is that the generated swf file can run in the bin directory without a
crossdomain.xml file put in the root of the server while it failed to
run in other position!! I can't figure out why.
--- In flexcoders@yahoogroups.com, "jrunrandy" <[EMAIL PROTECTED]> wrote:
>
> I was just looking at this page in the tutorial: 
> http://livedocs.macromedia.com/flex/2/docs/0071.html
> 
> You probably need to define a crossdomain.xml file on the server 
> running the web service. 
> 
> This Flex docs have more information on this topic, as well as this 
> technote: http://www.adobe.com/go/14213
> 
> HTH
> Randy Nielsen
> Flex Documentation Manager
> 
> 
> --- In flexcoders@yahoogroups.com, "flexava"  wrote:
> >
> > After building finished,I ran the generated wstest.swf in the 
> > directory called bin,the output directory of the flex 
> > project,everything is ok.But when I put the swf file in another 
> > position, say, c:/. Then when I ran the swf file an error message was 
> > returned saying 'Security error accessing url'. I can't understand 
> > why this happened. It seems the swf file can only run under the bin 
> > directory. Any one can help? Thanks!
> >
>







 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/
 




[flexcoders] Re: How do I reset itemRenderer inside DataGrid when dataProvider is updated?

2006-07-20 Thread ben.clinkinbeard
Hey Tim,

No worries, I didn't think you were being harsh, I just wanted to
clarify what I was referring to. I am very new to Flex, so as long as
it doesn't involve calling me names I am willing to listen to just
about any advice. Actually, I could probably overlook namecalling if
the info was good enough. :)

I suppose I understand the event firing due to the redraw, it just
seems like a 'dataChange' event should only fire when, you know, data
changes. I will look into your article and custom events when I get
some time, thanks for the tip.

Jesse, going to those lengths seems like a bit of overkill when all
the itemRenderer consists of is a Checkbox with a dynamic label. I
guess for now I will stick with my 'dirty and hackish' flag var, until
I have time to further investigate/implement something like what Tim
showed.

Thanks for everyone's help.

Ben






 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] DateField cellRenderer not working with date as String

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 15:53, John Buhl wrote:
> field comes across as text, so I'm trying to cast it into a Date object
> before using the cellRenderer component.  But it just won't work.  Has

What format is the data string in ? Is it one Date can parse itself ?

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



 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] double click in a cell adds an icon?

2006-07-20 Thread djbrown_rotonews
I've got a dataGrid, and I want to add an icon to a particular cell 
when I doubleclick on it. I know how to capture the doubleclick event, 
etc.. but how do I go about adding the icon to the current contents of 
the renderer (it's plain text by default)






 Yahoo! Groups Sponsor ~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/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] Binding 2 datagrids and videoDisplay

2006-07-20 Thread franto



i think, you read something from localfilesyustem and web as well?i have same problem... but I have to use compiler directive use_network=trueand use just network, than this error didnt occurs anymore(it was because flv wasnt downlaoding
from webOn 7/18/06, tonyx_788 <[EMAIL PROTECTED]> wrote:













  



hi everyone,i have two datagrids1st datagrid id="datagrid1" dataprovider="myxml.xml"2nd datagrid id="datagrid2" dataprovider="{datagrid1.selectedItem.video}"
and a videoDisplay source="{datagrid2.selectedItem.video}" i tried with [EMAIL PROTECTED] and nothingi get this errorno bitrate match error 1000myxml.xml
any nameany descany.flvany2.flv


  













-- -
Frantohttp://blog.franto.comhttp://www.flashcoders.sk

__._,_.___





--
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] Strange behavior in datagrid

2006-07-20 Thread Joe Stramel





I have a datagrid in my app that is displaying one 
row of data BELOW the actual visible control.  Any idea what could cause 
something like that?
 
__._,_.___





--
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] Flex Builder 2 & RDS Connection problems

2006-07-20 Thread Brian Holmes
Tom,
 I did try just a '/' for the context root and still can't connect. I'm
beginning to think that it's got to be something on our network as I
have been able to connect to RDS everywhere but here it seems.

Thanks.
Brian.
 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Chiverton
Sent: Thursday, July 20, 2006 4:21 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex Builder 2 & RDS Connection problems

On Wednesday 19 July 2006 19:56, Brian Holmes wrote:
> no context root

Not even '/' ?

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



 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



 







***
The information in this e-mail is confidential and intended solely for the 
individual or entity to whom it is addressed.  If you have received this e-mail 
in error, please notify the sender by return e-mail, delete this e-mail, and 
refrain from any disclosure or action based on the information.
*** 



 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] return STRUCT type from CFC to flex

2006-07-20 Thread Nick Collins



Cool! Thanks MikeOn 7/20/06, Mike Nimer <[EMAIL PROTECTED]> wrote:













  



Next time you run into a problem like this, you can use this to dump what is being returned and figure out what's wrong.

 

http://www.mikenimer.com/index.cfm/2006/7/5/FlexDebugPanel
 
---nimer
 
- Original Message From: Nick Collins <
[EMAIL PROTECTED]>To: flexcoders@yahoogroups.com
Sent: Thursday, July 20, 2006 10:00:37 AMSubject: Re: [flexcoders] return STRUCT type from CFC to flex

OK, I am using RemoteObject. Tom's suggestion of putting the variables all UPPERCASE worked! Thanks Tom.I think I do have value object created in the CFC. I'm not familiar with what exactly you're referring to, but this is what I have to create the variables: 
                
In any case, it works now. Thanks again!

  















__._,_.___





--
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] Deselecting a Tab ??

2006-07-20 Thread Ralf Bokelberg
You can override it, but you can't change the internal _selectedIndex,
so it's useless.

Found another solution though:

tabNavigator.getTabAt(tn.selectedIndex).selected=false;

Cheers,
Ralf.




On 7/20/06, Tom Chiverton <[EMAIL PROTECTED]> wrote:
> On Thursday 20 July 2006 15:26, Ralf Bokelberg wrote:
> > Unfortunately _selectedIndex is private, so we are not able to assign
>
> Can you not use
> override public set selectedIndex()
> ?
>
> --
> 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.
>
>
>
>
> --
> 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
>
>
>
>
>
>
>


-- 
Ralf Bokelberg <[EMAIL PROTECTED]>
Flex & Flash Consultant based in Cologne/Germany


 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] Flex arrows?

2006-07-20 Thread JesterXL





Here G, this should get you started:
 
http://pastebin.de/9387
 
http://pastebin.de/9388
 
 
 
http://www.adobe.com/2006/mxml" 
layout="vertical" xmlns:local="*">
 
  
 
NextMonthButton{ /* 
ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); */ /* 
ClassReference("mx.skins.halo.DateChooserYearArrowSkin"); */ /* 
ClassReference("mx.skins.halo.DateChooserIndicator"); 
*/  disabledIcon: 
   ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); downIcon:ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); icon: ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); overIcon: 
ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedDisabledIcon: 
 ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedDownIcon: 
  ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedOverIcon: 
  ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); selectedUpIcon: 
  ClassReference("mx.skins.halo.DateChooserMonthArrowSkin"); upIcon: ClassReference("mx.skins.halo.DateChooserMonthArrowSkin");}
 
 
- Original Message - 
From: Douglas 
Knudsen 
To: flexcoders@yahoogroups.com 
Sent: Thursday, July 20, 2006 10:56 AM
Subject: Re: [flexcoders] Flex arrows?
no workiehope jester's bag of tricks is deep!  I 
looked around the Flex SDK source and see no arrow pngs at all, many other pngs 
though.  My guess is the arrows are compiled in a swc somewheres, which 
means they should be 'grabable' eh?  Be nice to use any graphics in the SDK 
in custom components to maintain the 'Flexiness', eh? What I'm trying to 
do is create a next/previous month browser.  We have reports that users run 
on a month end basis, the datechoser is really not the right tool for 
this.  I'm just using mxml to do this currently...suppose I will have to go 
off and lear the way of the force for building components soon. 
DK
On 7/19/06, JesterXL 
<[EMAIL PROTECTED]> 
wrote:

  
  
  Hrm... try:
   
  
   
  If that doesn't work, I have more 
  ideas.
   
  The skin is already imported in the defaults.css, 
  so she IS in there.
   
  
  - Original Message - 
  From: 
  Douglas Knudsen 

  To: flexcoders@yahoogroups.com 
  
  Sent: Wednesday, July 19, 2006 4:00 PM
  Subject: Re: [flexcoders] Flex arrows?
  
  
  hmm, ok, I'm lost when it comes to fancy UI stuff  
  :)  How do you make use of this?        
  upSkin="DateChooserMonthArrowSkin" />throws a def not found 
  error.  Do I import the sckin somehow? DK
  On 7/19/06, JesterXL <[EMAIL PROTECTED]> wrote: 
  


Found these digging in DateChooser.as.  
I'm assuming these skins are compiled into the base framework.  Try 
using like DateChooserMonthArrowSkin as one of your upSkins and see what 
happens.
 
 *    
nextMonthDisabledSkin="DateChooserMonthArrowSkin" *    
nextMonthDownSkin="DateChooserMonthArrowSkin" *    
nextMonthOverSkin="DateChooserMonthArrowSkin" *    
nextMonthUpSkin="DateChooserMonthArrowSkin" *    
nextYearDisabledSkin="DateChooserYearArrowSkin" *    
nextYearDownSkin="DateChooserYearArrowSkin" *    
nextYearOverSkin="DateChooserYearArrowSkin" *    
nextYearUpSkin="DateChooserYearArrowSkin" *    
prevMonthDisabledSkin="DateChooserMonthArrowSkin" *    
prevMonthDownSkin="DateChooserMonthArrowSkin" *    
prevMonthOverSkin="DateChooserMonthArrowSkin" *    
prevMonthUpSkin="DateChooserMonthArrowSkin" *    
prevYearDisabledSkin="DateChooserYearArrowSkin" *    
prevYearDownSkin="DateChooserYearArrowSkin" *    
prevYearOverSkin="DateChooserYearArrowSkin" *    
prevYearUpSkin="DateChooserYearArrowSkin"

 
 
- 
Original Message - 
From: 
Douglas Knudsen 

To: flexcoders@yahoogroups.com 
Sent: Wednesday, July 19, 2006 3:19 PM
Subject: [flexcoders] Flex arrows?
So, I'm creating a custom component with next/previous 
functionality.  I'd like to use the same arrows on say the DateChooser 
control.  Are these avaialbale to the developer somehow?DK-- Douglas Knudsen http://www.cubicleman.com
this is my signature, like it? -- 
  Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it? 
  
  -- Douglas 
Knudsenhttp://www.cubicleman.comthis is my 
signature, like it?  
__._,_.___





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

[flexcoders] [Bindable] not working

2006-07-20 Thread polestar11
Hi there

I have a class containing 2 variables, which I am trying to bind to a
seperate component. I am not using Cairngorm, although the structure
is quite similar, in that I have a component (view) that references
values in a singleton class (model)

In the model-like class I have the following:

public function addItem(item:MyClassObject) {
 currentItem = item;
 currentItems.addItem(item);
}

[Bindable]
public var currentItem:MyClassObject;
[Bindable]
public var currentItems:ArrayCollection;

In the view-like class I reference the variables like so:




In the script part of this component I reference the model-like class:
[Bindable]
public var itemManager:ItemManager = ItemManager.getInstance();  

My MultiView class is a custom component that takes the
ArrayCollection of 'currentItems' and adds them as children. There
might be a problem in this code preventing the associated children
from updating. 

The binding should however work for the label (tmpLabel).

Any help much appreciated

Tracy









 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] Looking for Free SWF Projector

2006-07-20 Thread hank williams



Edwin is working on flash 9, but it is crashing right now.You should join the mailing list at haxe.org. Edwin (the author of screenweaver) and Nicolas canasse have created a new screenweaver called screenweaver swhx. Flash 9 support as soon as he fixes the bug. Its quite cool. All of the stuff you do that communicates with the local OS is done in a language called haxe which is very similar to actionscript, but a good bit more powerful. Nicolas is the guy that did MTASC. It is a great project that will, I think, ultimately beat things like zinc, once they get all the kinks out.
RegardsHankOn 7/20/06, JesterXL <[EMAIL PROTECTED]> wrote:









Rock and a hard place.
 
Screenweaver is open source, I believe supports 
Flash Player 8 and below:
http://www.osflash.org/screenweaver

 
Zinc 2.5 supports Flex 2, but is not open 
source.
http://www.multidmedia.com/software/zinc/
 
 
- Original Message - 
From: 
Shade Gmail 

To: flexcoders@yahoogroups.com
 
Sent: Thursday, July 20, 2006 6:11 AM
Subject: [flexcoders] Looking for Free SWF Projector

Hey, everyone,
 
   I'm developing an open-source local application which requires 
file access (browse, load, save). Are there any open-source / free projectors I 
could use to play my swf app with a file access API? An alternative 
_javascript_-oriented solution would work great as well. I've seen some online but 
they're either abandoned or do not provide the necessary API. 
 
Thanks in advance,
 
 Pedro. 





__._,_.___





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

2006-07-20 Thread Ferran Rosales




Be one of the first to try  Windows Live Mail.
__._,_.___





--
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] Acegi/Spring/Flex authentication

2006-07-20 Thread flxcoder
Hi all.

Maybe not a flex question but relevant.

I am trying to authenticate flex into my middle tier by using acegi. 
I am moderately familiar with acegi and the saying goes that the 
filter checks the entry point as

   
  /acegilogin.jsp
  false
   

Question is then, has anyone integrated acegi with flex because in 
the above case maybe the loginFormUrl can be /acegiLogin.jsp where 
the jsp holds the main swf for flex.

Looking for tips on where to start and where to head off with the 
integration.

Thanks.






 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/
 




[flexcoders] DateField cellRenderer not working with date as String

2006-07-20 Thread John Buhl



The DateField cellRenderer works great when your date is already a Date object.  However, since I am dynamically reading in an XML file the date field comes across as text, so I'm trying to cast it into a Date object before using the cellRenderer component.  But it just won't work.  Has anyone run into this problem yet?

 
           

__._,_.___





--
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] return STRUCT type from CFC to flex

2006-07-20 Thread Mike Nimer


Next time you run into a problem like this, you can use this to dump what is being returned and figure out what's wrong.
 
http://www.mikenimer.com/index.cfm/2006/7/5/FlexDebugPanel
 
---nimer
 
- Original Message From: Nick Collins <[EMAIL PROTECTED]>To: flexcoders@yahoogroups.comSent: Thursday, July 20, 2006 10:00:37 AMSubject: Re: [flexcoders] return STRUCT type from CFC to flex

OK, I am using RemoteObject. Tom's suggestion of putting the variables all UPPERCASE worked! Thanks Tom.I think I do have value object created in the CFC. I'm not familiar with what exactly you're referring to, but this is what I have to create the variables:                 In any case, it works now. Thanks again!

__._,_.___





--
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 - MED] [flexcoders] Subclassing the flex DateChooser

2006-07-20 Thread Paul Andrews





Thank you!

  - Original Message - 
  From: 
  Shannon Hicks 
  
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, July 20, 2006 3:08 
  PM
  Subject: RE: [Junk E-Mail - MED] 
  [flexcoders] Subclassing the flex DateChooser
  
  http://weblogs.macromedia.com/khoyt/archives/2005/03/custom_calendar.cfm
   
  Shan
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Paul 
  AndrewsSent: Thursday, July 20, 2006 8:55 AMTo: flexcoders@yahoogroups.comSubject: 
  [Junk E-Mail - MED] [flexcoders] Subclassing the flex 
  DateChooser
  
  
  Any good examples out there?Paul
  --No virus found in this incoming message.Checked by 
  AVG Free Edition.Version: 7.1.394 / Virus Database: 268.10.2/393 - Release 
  Date: 7/19/2006 
  --No virus found in this outgoing message.Checked by 
  AVG Free Edition.Version: 7.1.394 / Virus Database: 268.10.2/393 - Release 
  Date: 7/19/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] Really weird behavior when changing state

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 15:08, cvich12 wrote:
> Any idea of what could cause this ?

Action script and events are all asynchronous - the order things get logged in 
the debugger need not be the order they actually happened :-)
Do you have something that goes off and fills in the dataProvider that could 
be firing ?

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



 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] Updates for Flex 2.0?

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 15:34, Sergey Kovalyov wrote:
> Are there any plans regarding updates or add-ons for Flex 2.0 by
> Adobe? 

I imagine so.
Have you dropped your list in the box at http://adobe.com/go/wish ?
-- 
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.



 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/
 




  1   2   >