[flexcoders] Race problem with DataGrid highlightbar?

2007-05-24 Thread Jonathan Miranda
I'm trying to do something that I thought was trivial but has become
increasingly difficult. When I mouse over a row (not a cell or
specific item renderer), I want to force a style on a specific columns
itemRenderer. So I have a custom itemRenderer and custom Datagrid so I
can keep track of the highlighted row and change my styles. The styles
are taking, but the highlight selection bar isn't showing anymore (or
if it does, it's VERY briefly). Ideas?

Here's the code, tried to clean it up as good as I can

 CustomDatagrid 

package {

 import mx.controls.DataGrid;

 public class CustomDataGrid extends DataGrid {

   public function CustomDataGrid() {
   super();
   }

   public var highlightedRow:Number;

 }


ComputedLinkRenderer.as

package {

   import CustomDataGrid;

   public class ComputedLinkRenderer extends Label
   {
   // Define the constructor and set properties.
   public function ComputedLinkRenderer() {
   super();
   }


   // Override the set method for the data property.
   override public function set data(value:Object):void {
   super.data = value;
   text="Some Cool Restaurant Name"; // so you see something
   if(listData) {
 var dg:CustomDataGrid = (listData.owner) as CustomDataGrid;
 if(dg.highlightedRow == listData.rowIndex ||
dg.selectedIndex == listData.rowIndex-1) {
   setStyle("color",0xFF);
   setStyle("textDecoration","underline");
 } else {
   setStyle("color",0x00);
   setStyle("textDecoration","none");
 }
   }
   }
   }
}


Implementation of CustomDataGrid 
   private function onRollOver(event:ListEvent):void {
   //if mouse is moving on the same line, don't do anything.
   if(lastRollOverIndex != event.rowIndex) {

 lastRollOverIndex = event.rowIndex;
 grdDashboard.highlightedRow = event.rowIndex;

grdDashboard.dataProvider.itemUpdated(dp[event.rowIndex-1]);
   }

 }

 
 
   
 


It's definately the itemUpdated that's causing it, but I've tried
multiple different iterations of this idea (extending
mouseOver/mouseOut in ListBase, extending drawItem, etc). Is there an
easier solution to this idea or is there just something I can do to
get my highlightbar to come back?

Any help would be great,
Jon M


[flexcoders] Race problem with DataGrid highlightbar?

2007-05-24 Thread Jonathan Miranda
I'm trying to do something that I thought was trivial but has become
increasingly difficult. When I mouse over a row (not a cell or
specific item renderer), I want to force a style on a specific columns
itemRenderer. So I have a custom itemRenderer and custom Datagrid so I
can keep track of the highlighted row and change my styles. The styles
are taking, but the highlight selection bar isn't showing anymore (or
if it does, it's VERY briefly). Ideas?

Here's the code, tried to clean it up as good as I can

 CustomDatagrid 

package {

  import mx.controls.DataGrid;

  public class CustomDataGrid extends DataGrid {

public function CustomDataGrid() {
super();
}

public var highlightedRow:Number;

  }


ComputedLinkRenderer.as

package {

import CustomDataGrid;

public class ComputedLinkRenderer extends Label
{
// Define the constructor and set properties.
public function ComputedLinkRenderer() {
super();
}


// Override the set method for the data property.
override public function set data(value:Object):void {
super.data = value;
text="Some Cool Restaurant Name"; // so you see something
if(listData) {
  var dg:CustomDataGrid = (listData.owner) as CustomDataGrid;
  if(dg.highlightedRow == listData.rowIndex ||
dg.selectedIndex == listData.rowIndex-1) {
setStyle("color",0xFF);
setStyle("textDecoration","underline");
  } else {
setStyle("color",0x00);
setStyle("textDecoration","none");
  }
}
}
}
}


Implementation of CustomDataGrid 
private function onRollOver(event:ListEvent):void {
//if mouse is moving on the same line, don't do anything.
if(lastRollOverIndex != event.rowIndex) {

  lastRollOverIndex = event.rowIndex;
  grdDashboard.highlightedRow = event.rowIndex;
  
grdDashboard.dataProvider.itemUpdated(dp[event.rowIndex-1]);
}

  }

 
  

  


It's definately the itemUpdated that's causing it, but I've tried
multiple different iterations of this idea (extending
mouseOver/mouseOut in ListBase, extending drawItem, etc). Is there an
easier solution to this idea or is there just something I can do to
get my highlightbar to come back?

Any help would be great,
Jon M


Re: [flexcoders] Re: Styling in Flex is officially ridiculous

2006-11-30 Thread Jonathan Miranda

Here's a good question, with styling in mind.in flex 1.5, you had access
directly to the movieclips that made a component. Aka I could do something
like this:


  
  function draw():Void {
 super.draw();

 border_mc.borderStyle = "none";
 border_mc.setStyle("borderStyle","none");
 text_mc.border_mc.borderStyle = "none";
 text_mc.border_mc.setStyle("borderStyle","none");
 downArrow_mc.draw();
 border_mc.draw();
 text_mc.border_mc.draw();
  }
  



Why I had to set it twice is beyond me, it wouldn't work without it but
anywaysthe only way I figured out about these movieclips that made the
components and their names was via asking Adobe Support (this was Flex
1.5though, remember). Nowadays in Flex2, you have access to the
sourcebut
what I'm curious about, is it good practice to be going for these movieclips
for styling, or is it even possible in flex2? (haven't tried honestly) For
his button dilema, you could technically do what I did with border_mc.if
it works still.

-Jon


[flexcoders] Re: FilteredLineSeries and Printing - ChartMan Ely, we need you!

2006-11-06 Thread Jonathan Miranda
Here's the easiest way to explain it.

Dataprovider: (x y filter)
{a 1 red}
{b 2 red}
(c 3 red}
{a 4 blue}
{b 5 blue}
{c 6 blue}

LineChart with 2 FilteredLineSeries - one for red and one for blue.

Right now...
-With no category axis, I have on the x-axis: a b c a b c, with red on
the first set and blue on the second set.
-With a category axis and dataprovider of (a b c), my x-axis has: a b
c, with only showing red.

What I need is a combo of the two with my x-axis only showing: a b c,
but both red/blue showing on that line.

ideas? It looks like my only option is too alter the data to be:
{a red1 blue4}
{b red2 blue5}
{c red3 blue6}
Unless you know some charting voodoo :) Thanks again for the help...

-jon

On 11/5/06, Ely Greenfield <[EMAIL PROTECTED]> wrote:
>
>
> Jonathan --
>
> The Category Axis maps values to catgegories...it can't know how to map
> the same value to multiple categories. What's the behavior you're
> looking for?
>
> Let me suggest one possibility.  In a fully specified situation, the
> series names its xField, loads the value out of that field, and uses the
> category axis to map it to a category.  But most of the time, developers
> don't bother to specify an xField. When that happens, the series just
> assumes that the data appears in the same order as the categories, and
> maps the nth item to the nth category.  In that case, it's theoretically
> possible to have multiple categories representing the same value, since
> no one is actually trying to map values against the categories.
>
> If that's the case you're looking for, then I would suggest you:
>
> 1) remove the categoryFIeld from the category axis.
> 2) add a lableFuntion to the cat axis that pulls the name field out of
> the data and uses it as the label.
>
> Ely.
>
>
> -Original Message-
> From: Jonathan Miranda [mailto:[EMAIL PROTECTED]
> Sent: Thursday, November 02, 2006 3:28 PM
> To: Ely Greenfield; flexcoders@yahoogroups.com
> Subject: FilteredLineSeries and Printing - ChartMan Ely, we need you!
>
> Alright, I've got it working - so for those following along, here's a
> working filter at a LineSeries not LineChart levelbut hit another
> framework show-stopper and need your expertise Ely (sorry for bugging ya
> directly Ely, thought ya missed my reply earlier and getting slammed
> with a deadline - I promise I'll share my Gantt when its finished :).
>
> Anyways, below is my FilteredLineSeries (which works) and my mxml file
> I'm using to test it. My problem is the horizontalAxis/categoryAxis
> isn't smart when it filters data - if you change the dataprovider of the
> categoryAxis back between the hAxisData and the alteredData, you will
> see what the problem is. In a nut shell, the categoryAxis is filtering
> the data completely meaning that once it sees a value for the x-axis, it
> clips/skips the other instances of it - aka, even though I have a
> number:1 for blue and red, I only see blue. How do I get around this? I
> need to show both lines for red/blue starting at 1.
> If you uncomment the basic LineSeries addition, you can see it easier.
>
> In pure basic terms:
>
> If I have in my dataProvider:
> name="1" amount="200" brand="blue"
> name="1" amount="400" brand="red"
>
> how do I get 2 lines starting at name="1" and not two entries for "1"
> in the x-axis? I'm assuming this is a change on CategoryAxis, not the
> FilteredLineSeries I'll need to mess with.
>
> **Also**
> Side note: Printing of Charts, usually with PrintJobs you have to create
> a sprite and do an addChild - but a problem in the FlexFramework, is
> that if I do an addChild of something I'm displaying, I'll lose it
> because of parenting problems. Is there some nice way to print charts
> ala cacheAsBitmap or something similar? I'd rather not recreate charts
> via actionscript for each print job. I know there's some way to say
> "take what I see and make it a bitmap" but I'm not savy to that and I'm
> guessing Ely you know how to print charts :) Some advice?
>
> FilteredLineSeries
> package com.NoTouchie.chart {
>
> import mx.charts.series.LineSeries;
> import mx.charts.ChartItem;
> import mx.charts.series.items.LineSeriesSegment;
> import mx.graphics.IStroke;
> import mx.charts.series.renderData.LineSeriesRenderData;
>
> public class FilteredLineSeries extends LineSeries{
>
> public function FilteredLineSeries(customFilters:Array =
> null) {
> super();
> this._customFilters 

[flexcoders] Re: FilteredLineSeries and Printing - ChartMan Ely, we need you!

2006-11-04 Thread Jonathan Miranda
My problem isn't the draw, because if I add the bitmap to the screen
ala this.addChild(tempUI), it works fine (aka it shows up on the
screen). It still prints blank though.also, the
printJobOptions.printAsBitmap=true also makes anything always show up
blank. Anyone actually used this before :) The example fails if you
add this, the example in the helpfile is wrong and there's no comments
on it in the live help.

Oh that and my bitmap has a white background even though I set
translucent to true when I make the bitmapdata. (var
myBMD   :BitmapData = new
BitmapData(myLineChart.width,myLineChart.height,true);)

Thanks for the FinePrint though.still stuck on this after a few
hours, so let me know if ya got any other ideas.

On 11/3/06, Ely Greenfield <[EMAIL PROTECTED]> wrote:
>
>
>
> Hmm...a couple of things...
>
> 1) try passing an identity matrix to the draw() function. I don't think
> it will make a difference...passing null should be the same thing...but
> it's worth a try.
>
> 2) I didn't realize your container was a sprite.  You can ditch the
> tempUI and just attach the bitmap to the sprite directly.  Probably
> won't help, but reducing complexity is good for reducing bugs.
>
> 3) I've had some funny behavior trying to draw() a component that's
> masked into a bitmap.  Your component might have a mask applied to it
> somewhere in its parent hierarchy, which could be causing problems.
>
> 4) rather than draw()ing the chart into the bitmap, try just filling the
> bitmap with a color and printing that.  See if that shows up. If it
> does, it's a problem with getting the bits into the bitmap. If it
> doesn't, it's a problem with printing a bitmap in general.
>
> 5) you probably already have figured out some other solution, but
> there's a software printer called FinePrint that comes in very handy
> when writing print code.  Wastes much less paper ;)
>
> Ely.
>
>
>
> -Original Message-
> From: Jonathan Miranda [mailto:[EMAIL PROTECTED]
> Sent: Friday, November 03, 2006 1:23 PM
> To: Ely Greenfield
> Cc: flexcoders@yahoogroups.com
> Subject: Re: FilteredLineSeries and Printing - ChartMan Ely, we need
> you!
>
> Alright, first round at printingand after about 30 blank pages, I
> can't figure it out. Just doing an addChild to a sprite with the chart
> itself works fine. Creating the Bitmap/UI component like you said works
> fine - but printing it shows up as blank. Here's a real easy example you
> can use to see what I'm doing: if you uncomment the
> sprite.addChild(tempUI) and do addChild(myLineChart), it works fine.
>
> 
>  creationComplete="initApp()"
>
> xmlns:mx="http://www.adobe.com/2006/mxml";
> >
>
> 
> 
> 
>  click="printChart()"/>
>  dataProvider="{__alteredData}" width="100%" height="100%"
> showDataTips="true">
> 
>  dataProvider="{__alteredData}" categoryField="name"/>
> 
>
> 
> 
> 
> 
>
> 
>


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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: FilteredLineSeries and Printing - ChartMan Ely, we need you!

2006-11-03 Thread Jonathan Miranda
Alright, first round at printingand after about 30 blank pages, I
can't figure it out. Just doing an addChild to a sprite with the chart
itself works fine. Creating the Bitmap/UI component like you said
works fine - but printing it shows up as blank. Here's a real easy
example you can use to see what I'm doing: if you uncomment the
sprite.addChild(tempUI) and do addChild(myLineChart), it works fine.


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


















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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] FilteredLineSeries and Printing - ChartMan Ely, we need you!

2006-11-02 Thread Jonathan Miranda
Alright, I've got it working - so for those following along, here's a
working filter at a LineSeries not LineChart levelbut hit another
framework show-stopper and need your expertise Ely (sorry for bugging
ya directly Ely, thought ya missed my reply earlier and getting
slammed with a deadline - I promise I'll share my Gantt when its
finished :).

Anyways, below is my FilteredLineSeries (which works) and my mxml file
I'm using to test it. My problem is the horizontalAxis/categoryAxis
isn't smart when it filters data - if you change the dataprovider of
the categoryAxis back between the hAxisData and the alteredData, you
will see what the problem is. In a nut shell, the categoryAxis is
filtering the data completely meaning that once it sees a value for
the x-axis, it clips/skips the other instances of it - aka, even
though I have a number:1 for blue and red, I only see blue. How do I
get around this? I need to show both lines for red/blue starting at 1.
If you uncomment the basic LineSeries addition, you can see it easier.

In pure basic terms:

If I have in my dataProvider:
name="1" amount="200" brand="blue"
name="1" amount="400" brand="red"

how do I get 2 lines starting at name="1" and not two entries for "1"
in the x-axis? I'm assuming this is a change on CategoryAxis, not the
FilteredLineSeries I'll need to mess with.

**Also**
Side note: Printing of Charts, usually with PrintJobs you have to
create a sprite and do an addChild - but a problem in the
FlexFramework, is that if I do an addChild of something I'm
displaying, I'll lose it because of parenting problems. Is there some
nice way to print charts ala cacheAsBitmap or something similar? I'd
rather not recreate charts via actionscript for each print job. I know
there's some way to say "take what I see and make it a bitmap" but I'm
not savy to that and I'm guessing Ely you know how to print charts :)
Some advice?

FilteredLineSeries
package com.NoTouchie.chart {

import mx.charts.series.LineSeries;
import mx.charts.ChartItem;
import mx.charts.series.items.LineSeriesSegment;
import mx.graphics.IStroke;
import mx.charts.series.renderData.LineSeriesRenderData;

public class FilteredLineSeries extends LineSeries{ 

public function FilteredLineSeries(customFilters:Array = null) {
super();
this._customFilters = customFilters;
}   

public function set customFilters(newFilterSet:Array):void {
_customFilters = newFilterSet;
invalidateData();
}

override protected function updateFilter():void {   

super.updateFilter();

// No customFilters, then don't run
if(_customFilters.length > 0) {
var validSegments   :Array  = new 
Array();
var validFrom   :int= 0;
var validTo :int
= -1;
var getLastValid:Boolean= false;

var newCache:Array  = new 
Array();

// For every point in the line...
for(var i:int = 0; i < 
renderData.filteredCache.length; i++) {
var currentItem:ChartItem = 
renderData.filteredCache[i];
// For every custom filter...
var currentItemPassed:Boolean = true;
for(var j:int = 0; j < 
_customFilters.length; j++) {
var customFieldName:String = 
_customFilters[j].name;
// Considered using 
FilterVO.equals, but wouldn't work with
dynamic name as is
// and wasn't sure if it is 
used elsewhere so I left it.
Possible Fix Needed

if(currentItem.item[customFieldName] != _customFilters[j].value) {
// Only add segments 
that are lines (*NOT* dots)
if(validFrom < validTo) 
{

validSegments.push({validF:validFrom,validT:validTo});
}
validFrom = i+1;
validTo = i;
  

[flexcoders] MAX examples

2006-10-29 Thread Jonathan Miranda
Anyone seen if instructors/Adobe has posted their examples from MAX?
Like Sho's flexTunes or Ely's picture shelf?


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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] gant chart

2006-10-27 Thread Jonathan Miranda



Having dove into this long ago with many discussions with people from FlexCoders (Ely mostly), I can tell you this is a huge undertaking. You need a:-GantChart-GantSeries-GantChartItem-GantSeriesRenderData
-GantRendererJust to name a few :) I've got a Gantt chart abou 49% done but haven't had time to crank on itbut as Ely said at MAX, people would kill for it if you finished it and released it.
On 10/20/06, Andrew Trice <[EMAIL PROTECTED]> wrote:













  













You could create itemrenderers for a
datagrid that utilize the drawing API to draw the horizontal lines for your
data.

 

For instance, have a grid like this:

 

Column 1: task name

Column 2: duration

Column 3: start date

Column 4: item renderer that draws out
task length with respect to width of column.  Use the drawing api to draw
lines/rectangles to represent a duration of time. 

 

You could also have a custom datagrid column
header that uses the drawing API to draw a scale for the time shown in column 4.
  

 

Using a datagrid component for this also
keeps it very easy to get data into your Gantt chart.

 



_


Andrew Trice


Cynergy Systems, Inc.

http://www.cynergysystems.com


 

Blog: 
http://www.cynergysystems.com/blogs/page/andrewtrice

Email: 
[EMAIL PROTECTED]

Office: 866-CYNERGY 

 











From: [EMAIL PROTECTED]
ups.com [mailto:[EMAIL PROTECTED]
ups.com] On Behalf Of Iko Knyphausen
Sent: Friday, October 20, 2006
3:58 PM
To: [EMAIL PROTECTED]ups.com
Subject:  RE: [flexcoders] gant
chart



 











There is a flash
component out there (http://www.anychart.com/products/anychartgantt.shtml).
I have emailed them with some questions, but have not yet received a response.
If you know others, please let me know. I would be quite interested in such a
chart for my flex apps too...

 

I have written a
Gantt in DHTML and _javascript_ and it's not entirely trivial. It also
depends on the kind of features you want to offer, for example dependency
lines, summary tasks, task progress, time line scale, just to name a few.

 

At the time, I
wrote a container and then added task objects on the fly. The container would
know how to render the task objects, and the task objects themselves carried
their information such as start and end date, dependencies, progress status,
etc. If your chart is supposed to be interactive, you should also offer some
events to be raised: e.g. Task was clicked, dependency was dragged, chart was
scrolled down (so that you can connect the chart to a grid and scroll them in
parallel). As you can see, it quickly gets complex.

 

There is another
company that offers interactive Gantts, ILOG (http://www.ilog.com/products/jviews/gantt/
  ) but I am not sure what they offer in terms of licensing and
whether they will offer anything in the flash/flex space.

 

Hope this helps
-Iko







From: [EMAIL PROTECTED]
ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of arnold_charming
Sent: Friday, October 20, 2006
12:27 PM
To: [EMAIL PROTECTED]ups.com
Subject:  [flexcoders] gant chart



 







Hello!

I'm currently working on builidng a gant chart for my application. And
I have some question for which I would be very gratefull if you could
help me out.

1. Because gant chart doesn't have a fix number of tasks, how to setup
a chart legend?
2. How can I build a gant chart from XML file? Till now I just found
solutions with ArrayColletions.
3. How to build a dynamic (programmable) gant chart?

Thank you.


















  















__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Filters for multiple LineSeries in a LineChart - Calling ChartMan Ely!

2006-10-27 Thread Jonathan Miranda



Alright, I'm getting close but having issues.well it actually taking my changes, ironically enough. My guess is because I'm not altering the _renderData in the actual graph since it's extendedbut here, maybe you can explain where I went wrong. No matter how I change _renderData, it never effects the actual graph.
package com.rsi.briefingbook.view.chart {    import mx.charts.series.LineSeries;    import mx.charts.series.renderData.LineSeriesRenderData;    import mx.charts.series.items.LineSeriesItem;
    import mx.charts.chartClasses.CartesianTransform;    import mx.collections.CursorBookmark;        public class FilteredLineSeries extends LineSeries {                        private var _renderData:LineSeriesRenderData;    
        private var _xField:String = "";        private var _yField:String = "";                override protected function updateFilter():void {            _renderData.filteredCache = _renderData.cache;
                        for(var i:int = 0; i < _renderData.filteredCache.length; i++) {                var temp:LineSeriesItem = _renderData.filteredCache[i];                trace(temp);            }
            super.updateFilter();        }                override protected function updateData():void {            var renderDataType:Class = this.renderDataType;            _renderData= new renderDataType();
                _renderData.cache = [];            if (dataProvider)            {                            cursor.seek(CursorBookmark.FIRST);                var i:int = 0;                var itemClass:Class = itemType;
                while (!cursor.afterLast)                {                    _renderData.cache[i] = new itemClass(this,cursor.current,i);                    i++;                    cursor.moveNext();
                }                    cacheDefaultValues(_yField,_renderData.cache,"yValue");                cacheIndexValues(_xField,_renderData.cache,"xValue");            }    
            _renderData.validPoints = _renderData.cache.length;            super.updateData();        }    }}On 10/19/06, Jonathan Miranda
 <[EMAIL PROTECTED]> wrote:
Remind me to buy you a drink at MAX :) Thanks Ely, I'll get cracking on subclassing lineSeries I guess since this is pretty elaborateOn 10/19/06, 
Ely Greenfield
 <[EMAIL PROTECTED]> wrote:













  






 
 
Hi Jon. Unfortunately, there's nothing in charts that will 
do what you want.  What you're looking for is basically a pivot (well...if 
you're looking for just one brand it's a filter, but if you're looking for one 
series per brand it's more of a pivot), and charts don't support that out of the 
box.
 
You have three options:
 
1) prefilter the data yourself, the manual 
way
 
2) subclass lineSeries, add a 'filterField' and 
'filterValue' property, and override the updateFilter function to filter on 
those values.
 
3) write a pivot class that accepts parameters on what to 
filter on, what to create multiple series on, what to aggregate on, and have it 
spit out a set of series with custom dataproviders assigned.
 
 
I've got a skunkworks version of #3 I've been tooling 
around with for a little while, but it's not ready for the outside world 
yet.  In the meantime, try #1 or #2.
 
Ely.
 


From: [EMAIL PROTECTED]ups.com 
[mailto:flexcoders@
yahoogroups.com] On Behalf Of Jonathan 
MirandaSent: Wednesday, October 18, 2006 4:25 PMTo: 
[EMAIL PROTECTED]ups.comSubject: [flexcoders] Filters for multiple 
LineSeries in a LineChart - Calling ChartMan Ely!


Heh, maybe he'll see this before MAX :)Anyways, here's my question - 
I've done this before, but I can'tremember how nor find the code. I've got a 
data set like 
thefollowing:Month.Dollar.Category.Brand..Jan.500..IT.Blue..Feb.700..JO.Red..Mar.600..AC.Blue..Jan.100..IT.Green
..Feb.200..JO.Red..Mar.300..AC.Blueok 
so, Month will be my x-axis. Dollar will be my y-axis, tallied up.I want the 
entire LineChart to filter on Category (assuming I'll justneed to sort this 
based on altering the dataProvider itself)...but myproblem is I need a 
LineSeries for each Brand.So my first guess 
was..Which 
does give me the lines I need, but I need some way to have aLineSeries only 
show data where brand=uniqueBrandList.selectedItem.What's the filter 
mechanism for a LineSeries besides the yField? Isthere some trick in that 
field or is there a property/function I'mmissing on how I can only show data 
where Brand=X? I thought "hey, usefilters" but that's the Effects, not for 
data :)Any help would be nice-Jon Miranda

  




Re: [flexcoders] Filters for multiple LineSeries in a LineChart - Calling ChartMan Ely!

2006-10-19 Thread Jonathan Miranda



Remind me to buy you a drink at MAX :) Thanks Ely, I'll get cracking on subclassing lineSeries I guess since this is pretty elaborateOn 10/19/06, Ely Greenfield
 <[EMAIL PROTECTED]> wrote:












  






 
 
Hi Jon. Unfortunately, there's nothing in charts that will 
do what you want.  What you're looking for is basically a pivot (well...if 
you're looking for just one brand it's a filter, but if you're looking for one 
series per brand it's more of a pivot), and charts don't support that out of the 
box.
 
You have three options:
 
1) prefilter the data yourself, the manual 
way
 
2) subclass lineSeries, add a 'filterField' and 
'filterValue' property, and override the updateFilter function to filter on 
those values.
 
3) write a pivot class that accepts parameters on what to 
filter on, what to create multiple series on, what to aggregate on, and have it 
spit out a set of series with custom dataproviders assigned.
 
 
I've got a skunkworks version of #3 I've been tooling 
around with for a little while, but it's not ready for the outside world 
yet.  In the meantime, try #1 or #2.
 
Ely.
 


From: [EMAIL PROTECTED]ups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan 
MirandaSent: Wednesday, October 18, 2006 4:25 PMTo: 
[EMAIL PROTECTED]ups.comSubject: [flexcoders] Filters for multiple 
LineSeries in a LineChart - Calling ChartMan Ely!


Heh, maybe he'll see this before MAX :)Anyways, here's my question - 
I've done this before, but I can'tremember how nor find the code. I've got a 
data set like 
thefollowing:Month.Dollar.Category.Brand..Jan.500..IT.Blue..Feb.700..JO.Red..Mar.600..AC.Blue..Jan.100..IT.Green
..Feb.200..JO.Red..Mar.300..AC.Blueok 
so, Month will be my x-axis. Dollar will be my y-axis, tallied up.I want the 
entire LineChart to filter on Category (assuming I'll justneed to sort this 
based on altering the dataProvider itself)...but myproblem is I need a 
LineSeries for each Brand.So my first guess 
was..Which 
does give me the lines I need, but I need some way to have aLineSeries only 
show data where brand=uniqueBrandList.selectedItem.What's the filter 
mechanism for a LineSeries besides the yField? Isthere some trick in that 
field or is there a property/function I'mmissing on how I can only show data 
where Brand=X? I thought "hey, usefilters" but that's the Effects, not for 
data :)Any help would be nice-Jon Miranda

  















__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Filters for multiple LineSeries in a LineChart - Calling ChartMan Ely!

2006-10-18 Thread Jonathan Miranda
Heh, maybe he'll see this before MAX :)

Anyways, here's my question - I've done this before, but I can't
remember how nor find the code. I've got a data set like the
following:

Month.Dollar.Category.Brand
..Jan.500..IT.Blue
..Feb.700..JO.Red
..Mar.600..AC.Blue
..Jan.100..IT.Green
..Feb.200..JO.Red
..Mar.300..AC.Blue

ok so, Month will be my x-axis. Dollar will be my y-axis, tallied up.
I want the entire LineChart to filter on Category (assuming I'll just
need to sort this based on altering the dataProvider itself)...but my
problem is I need a LineSeries for each Brand.

So my first guess was


..

..

..


Which does give me the lines I need, but I need some way to have a
LineSeries only show data where brand=uniqueBrandList.selectedItem.
What's the filter mechanism for a LineSeries besides the yField? Is
there some trick in that field or is there a property/function I'm
missing on how I can only show data where Brand=X? I thought "hey, use
filters" but that's the Effects, not for data :)

Any help would be nice
-Jon Miranda


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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Calling all 1.5 Skinning experts

2006-05-22 Thread Jonathan Miranda



Alright, got a stumper...least for me.

Most basic graphical skinning with the Flash exporting of swc involves
the base assets - datagrid, combobox, button, etc. Right, so checking
out the base ComboBox assets - there's only skinning for the base
control (the dropdown arrow control on the right) but I need to alter
the actual textInput section (aka text_mc in code). But then looking
through all the assetsthere's no text field assets. So how do I
alter the base text movieclip of the comboBox?

As of livedocs (http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=0581.htm):
"The following table lists Flex controls and their master skin
symbols. In addition, it specifies the programmatic skin files, if
any, that you edit to reskin this symbol. All the components listed in
this table can be graphically reskinned using the Pulse theme files
described in Skinning resources."

TextInput or any variation isn't listed.

The closest idea I've come to this is the follow:
http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004&file=2857.html
The idea is to customize the RectBorder class with your
extensionbut I'm not even sure this is possible in Flex.



Now all that aside, when you set a ComboBox's property of
editable=true it uses the text input instead of the normal skin. Is
there a way to get that look *without* changing the editable property?
I'm going to be digging away at this but anyone that has delved into
this please help out :)

Really wish flex 1.5 had the framework classes like flex 2 does






--
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: How to cancel Keyboard events?

2006-05-19 Thread Jonathan Miranda



Here's a question for the keyboard cowboys that has stumped me for awhile

Internet Explorer grabs the Control-S, Control-P, and Control-O
keystrokes (and other commands) and they never even make it to the
player. No Keydown event even occurs and this is with focus in the
flash player (actually in a text input). It works 100% fine in Firefox
(mapping Control-S to save) but it never works in IE.

Ideas?

On 5/18/06, Steven Toth <[EMAIL PROTECTED]> wrote:
> I'm writing a masked edit control.  I want to do various things at
> various times.  I want to allow the deletion of certain characters.
> I want to allow editing of certain characters.  All of which is
> dependent on the keyboard event/text input, mask, caret index, and
> selection begin/end index.  The textInput event works perfectly.  My
> issues center around trapping and ultimately rejecting (under
> certain cirucmstances) keyboard events for keys such as DELETE,
> BACKSPACE, LEFT, RIGHT, etc.  I already have some code to workaround
> not being able to cancle the LEFT and RIGHT Keyboard events, but it
> doesn't look all that nice (you see the caret move and then move
> back).
>
> Thanks for the suggestions.  However, I don't think what I'm trying
> to do is all that unusual.  I've done it in numerous other languages
> and I don't think I should have to write excessive amounts of code
> to store and restore state when the same thing could be accomplished
> by having the appropriate control over the events.  It seems like
> either I'm missing something or the language is.
>
> Thanks again.  The suggestions are greatly appreciated.
>
> -Steven
>
> --- In flexcoders@yahoogroups.com, "Chris Velevitch"
> <[EMAIL PROTECTED]> wrote:
> >
> > On 5/19/06, Steven Toth <[EMAIL PROTECTED]> wrote:
> > > No dice.  I do see the eventPhase equal to 1 (capture), but the
> > > stopPropagation() and stopImmediatePropagation() still do not
> > > prevent the DELETE from being processed.  I'm beginning to think
> I'm
> > > just going about this the wrong way.  There has to be a way to do
> > > this.
> >
> > As I understand it, capture only works for the container containing
> > the text field, that is before the target gets it.
> >
> > And alternative would be to save the state of the text field and if
> > the length is zero use the saved state to restore it. I'm assuming
> you
> > want to prevent all the data from being deleted and but allow it
> to be
> > edited.
> >
> >
> > Chris
> > --
> > Chris Velevitch
> > Manager - Sydney Flash Platform Developers Group
> > www.flashdev.org.au
> >
>
>
>
>
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>
>






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Livedoc links all dead?

2006-05-13 Thread Jonathan Miranda



>From the move to macromedia to adobe, it seems a lot of the LiveDoc
links are dead - or so slow that you lose connection.

I'm trying to get to:

http://livedocs.macromedia.com/flex/15/flex_docs_en/0532.htm#121065
http://livedocs.macromedia.com/flex/15/flex_docs_en/2194.htm#143512

Sometimes it times out.
Sometimes I get a coldfusion error page.

Anyone having any luck?






--
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] Custom Chart Series

2006-05-01 Thread Jonathan Miranda



Can ya point out where in the Framework that xField and yField get
used by the BarSeries? Not seeing it in BarSeries, Series or
ChartItem

Here's what I've got so far:


http://www.adobe.com/2006/mxml"
layout="absolute" xmlns:custom="*">
  
    
  
  
  
    
      
    
    
      
        
durationValue="Time" dependentItem="Depends"/>
      
    
  


Custom series:
package
{
  import mx.charts.series.BarSeries;
  public class GanttSeries extends BarSeries
  {
    private var _durationValue:String = null;
    private var _dependentItem:String = null;
    
    public function get durationValue():String {
      return _durationValue;
    }
    
    public function set durationValue(value:String):void {
      _durationValue = value;
    }
    public function get dependentItem():String {
      return _dependentItem;
    }
    
    public function set dependentItem(value:String):void {
      _dependentItem = value;
    }
    
    override protected function updateDisplayList(unscaledWidth:Number,
unscaledHeight:Number):void {
      
      
    }
  }
}






--
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] Custom Chart Series

2006-05-01 Thread Jonathan Miranda



Alright, well that didnt go so well :) I've figured out a real basic
way to mess with how BarSeries is rendered but I'm stuck...

I decided today would be a learning day and I'm tinkering with the
idea of making a Gantt Chart. So I thought I'd start with a BarChart
and have a custom GanttSeries which extends BarChart. I know exactly
what I want to do, but stumped on how to fit it into the Flex
frameworkI've only messed with custom components and renderers to
this point so this is a big leap it seems to make a custom Chart. Good
time to learn right? :)

-Should I make a custom chart that extends BarChart or a custom series
that extends BarSeries? What about extending CartesianChart?
-Whats the implications and restrictions I'll get into to choosing one of those?
-How would I get access to other varibales and how should I deal with
those (I need more than just one value) - should the "data" be an
Object with values?
-If I'm extending a series, how do I get access to the values in the
extended parent? An example would be in BarSeries where it sets the
_instanceCache - if I do a super(); to run that, is there anyway I can
access that data? I found a messy way of changing how
updateDisplayList runs but I'm not sure I'm doing it correctly because
I had to redo all what the BarSeries was doing.maybe just do a
graphics.clear and do your own thing? I'm guessing that's wrong.

Rescue me Ely the Chart Guru! :) There needs to be an example of
extending a chart or customizing a chart/serieslooking through the
docs, there's a lot out there for components and renderers, but little
for chart/series. Maybe it's too rough a realm for documentation? :)


On 5/1/06, Jonathan Miranda <[EMAIL PROTECTED]> wrote:
> Well I'm a step ahead now with your line of code, as dumb as it
> seemsI was overkilling it and had every function declared in
> BarSeries and was implementing the same classes as BarSeries does.
>
> Overthinking on a Monday :)
>
> Now to try and customize the updateDisplayList
>
> On 5/1/06, Ely Greenfield <[EMAIL PROTECTED]> wrote:
> >
> >
> > Hi Jonathan. That's a tough question to answer without more information.
> > Otherwise, this would answer your question:
> >
> >
> > Public class MyBarSeries extends BarSeries {
> >
> > }
> >
> >
> > Which clearly isn't very helpful ;)
> >
> > Can you give more information on what you're trying to do?  More
> > information on the errors you're getting? What does the line of code
> > look like where the error is reported?
> >
> > Ely.
> >
> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> > Behalf Of Jonathan Miranda
> > Sent: Monday, May 01, 2006 9:13 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Custom Chart Series
> >
> > Banging my head against the wall on this one and I can't figure out how
> > I'm doing this wrong.I want to try and make a custom series that
> > extends BarSeries but no matter what I try I'm hitting all kinds of
> > warning/errors, most stating "Attempted access of inaccessible method
> > 'validateTransform' through a reference with static type
> > mx.chart.series:BarSeries".
> >
> > Anyone want to just write a mock-up structure of what a custom BarSeries
> > would look like? Even Psuedo code would work.
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives:
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
>






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Custom Chart Series

2006-05-01 Thread Jonathan Miranda



Well I'm a step ahead now with your line of code, as dumb as it
seemsI was overkilling it and had every function declared in
BarSeries and was implementing the same classes as BarSeries does.

Overthinking on a Monday :)

Now to try and customize the updateDisplayList

On 5/1/06, Ely Greenfield <[EMAIL PROTECTED]> wrote:
>
>
> Hi Jonathan. That's a tough question to answer without more information.
> Otherwise, this would answer your question:
>
>
> Public class MyBarSeries extends BarSeries {
>
> }
>
>
> Which clearly isn't very helpful ;)
>
> Can you give more information on what you're trying to do?  More
> information on the errors you're getting? What does the line of code
> look like where the error is reported?
>
> Ely.
>
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Jonathan Miranda
> Sent: Monday, May 01, 2006 9:13 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Custom Chart Series
>
> Banging my head against the wall on this one and I can't figure out how
> I'm doing this wrong.I want to try and make a custom series that
> extends BarSeries but no matter what I try I'm hitting all kinds of
> warning/errors, most stating "Attempted access of inaccessible method
> 'validateTransform' through a reference with static type
> mx.chart.series:BarSeries".
>
> Anyone want to just write a mock-up structure of what a custom BarSeries
> would look like? Even Psuedo code would work.
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Custom Chart Series

2006-05-01 Thread Jonathan Miranda



Banging my head against the wall on this one and I can't figure out
how I'm doing this wrong.I want to try and make a custom series
that extends BarSeries but no matter what I try I'm hitting all kinds
of warning/errors, most stating "Attempted access of inaccessible
method 'validateTransform' through a reference with static type
mx.chart.series:BarSeries".

Anyone want to just write a mock-up structure of what a custom
BarSeries would look like? Even Psuedo code would work.






--
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] Missing option in Flex 2 Style Explorer

2006-04-27 Thread Jonathan Miranda



















http://weblogs.macromedia.com/mc/archives/Flex2StyleExplorer/Flex2StyleExplorer.html



Just noticed that there's an option missing in the "Bar"
category for LinkBar. When you click on those links for the example, they never
get actually selected.

Difference between the explorer (clicking them doesn't change them):



And a real application:



 

Trying to figure out how to change the color of the MINE! Text
(when it's selected) and I can't find the css property to change it.

_____

Jonathan Miranda

Stealth Project
Manager

"Sorry, it's a 'Need
to Know' basis only."

HealthGrades
:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868


[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you are
not the named addressee you should not disseminate, distribute, or copy this
e-mail. Please notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 






View/post via a browser:  http://lyris.macromedia.com/read/?forum=%%list.name%%


Manage your account:  http://lyris.macromedia.com/read/my_account/

View this discussion via a newsreader:  news://lyris.macromedia.com



This email transaction, and any documents, files, or previous email message attached to it, are confidential and proprietary information of Adobe Systems, Inc.











--
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] PLEASE: Could someone at Adobe/Macromedia do a Carnigorm Video Intro.

2006-04-26 Thread Jonathan Miranda



Good stuff Jester, maybe I'll have to give the ViewHelper more of a
lookas some said, I've cheapened the use of the ModelLocator for a
lot of this - but most of my work is exclusively in Flex2 so I haven't
dealt with your callback issues.

Thanks for the code.dont mind me, going to take a nap to try and
forget you saying you used 3 ViewLocators (my god man!)

On 4/26/06, JesterXL <[EMAIL PROTECTED]> wrote:
> In 1, the peeps I've worked with have done the same thing.  We do not use
> ViewHelpers.  We've basically built our own version of ViewLocator.  The
> Cairngorm 1 version took a ViewHelper ID usually whereas we just pass in the
> View's id name with a reference.  So:
>
> 
> 
> creationComplete="onMyPanelCreationComplete()"
> unload="onUnloaded()"
>  xmlns:mx="http://www.macromedia.com/2003/mxml">
>
> 
>  

Re: [flexcoders] PLEASE: Could someone at Adobe/Macromedia do a Carnigorm Video Intro.

2006-04-26 Thread Jonathan Miranda



Let's be difficultboth! :)

On 4/26/06, JesterXL <[EMAIL PROTECTED]> wrote:
> In Cairngorm 1 or 2?
>
> - Original Message -----
> From: "Jonathan Miranda" <[EMAIL PROTECTED]>
> To: 
> Sent: Wednesday, April 26, 2006 5:35 PM
> Subject: Re: [flexcoders] PLEASE: Could someone at Adobe/Macromedia do a
> Carnigorm Video Intro.
>
>
> Got any examples of this Jester?
>
> On 4/26/06, JesterXL <[EMAIL PROTECTED]> wrote:
> > If you're an OOP, Cairngorm purist, sure.  However, for those of use under
> > extreme deadlines who have no problem tossing lofty ideals out the window,
> > ViewLocator is a life saver.  If there is a need to have some view tell
> > another view not within the direct DisplayList to do something, it's a
> > nice
> > to have.  To be honest, I feel dirty everytime I use it though.
> >
> > - Original Message -
> > From: <[EMAIL PROTECTED]>
> > To: 
> > Sent: Wednesday, April 26, 2006 3:19 PM
> > Subject: Re: [flexcoders] PLEASE: Could someone at Adobe/Macromedia do a
> > Carnigorm Video Intro.
> >
> >
> > I'll send you a copy.
> >
> > On another note, I was looking at the ViewLocator/ViewHelper code and I
> > found myself wondering how to implement it.  It's not that the theory
> > isn't
> > sound, I'm sure it is -  just try to find some simple working examples.
> > Anyone out there have some simple Cairngorm2 ViewLocator examples?  Steve
> > Webster had mentioned to me that the ModelLocator can handle all the work
> > that the ViewLocator/ViewHelper is intended to do, so perhaps they are not
> > necessary. Thoughts?
> >
> >
> >
> >
> >
> >
> >  "Darren Houle"    To:
> > flexcoders@yahoogroups.com
> >  <[EMAIL PROTECTED]>  cc:
> >  Sent by:  Subject:  Re: [flexcoders]
> > PLEASE: Could someone at Adobe/Macromedia do a Carnigorm
> >  flexcoders@yahoogroups.com  Video Intro.
> >  04/26/2006 11:10 AM
> >  Please respond to
> >  flexcoders
> >
> >
> >
> >
> >
> >
> > Hey Michael
> >
> > Any chance I could get that from you too?  I've found the available Cg2
> > examples out there somewhat lacking... the 6 part article talks about and
> > uses Cg.99, but I have F2B2 installed so I want to learn Cg2.  The Cg2
> > CairngormLogin example has little documentation (not that it really does
> > much anyway)... and there's a PhonesCairngorm2 example, but it's complex,
> > uses Data Services, requires CF code, so... what I'd love to get my hands
> > on
> > would be a simple Cg2 example, one that has a couple simple RPC services
> > to
> >
> > something like a public blog feed or a local XML data file, a couple VOs,
> > a
> >
> > couple commands, a couple views, a couple controls.  Nothing overly
> > complicated and something with some healthy documentation (even inline
> > comments would be fine.)  Your example might not meet all those criteria,
> > but that's totally okay, I'll take anything :-)
> >
> > Thanks!
> > Darren
> >
> >
> >
> > >From: [EMAIL PROTECTED]
> > >Reply-To: flexcoders@yahoogroups.com
> > >To: flexcoders@yahoogroups.com
> > >Subject: Re: [flexcoders] PLEASE: Could someone at Adobe/Macromedia do a
> > >Carnigorm Video Intro.
> > >Date: Wed, 26 Apr 2006 09:51:56 -0400
> > >
> > >  I have a very (very) simple sample app that I use to illustrate how to
> > >get
> > >the ball rolling with Cairngorm2  that I can send to you.  It includes
> > >documentation on how to add your own dispatchEvent in step-by-step
> > >instructions.  I'm not knocking the Cairngorm2 'Login' example, but I
> > think
> > >that a 'hold-your-hand' example is helpful for those getting familiar
> > >with
> > >patterns.
> > >
> > >
> > >
> > >---
> >
> > >This e-mail message (including attachments, if any) is intended for the
> > use
> > >of the individual or entity to which it is addressed and may contain
> > >information that is privileged, proprietary , confidential and exempt
> > >from
> > >disclosure.  If you are not the intended recipient,

[flexcoders] Using the preloader in F2Beta2

2006-04-26 Thread Jonathan Miranda



Since the documentation says "To be written", anyone tangoed down the
line of using the base preloader for when a Flex application runs for
something custom? Like fade the background (ala Alert style) and
pulling up this loader to run while you load stuff in?

Think it'd be a great little tool to use since it's built-in but not
having any luck finding ways to use it outside of the base (all
examples I'm finding go with editing it or subclassing it for just the
intro download).

-Jon






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





  




  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] PLEASE: Could someone at Adobe/Macromedia do a Carnigorm Video Intro.

2006-04-26 Thread Jonathan Miranda



Got any examples of this Jester?

On 4/26/06, JesterXL <[EMAIL PROTECTED]> wrote:
> If you're an OOP, Cairngorm purist, sure.  However, for those of use under
> extreme deadlines who have no problem tossing lofty ideals out the window,
> ViewLocator is a life saver.  If there is a need to have some view tell
> another view not within the direct DisplayList to do something, it's a nice
> to have.  To be honest, I feel dirty everytime I use it though.
>
> - Original Message -
> From: <[EMAIL PROTECTED]>
> To: 
> Sent: Wednesday, April 26, 2006 3:19 PM
> Subject: Re: [flexcoders] PLEASE: Could someone at Adobe/Macromedia do a
> Carnigorm Video Intro.
>
>
> I'll send you a copy.
>
> On another note, I was looking at the ViewLocator/ViewHelper code and I
> found myself wondering how to implement it.  It's not that the theory isn't
> sound, I'm sure it is -  just try to find some simple working examples.
> Anyone out there have some simple Cairngorm2 ViewLocator examples?  Steve
> Webster had mentioned to me that the ModelLocator can handle all the work
> that the ViewLocator/ViewHelper is intended to do, so perhaps they are not
> necessary. Thoughts?
>
>
>
>
>
>
>  "Darren Houle"    To:
> flexcoders@yahoogroups.com
>  <[EMAIL PROTECTED]>  cc:
>  Sent by:  Subject:  Re: [flexcoders]
> PLEASE: Could someone at Adobe/Macromedia do a Carnigorm
>  flexcoders@yahoogroups.com  Video Intro.
>  04/26/2006 11:10 AM
>  Please respond to
>  flexcoders
>
>
>
>
>
>
> Hey Michael
>
> Any chance I could get that from you too?  I've found the available Cg2
> examples out there somewhat lacking... the 6 part article talks about and
> uses Cg.99, but I have F2B2 installed so I want to learn Cg2.  The Cg2
> CairngormLogin example has little documentation (not that it really does
> much anyway)... and there's a PhonesCairngorm2 example, but it's complex,
> uses Data Services, requires CF code, so... what I'd love to get my hands
> on
> would be a simple Cg2 example, one that has a couple simple RPC services to
>
> something like a public blog feed or a local XML data file, a couple VOs, a
>
> couple commands, a couple views, a couple controls.  Nothing overly
> complicated and something with some healthy documentation (even inline
> comments would be fine.)  Your example might not meet all those criteria,
> but that's totally okay, I'll take anything :-)
>
> Thanks!
> Darren
>
>
>
> >From: [EMAIL PROTECTED]
> >Reply-To: flexcoders@yahoogroups.com
> >To: flexcoders@yahoogroups.com
> >Subject: Re: [flexcoders] PLEASE: Could someone at Adobe/Macromedia do a
> >Carnigorm Video Intro.
> >Date: Wed, 26 Apr 2006 09:51:56 -0400
> >
> >  I have a very (very) simple sample app that I use to illustrate how to
> >get
> >the ball rolling with Cairngorm2  that I can send to you.  It includes
> >documentation on how to add your own dispatchEvent in step-by-step
> >instructions.  I'm not knocking the Cairngorm2 'Login' example, but I
> think
> >that a 'hold-your-hand' example is helpful for those getting familiar with
> >patterns.
> >
> >
> >
> >---
>
> >This e-mail message (including attachments, if any) is intended for the
> use
> >of the individual or entity to which it is addressed and may contain
> >information that is privileged, proprietary , confidential and exempt from
> >disclosure.  If you are not the intended recipient, you are notified that
> >any dissemination, distribution or copying of this communication is
> >strictly prohibited.  If you have received this communication in error,
> >please notify the sender and erase this e-mail message immediately.
> >---
>
> >
> >
> >
> >
> >--
> >Flexcoders Mailing List
> >FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> >Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> >Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
>
>
> ---
> This e-mail message (including attachments, if any) is intended for the use
> of the individual or entity to which it is addressed and may contain
> information that is privileged, proprietary , confidential and exempt from
> disclosure.  If you are not the intended recipient, you are notified that
> any dissemination, distribution or copying of this communication is
> strictly prohibited.  If you have received this communication in error,
> please notify the sender and erase this e-mail message immediately.
> ---

[flexcoders] Horizontal bar chart

2006-04-07 Thread Jonathan Miranda










Any quick way to flip it horizontally or do I need to extend
the barchart and rewrite the display?

_

Jonathan Miranda

Stealth Project
Manager

"Sorry, it's a 'Need
to Know' basis only."

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy this
e-mail. Please notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









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





  




  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Hello

2006-04-07 Thread Jonathan Miranda












Wait wait, you can’t give permission
granted so easily!

Where’s the required “Jonathan goes to Maui”
donation? J

_

Jonathan
Miranda

Stealth Project Manager

"Sorry,
it's a 'Need to Know' basis only."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Richter
Sent: Friday, April 07, 2006 10:25
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Hello



 

Permission granted :-)

 

Welcome Lucky!

 

 



 







From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Radhika Baron
Sent: 07 April 2006 17:20
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Hello



Hello,





 





I would like to be a part of this group. Please
allow me to post and receive messages from this group.





 





Many Thanks,





 





Lucky













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





  




  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Special Thanks to Matt Chotin

2006-04-05 Thread Jonathan Miranda












Seriously though, thanks for the help –
you probably post the most here and just a hearty thanks was deserved J

_

Jonathan
Miranda

Stealth Project Manager

"Sorry,
it's a 'Need to Know' basis only."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate, distribute,
or copy this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Wednesday, April 05, 2006
3:32 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Special
Thanks to Matt Chotin



 

Flex (and the Flex team) is all about
making you look good for your boss J

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Wednesday, April 05, 2006
2:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Special
Thanks to Matt Chotin



 

So, funny little story….my boss is attempting to
understand some Flex and started running through the tutorials here: http://download.macromedia.com/pub/documentation/en/flex/2/Flex2_beta2_Hands-onTutorials.pdf
- which I recommend to everyone, it’s a great little
document. Now my boss was working specifically with the BlogReader example and
he quickly sends me an email with the output:



The email and congratulations I got from my boss was priceless J Thanks Matt
for entertaining me with that post and always being a great help on the boards
– you don’t get enough credit for the posting you do.

_________

Jonathan Miranda

Stealth Project
Manager

"Sorry, it's a 'Need
to Know' basis only."

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 










--
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] Putting markers on chart

2006-04-03 Thread Jonathan Miranda












If you get time to do this Sachin, love to
see what you produce code-wise….don’t got time to tinker with it at
the moment myself J

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ely Greenfield
Sent: Monday, April 03, 2006 11:15
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Putting
markers on chart



 

 

 

 

Yes Sachin, that makes sense.

 

This is possible to do, with a little bit
of extension.

 

The easiest way to do this would be by
writing a custom lineSegmentRenderer. The line segment renderer is the
component used by the line series to render the actual line.  It gets
passed an array of LineSeriesItems, each of which contains all the x and y
values for the point it represents.

 

So I'd write a custom line renderer that:

 

- draws the line segment itself.

- for each segment of the line:

    - check and see if it crosses your y threshold

    - if it does

    - figure out the x position for the crossing point

    - draw a vertical line from 0 to unscaledHeight at that x position.

 

Make sense?

 

Ely.

 

 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sachin Dharmapurikar
Sent: Sunday, April 02, 2006 8:45
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Putting
markers on chart

Hi Ely,
    We wan't to put a vertical line
on X-Axis value for which the Y-axis value exceeds a threshold. E.g. following
are the input sets -

X-Axis Values : [ 11:00, 12:00, 13:00]
Y-Axis Values: [47,67,31]

Now there should be a way to define threshold on
Y-Axis. If I set the threshold on 50 then all values > 50 should have a
vertical line drawn on corrosponding X-Axis value. In our example on 12:00 the
vertical line should appear. 

Does that make any sense to you?

Sachin



On 4/3/06, Ely Greenfield <[EMAIL PROTECTED]> wrote: 



 

 

Sachin, can you explain a
little further?  are you looking for a vertical line at a particular X
value? or a horizontal line at a particular y value?

 

Ely.

 

 







From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Sachin Dharmapurikar
Sent: Saturday, April 01, 2006 7:23 PM
To: Flexcoders
Subject: [flexcoders] Putting markers on
chart





Hi,

I am developing a charting application. I am
simulating a live chart which is updated after finite interval. X-Axis of the
chart is going to have dates and Y-Axis will have Numbers. I want to put a red
line marker when the value of Y-axis crosses a particular value. Sample image
is attached. 

Is it possible to do this using Flex line
charting?

Thanks,
Sachin











--
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 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: Cairngorm problem

2006-03-30 Thread Jonathan Miranda












Actually, if you guys notice, even with
doing executeBindings(true), the Legend doesn’t update. But the Legend
has a binding to the chart (which updates) and the chart has a binding to the
data…in my chart:

displayName="{cf.format(model.theTotal[5])}"

Chart updates, Legend doesn’t show. So I do this…



The Legend shows up, but the displayNames are empty (but that Alert shows the
right data). Then if I specifically set the displayName in code to the exact
same thing it is above, the legend updates. So…

1) Chart updates
2) Legend doesn’t show
3) Set Legend DP
4) Legend colors show, displayNames don’t (probably thinks they’re
empty from binding?)
5) Set displayName in chart to exact same as it is already
6) Legend display correct info.

Man this whole binding model is jacked in this instance J Datagrid and everything
else works fine, but Charts don’t unless I do executeBindings(true), but
that doesn’t update the Legend which is binded to the chart, so I have to
reset the dataprovider of the Legend and then reset all the displayNames of the
charts for the legend to register the change.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Miranda
Sent: Thursday, March 30, 2006
9:14 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
Cairngorm problem



 



I already sent ya mine but I think Renaun
or Peter Blaze had a smaller example…

_________

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Wednesday, March 29, 2006
10:31 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
Cairngorm problem



 

Joe B found another bug related to binding
and initialization, maybe we’re running into something similar.  If
anyone has a simpler example that uses binding into a chart (one that I can
submit as a bugfile) that would be great.  The smaller the better because
debugging binding when there is a lot of it is very difficult, trust me J

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Wednesday, March 29, 2006
8:40 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
Cairngorm problem



 



Yeah it seems to work, and thanks guys for
looking into this….

Any ideas why I would have to do this though for just the chart?

_____

Jonathan Miranda

Flexible Master of the Web

"Try not to
become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged informa

[flexcoders] Flex and Testing

2006-03-30 Thread Jonathan Miranda










Just curious, internally for testing our QA department uses
WebLoad from RadView a lot – don’t see why it wouldn’t play
nice with Flex but just curious what other testing software there is for Flex.
This comes from a mostly non-technical side (aka not running testing on classes
directly) - aka just mass user-interaction and testing scripts to emulate users.


_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









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





  




  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] BETA 2 - What is a good swf size range?

2006-03-30 Thread Jonathan Miranda












I’ve got a pretty extensive
Dashboard application in Cairngorm reaching about 340k, while most of it is
taking in the Line/Column Charts I’m assuming because if I add more or
take some away it doesn’t effect the size really. As other people have
said, it’s the components 1-time use that increase size.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alexander Tsoukias
Sent: Thursday, March 30, 2006
8:46 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] BETA 2 -
What is a good swf size range?



 



Sounds I'm in range thanks!





 





Any tricks to reduce this downloading time? Maybe
something that I use in the html world named cache?





 





Thanks,





Alex

Manish Jethani
<[EMAIL PROTECTED]> wrote:





On 3/30/06, Alex & Alex <[EMAIL PROTECTED]> wrote:

> After compliling a flex 2 project, what is a
normal swf size range?
>
> I currently get 259kb, but I still have lots
of stuff to add.

120+ KB currently.  The old flexstote (the
"thinkgeek" one) comes to
500 KB on my local build.

Manish












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





  




  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Re: Cairngorm problem

2006-03-30 Thread Jonathan Miranda












I already sent ya mine but I think Renaun
or Peter Blaze had a smaller example…

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Wednesday, March 29, 2006
10:31 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
Cairngorm problem



 

Joe B found another bug related to binding
and initialization, maybe we’re running into something similar.  If
anyone has a simpler example that uses binding into a chart (one that I can
submit as a bugfile) that would be great.  The smaller the better because
debugging binding when there is a lot of it is very difficult, trust me J

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Wednesday, March 29, 2006
8:40 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
Cairngorm problem



 



Yeah it seems to work, and thanks guys for
looking into this….

Any ideas why I would have to do this though for just the chart?

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Renaun Erickson
Sent: Wednesday, March 29, 2006
12:05 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
Cairngorm problem



 

Johanthan and Peter,

I finally got a chance to test the code.  I
confirm the spardic
LineChart bind issue with HTTPService's url
accessing a cfm and a php
file.

I also confirm Peter's solution by using
"executeBindings".  Basically
import mx.core.Application and add this line of
code at the bottom of
SalesCommand's onResult function
"Application.application.executeBindings(true);".

I only had the time to confirm these two
things.  I didn't find any
more information to narrow it down.

Renaun

--- In flexcoders@yahoogroups.com,
"Peter Blazejewicz"
<[EMAIL PROTECTED]> wrote:
>
> hi Jonathan,
> 
> calling
Application.application.executeBindings(true) within orginal
> StatsCommand onResult handler make your
example working fine for me
> (when requesting data from jsp dynamic page),
> 
> regards,
> Peter Blazejewicz
>














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

RE: [flexcoders] Re: Cairngorm problem

2006-03-29 Thread Jonathan Miranda












Yeah it seems to work, and thanks guys for
looking into this….

Any ideas why I would have to do this though for just the chart?

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Renaun Erickson
Sent: Wednesday, March 29, 2006
12:05 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
Cairngorm problem



 

Johanthan and Peter,

I finally got a chance to test the code.  I
confirm the spardic
LineChart bind issue with HTTPService's url
accessing a cfm and a php
file.

I also confirm Peter's solution by using
"executeBindings".  Basically
import mx.core.Application and add this line of
code at the bottom of
SalesCommand's onResult function
"Application.application.executeBindings(true);".

I only had the time to confirm these two
things.  I didn't find any
more information to narrow it down.

Renaun

--- In flexcoders@yahoogroups.com, "Peter
Blazejewicz"
<[EMAIL PROTECTED]> wrote:
>
> hi Jonathan,
> 
> calling
Application.application.executeBindings(true) within orginal
> StatsCommand onResult handler make your
example working fine for me
> (when requesting data from jsp dynamic page),
> 
> regards,
> Peter Blazejewicz
>












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





  




  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Re: Cairngorm problem

2006-03-28 Thread Jonathan Miranda










Well, if I make the same exact call in non-Cairngorm
it works fine. If you want, I can post the code of the non-cairngorm solution that
works right now. Either it’s something specific to binding in this manor
or somehow the modelLocator change is being taken wrong…..but remember
this is only for the chart – the datagrid (and they’re mapped to
the same data) works fine…..and only for a non-hard coded xml file.

I haven’t had the time to check if it’s only HTTPServices…but
my guess is if it’s working fine with a hard xml file (dummy.xml) and not
with the cfm file (sales.cfm – which I can post also, just outputs a
mime-type of text/xml….as far as I can see, it’s the exact same –
even with a comparison tool) then it might be something entirely different
(maybe the xml parser or the binding events).




Either way, it’s totally weird because all I change is from a hard-coded
file to a cfm that produces the exact same thing (but takes 1 second) and it
breaks the charts. So yeah, can’t narrow down yet because I’ve got
no idea why it’s doing this J If anyone wants any debugging output or anything from me (since
that cfm isn’t accessible outside the intranet), or the code of the
non-cairngorm working one just ask. 

Any help would be *greatly*
appreciated.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Renaun Erickson
Sent: Tuesday, March 28, 2006 3:25
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
Cairngorm problem



 

This does sound weird.  I haven't had time to play with the
HTTPService 1s timing issue.  But definetly
something is going on.  So
we have narrowed it down to HTTPService and
Binding is that correct,
not Cairngorm or other RPC services?

Renaun

--- In flexcoders@yahoogroups.com,
"Peter Blazejewicz"
<[EMAIL PROTECTED]> wrote:
>
> Hello Jonathan,
> 
> you've posted nice example so I've decided to
investigate what you
> described even if i'm not very experienced
dev yet,
> 
> so first I wrote a simple jsp page that
simply returns xml data (your
> dummy.xml is a content returned) with added
Thread.sleep() used to
> sustain results for few seconds, Even if I
changed response time to
> minimal values there was no change in
dashboard behavior, charts are
> not updated with remote call, DataGrid data
are correctly updated,
> 
> That was strange for me because I've already
ported Flex Dashboard
> sample to Cairngorm and it works fine when
data is requested from
server,
> So I next moved HTTPService and
onResults/onFault handlers to
> Application that way:
> 
> .
>  
initialize="initApp()">
>  

>  
  id="GetSalesData"
url=""
href="http://localhost:8084/dashboard/cfm/sales.jsp">http://localhost:8084/dashboard/cfm/sales.jsp"  

>  
  result="onResult(event)"
>  
  fault="onFault(event)"/> 
>  

>  
  
>  

>  

> 
> 
> that is moving business logic into main code
and there is no change,
> DataGrids data are updated but charts are
not,
> with that solution I'm not using Cairngorm
for data requests at all
> using basic HTTPService solution,
> I think there is rather something in bindings
and Charts with that
> specific solution because as I mentioned I've
already existing
> Cairngorm based sample which updates bindings
without problems,
> Also Renaun mentioned bindings working fine
with AMFPHP based
> Cairngorm implemenation,
> 
> hth,
> kind regards,
> Peter Blazejewicz
>












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

RE: [flexcoders] Re: Cairngorm problem

2006-03-28 Thread Jonathan Miranda










Alright, so after seeing this reply and
going slightly insane for awhile I actually narrowed down the problem….and
wow what a WEIRD bug.

Ok, here goes:

   

    id="GetSalesData"
url=""


    result="event.call.resultHandler(
event )"

    fault="event.call.faultHandler(
event )"/>

 

If I run this, it causes the problem I
talked about – chart doesn’t update, datagrid does, yadda yadda. So
I refresh the flex application like crazy (yes, spam refresh…I was mad at
this stupid thing J) and IT WORKED. So dumbfounded, I hit refresh in a few seconds and
it breaks.

So I decide, it’s gotta be the call right? So I go to that url and run it
and see the result (it’s an xml file) and decide to copy the result xml
into a hard file called dummy.xml.
        

    id="GetSalesData"
url="" 

    result="event.call.resultHandler(
event )"



    fault="event.call.faultHandler(
event )"/>

Guess what? It worked 100%. So I’m now thinking….ok, what the heck.
You’re telling me the service isn’t working fine? Because remember,
this works exactly fine in non-Cairngorm….so I take the two files. I run
the service link and do Save Page As – then I took the “view source”
of that, write it into an xml file and save it. Compare the two, exactly the
same file size and everything – zero file difference using a file
comparison tool. So…..I delve deeper and finally figure it out and you’re
not going believe me but I swear it’s true.

If my service takes more than 1second to run, I get all these problems. If it
takes less than 1 second, it runs perfect.

Yup, that’s right – using CFdebugging I found out how long the
service was running and if I can cut-down the file runtime under a second (aka
the hard file or spamming refresh to get a saved result), it runs fine. If it
takes more than 1 second, I get all these problems where the chart doesn’t
show up, the legend is messed up, but the datagrid and the rest is fine…and
if I hard push the data into the chart it works fine.

Seriously the *only* thing I
change between the two is going to that URL above (which produces the exact
same XML but takes a little longer) and a hard-copy of the xml and it works
perfect. Zero coding changes at all besides that one line.

My guess? I know you’re going to think I’m nuts but this has to be
Cairngorm because in the exact same code, if I take the HTTPService out of my
Services.mxml file and move it into the charting template itself – works perfect.
Something is going on in the Delegate, ServiceLocator, or the Chart is
expecting an update to data that isn’t there yet, or….well hell if
I know, all I know is if that webservice for some reason takes longer than 1
second the whole thing breaks. If anyone wants me to pump out any kind of
debugging to see why this is doing this, just let me know - but seriously, all
I change between the two is the url of that service and it goes from working to
not at all.

http://www.irishtexan.net/~sand/temp/bin/srcview/


I’ve posted the code so you can look at what I’m doing – you’ll
notice it’s pretty much to the T exactly like yours. Again, all I need to
do is change that url to my internal url that I put above, have it take more
than 1 second, and it all breaks….

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Renaun Erickson
Sent: Monday, March 27, 2006 10:19
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
Cairngorm problem



 

I create an example called "ComplexObjectBinding" that
illustrates
using simple binding and Cairngorm method of a
static ModelLocator.

You can find it here:
http://www.renaun.com/flex2/

N

RE: [flexcoders] Cairngorm problem

2006-03-27 Thread Jonathan Miranda












So….I stump everyone here yet? J

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated addressee. 
If you are not the named addressee you should not disseminate, distribute, or
copy this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Friday, March 24, 2006 11:14
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Cairngorm
problem



 



Hmmm, I sent
this over an hour ago and it still hasn’t updated on the list.
Let’s try again:


Well, I just got probably a better
working example. Matt can attest I find the weirdest bugs J

Here’s the rundown:





 

When the model changes, the DataGrid updates, the chart
doesn’t.
When I click the button, the chart updates.

Same thing (I changed it to ArrayCollection from an Array to make sure) outside
Cairngorm works fine.

Non-cairngorm:

-return from service
    hourData = event.result.list.hour;

    slicedHourData = new ArrayCollection(hourData);
-in mxml
 [Bindable]

 public var slicedHourData :
ArrayCollection;

    

-in template component
    [Bindable]
    public var hourData : ArrayCollection;
    
    

Cairngorm:

-return from service
    model.hourData = new ArrayCollection(
event.result.list.hour);
-in modelLocator (which is a bindable class)
    public var hourData: ArrayCollection;    
-in template component
    [Bindable]

    public var model : ModelLocator =
ModelLocator.getInstance();
    
    

Pretty much the same exact code but it’s the chart isn’t updating
in Cairngorm but the datagrid updates for both.

 

 

 

_

Jonathan Miranda

Flexible Master of the Web

"Try not to
become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message
contains confidential and/or legally privileged information and is intended for
use only by the indicated addressee.  If you are not the named addressee
you should not disseminate, distribute, or copy this e-mail. Please notify the
sender immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. E-mail transmissions cannot be guaranteed
to be secure or error-free as information could be intercepted, corrupted,
lost, destroyed,arrive late or incomplete, or contain viruses. The sender
therefore does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission. If verification
is required please request a hard-copy version.

 











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

2006-03-24 Thread Jonathan Miranda











Hmmm, I sent this over an hour ago and it still hasn’t
updated on the list. Let’s try again:


Well, I just got probably a better
working example. Matt can attest I find the weirdest bugs J

Here’s the rundown:





 

When the
model changes, the DataGrid updates, the chart doesn’t.
When I click the button, the chart updates.

Same thing (I changed it to ArrayCollection from an Array to make sure) outside
Cairngorm works fine.

Non-cairngorm:

-return from service
    hourData = event.result.list.hour;

    slicedHourData = new
ArrayCollection(hourData);
-in mxml
 [Bindable]

 public var
slicedHourData : ArrayCollection;

    

-in template component
    [Bindable]
    public var hourData : ArrayCollection;
    
    

Cairngorm:

-return from service
    model.hourData = new ArrayCollection(
event.result.list.hour);
-in modelLocator (which is a bindable class)
    public var hourData: ArrayCollection;    
-in template component
    [Bindable]

    public var model :
ModelLocator = ModelLocator.getInstance();
    
    

Pretty much the same exact code but it’s the chart isn’t updating
in Cairngorm but the datagrid updates for both.

 

 

 

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 












--
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] Cairngorm Model binding problem

2006-03-24 Thread Jonathan Miranda













And just to clarify, 



-using Cairngorm 2
-the dataProvider {model.hourData} is an ArrayCollection
-I’ve looked at the data and removed everything to a barebones example so
that I’m only looking at the Hour (00 to 23, just numbers) and the chart still
won’t update.
-I’m using the exact same code without Cairngorm and it runs fine (I passed
the data in as an array)
-and again, datagrid updates fine but the chart never does and they’re
looking at the exact same item

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated addressee. 
If you are not the named addressee you should not disseminate, distribute, or
copy this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Friday, March 24, 2006 7:49
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Cairngorm Model binding problem



 



Hmmm, alright I think I narrowed down the problem and with coffee
this morning I’m a bit clearer on the problem here.

The binding is working fine (the class is bindable, so properties don’t
need to be – using Cairngorm 2) because I’ve tested the exact same
thing with a label/string and the same ICV/datagrid and it works….but my
chart won’t update. To make it real simple, I’ve got a basic
example:

   

   


   


   


   


   


   


 

 
    

   
    

   
   


   
    

   
    

   
   


   
    

   
     

   
   
   

   
   
   


   
    

   
   


   
   


   
   
   
   

   
   


   
    

   
    

I’ve even removed everything from the LineChart besides the horizontalAxis
(removed dataTipFunctions,verticalaxis, etc…) making it a 5 lines of code
chart and it doesn’t update even the horizontalAxis. These are right next
to each other in code as shown above.




As you can see my datagrid comes out fine, but my chart doesn’t update
and stays empty



Ideas?
_

Jonathan Miranda



Flexible Master of the Web



"Try not to become a man of success, but a man of value."
- Albert Einstein



HealthGrades: Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832



c  (707) 761-0868



[EMAIL PROTECTED]


_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.













From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Benoit Hediard
Sent: Friday, March 24, 2006 2:05
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Cairngorm
Model binding problem



 

You also need to put [Bindable] in your ModelLocator
class.



 

[Bindable]



public var ICV: ICollectionView;



 

Benoit Hediard



 







De : flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroup

RE: [flexcoders] Cairngorm Model binding problem

2006-03-24 Thread Jonathan Miranda











Hmmm, alright I think I narrowed down the
problem and with coffee this morning I’m a bit clearer on the problem
here.

The binding is working fine (the class is bindable, so properties don’t
need to be – using Cairngorm 2) because I’ve tested the exact same
thing with a label/string and the same ICV/datagrid and it works….but my
chart won’t update. To make it real simple, I’ve got a basic
example:

   

    

    

   


   


    

    

 

      

       


       


       


       


       


       


       
 

       
   

            

       


       


        

              


       


       


       


I’ve even removed everything from the LineChart besides the
horizontalAxis (removed dataTipFunctions,verticalaxis, etc…) making it a
5 lines of code chart and it doesn’t update even the horizontalAxis.
These are right next to each other in code as shown above.




As you can see my datagrid comes out fine, but my chart doesn’t update
and stays empty



Ideas?
_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated addressee. 
If you are not the named addressee you should not disseminate, distribute, or
copy this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Benoit Hediard
Sent: Friday, March 24, 2006 2:05
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Cairngorm Model binding problem



 

You also need to put [Bindable]
in your ModelLocator class.

 

[Bindable]

public var ICV: ICollectionView;

 

Benoit Hediard

 







De : flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] De la part de Jonathan Miranda
Envoyé : vendredi 24 mars
2006 01:30
À : flexcoders@yahoogroups.com
Objet : [flexcoders]
Cairngorm Model binding problem



Alright,
I’m attempting to move my little dashboard to Cairngorm and it’s
going alright but now I’ve got a real basic problem and it’s
stumping me – I know it’s something little but I’m stuck. In
my ModelLocator instance I have an ICollectionView. Service gets called by
event/delegates and the command responder is setting the model.ICV
correctly….but my chart which uses dataProvider=”{model.ICV}”
isn’t updating. Now, since I made in my chart component:

[Bindable]

public var
model : ModelLocator = ModelLocator.getInstance();



And in my ModelLocator file:

public var ICV: ICollectionView;

I’m assuming the problem is somewhere in the binding – do I need to
broadcast an update event to the Chart….that doesn’t sound right
though, anytime an ICV changes I shouldn’t have to do that right? Bah,
having a headache isn’t helping….anyone got any ideas where I went
wrong?



_

Jonathan Miranda

Flexible Master of the Web

"Try not to
become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message
contains confidential and/or legally privileged information and is intended for
use only by the indicated addressee.  If you are not the named addressee
you should not disseminate, distribute, or copy this e-mail. Please notify the
sender immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. E-mail transmissions cannot be guaranteed
to be secure or error-free as information could be in

RE: [flexcoders] Mac Flex developing

2006-03-23 Thread Jonathan Miranda
Hmm, so what you're telling me is I shouldn't get an iMacPro laptop
unless I can get it to dual-boot OSX/XP ;)

_
Jonathan Miranda
Flexible Master of the Web
"Try not to become a man of success, but a man of value." - Albert
Einstein
HealthGrades: Guiding America to Better Healthcare(tm)
NASDAQ: HGRD
w  (720) 963-3832
c  (707) 761-0868
[EMAIL PROTECTED] 
_

The message contains confidential and/or legally privileged information
and is intended for use only by the indicated addressee.  If you are not
the named addressee you should not disseminate, distribute, or copy this
e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system.
E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late
or incomplete, or contain viruses. The sender therefore does not accept
liability for any errors or omissions in the contents of this message
which arise as a result of e-mail transmission. If verification is
required please request a hard-copy version.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Alisdair Mills
Sent: Thursday, March 23, 2006 5:23 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Mac Flex developing

Mike, just out of interest... is there any way to get the SDK  
compiler to compile as quickly as the compiler in flex builder? Using  
flex builder beta 1 as a guide it would take 1 second or so in flex  
builder but up to 20 seconds with the command line mxmlc compiler...  
quite a difference. I was half way through developing an app with  
beta 1 on a mac (which worked - sort of - on os x eclipse) and since  
beta 2 it has got a whole lot tougher/slower.

On 23 Mar 2006, at 22:25, Mike Chambers wrote:

> fyi, we now have an SDK download for Windows, Mac and Linux:
>
> http://www.macromedia.com/cfusion/entitlement/index.cfm? 
> e=labs#flexsdk2
>
> (no more having to copy from windows)
>
> mike chambers
>
> [EMAIL PROTECTED]
>
> Richard Leggett wrote:
>> I didn't see whether you specified 1.X or 2.0, and I'm sure  
>> someone else
>> will be better able to speak about Flex 1.X, but I might be able to
>> offer some insights for Flex 2.0.
>>
>> I'm a PC guy myself but my colleague is currently working on a Mac
>> running Eclipse with the FlexBuilder 2 plug-ins (copied directly  
>> from a
>> PC install). Here's what you don't get:
>>
>>  - Debugging ( or run in debug player )
>>  - Therefore trace() - see workaround below
>>  - IDE makes the carat jump around and highlight various things,
>> occaisionally he switches to FDT when it all gets too much
>>  - No MXML highlighting and code completion in MXML documents (if  
>> anyone
>> knows the location of the DTD I'm sure you can at least hook up  
>> XMLBuddy
>> or something to it to get some sort of highlighting and prompting).
>>  - Errors e.g. "null has no properties" just causes app to stop  
>> working
>>
>> You do get:
>>
>>  - "intellisense"/code completion / look up declaration in AS  
>> documents
>>  - Run as release build
>>
>> Design view I'm not sure on, would have to check, not used much.  
>> So in
>> summary, it is workable for now as long as there's a PC guy around to
>> debug if it all gets too much.
>>
>> I wrote a quick little Logger class and compatible output panel that
>> uses LocalConnection if anyone would like it, very simple but it  
>> might
>> save you 5 mins and it's better to have some sort of trace than  
>> none at
>> all if you must use a Mac ;)
>>
>> Also tried running Eclipse in VirtualPC, as you'd expect no good  
>> even on
>> the fastest Macs, if anyone has any insights into running Darwine on
>> Tiger I'd love to be able to pass it on.
>>
>> Rich
>>
>> -

>> ---
>> *From:* flexcoders@yahoogroups.com  
>> [mailto:[EMAIL PROTECTED]
>> *On Behalf Of *Jonathan Miranda
>> *Sent:* 23 March 2006 19:34
>> *To:* flexcoders@yahoogroups.com
>> *Subject:* [flexcoders] Mac Flex developing
>>
>> Just curious, how and if there are differences with developing  
>> Flex on a
>> Mac (the only thing I can foresee is tools limited to Windows
>> environments).**
>>
>> _
>>
>> *Jonathan Miranda*
>>
>> *Flexib

[flexcoders] Cairngorm Model binding problem

2006-03-23 Thread Jonathan Miranda











Alright, I’m attempting to move my little dashboard to
Cairngorm and it’s going alright but now I’ve got a real basic
problem and it’s stumping me – I know it’s something little
but I’m stuck. In my ModelLocator instance I have an ICollectionView.
Service gets called by event/delegates and the command responder is setting the
model.ICV correctly….but my chart which uses dataProvider=”{model.ICV}”
isn’t updating. Now, since I made in my chart component:

[Bindable]

public var model : ModelLocator =
ModelLocator.getInstance();



And in my ModelLocator file:

public var ICV: ICollectionView;

I’m assuming the problem is somewhere in the binding – do I need to
broadcast an update event to the Chart….that doesn’t sound right
though, anytime an ICV changes I shouldn’t have to do that right? Bah,
having a headache isn’t helping….anyone got any ideas where I went
wrong?

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 












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





  




  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Mac Flex developing

2006-03-23 Thread Jonathan Miranda











Just curious, how and if there are differences with
developing Flex on a Mac (the only thing I can foresee is tools limited to
Windows environments).

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 












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





  




  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Transitions Demo

2006-03-21 Thread Jonathan Miranda










http://labs.macromedia.com/flexproductline/videos/#/

 

So where’s the Transitions code since Flex 2 Beta 2 is
out J

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy this
e-mail. Please notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] Flash vunerability

2006-03-15 Thread Jonathan Miranda










Anyone know if this affects Flash player 8.5 beta?

http://www.macromedia.com/devnet/security/security_zone/apsb06-03.html

 

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy this
e-mail. Please notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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 1.5] Update ColumnData with new data

2006-03-15 Thread Jonathan Miranda










Your easiest bet for this is to have a
cellRenderer send an event out when you leave the cell and update the
dataprovider accordingly in a function which will update the datagrid. If you’re
unlucky like me, I had to have selectable=false and it was giving me a headache
trying to figure this out (knowing which row I was on) – but I got the
final answer after a long list of emails.

Things to note first about this:
-my cell renderer had to have implements="mx.controls.listclasses.IDropInListItemRenderer"
because I need access to listdata
-you can’t get to selectedIndices or anything of the like if your
selectable=false, so that’s why I had to use the vPosition
-the idea is you bubble an event out from the cell you’re editing, find
out what row it is (and column in your case) and change the dataprovider.

Here’s the code for finding the row: (resultsDG is my datagrid, the stuff
inside the brackets is the row position and compare is my column)

resultsDG.dataProvider[e.target.parent.listData.owner.vPosition+e.target.parent.listData.rowIndex-1].compare

 



Try tackling the extension of the
cellrenderer to get the listData and if you got questions I can provide more
examples.
_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sreejith Unnikrishnan
Sent: Tuesday, March 14, 2006
11:39 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [Flex 1.5]
Update ColumnData with new data



 



Hi,





 





Need some help here.





 





Assume I have an editable datagrid with 10 columns and
10 rows, all cells initially populated with a value 0.





 





When I enter a value, say 10 in the first column and tab
out, I need to update all the succeeding columns with the value 10. And then if
I say edit the 3rd column with a different value, the succeeding columns should
update with the new value.





 





What would be the most efficient way to achieve this?





 





Maybe I should try to generically find the
"newValue" of a cell and then assign it by rowIndex-columnIndex?





 





Thanks





Sree











--
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] Quick RemoteObject clarification

2006-03-14 Thread Jonathan Miranda










RemoteObject in Flex 2 requires Flex Enterprise Services and
a Flash Remoting Gateway (or does FES come
with one?).

RemoteObject in Flex 1.5 just requires a Flash Remoting Gateway.

Right?

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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: SPAM-LOW: [flexcoders] FES & .Net

2006-03-14 Thread Jonathan Miranda












You’d have to buy the Flash Remoting
Gateway for .Net

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Philippe Maegerman
Sent: Tuesday, March 14, 2006 5:15
AM
To: flexcoders@yahoogroups.com
Subject: RE : SPAM-LOW:
[flexcoders] FES & .Net



 



I think BlueDragon doesn't support flash remoting.





 





Philippe















De: flexcoders@yahoogroups.com de la part de Clarke
Bishop
Date: lun. 3/13/2006 22:21
À: flexcoders@yahoogroups.com
Objet : RE: SPAM-LOW: [flexcoders]
FES & .Net





Do you know about Blue Dragon? The
language is CFML and it can run on top of .Net just like CF runs on top of
Java. This might help you with your migration!

 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Battershall, Jeff
Sent: Monday, March 13, 2006 10:54
AM
To: flexcoders@yahoogroups.com
Subject: SPAM-LOW: [flexcoders] FES & .Net

Our entire website
infrastructure, after being on Java/CF shop for
years, is now going to be ported over to .Net.

I've got existing Flex apps built against a CFC
back end, which I was
planning to port to Flex2, leveraging FES and the CF Adapter.  

So, my question is how Flex Enterprise Services
can be integrated with
.Net, and if anyone has any experience with this.

Jeff Battershall
Application Architect
Dow Jones Indexes
[EMAIL PROTECTED]
(609) 520-5637 (p)
(484) 477-9900 (c)


--
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 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: WSDLResponse not resolvable

2006-03-13 Thread Jonathan Miranda












Here’s a doosey then – the
exact same call using Flex 1.5 works completely fine. Flex 2 I get this error….so
either Flex 1.5 doesn’t care about the WSDL problem or Flex2 changed
something about not allowing the return of complex objects in a webservice.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin
Sent: Sunday, March 12, 2006 2:42
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
WSDLResponse not resolvable



 

So far when we’ve seen this
it’s been because the namespace declaration was missing in the WSDL that
would line up the GetCitiesResponse with the method.  So go through your
produced WSDL carefully and make sure that the namespaces match up correctly.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Friday, March 10, 2006 3:22
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
WSDLResponse not resolvable



 



Nah, it’s not the response not being
there….oddly enough passing a string works fine – it’s a
return type of Any (object) or Struct that blows up.

_

Jonathan Miranda

Flexible Master of the Web

"Try not to
become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Doug Lowder
Sent: Friday, March 10, 2006 4:08
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: WSDLResponse
not resolvable



 

Looks like some kind of
mismatch between GetCities and 
GetCitiesResponse in your code (although I didn't
see a definition 
for GetCitiesResponse).

Maybe try: 

('Error:'+event.fault.faultstring,'Error',Alert.OK)"

result="getCitiesHandler(event)">

...

function getCitiesHandler(event:
mx.rpc.events.ResultEvent) {
   myData = event.result;
}

...

myRemote.GetCities(myState, myCityType);


--- In flexcoders@yahoogroups.com,
"Jonathan Miranda" <[EMAIL PROTECTED]> 
wrote:
>
> Need help with an error message - Working
with BlueDragon 
(aka .Net),
> I'm attempting a WebService in Flex. Doing a
"cfinvoke" works fine 
and
> looking at the wsdl produced from the CFC it
looks fine...but I 
get this
> when I try a WebService call.
> 
>  
> 
> 
> 
> Element 
http://www.newatlanta.com/bluedragon/cfc/:GetCitiesResponse
not
> resolvable
> 
>
at
> 
mx.rpc.soap::WSDLParser/http://www.macromedia.com/2005/flex/mx/intern
al:
> :parseMessage()
> 
>
at mx.rpc.soap::WSDLOperation/parseMessages()
> 
>
at
> 
mx.rpc.soap::Operation/http://www.macromedia.com/2005/flex/mx/interna
l::
> invokePendingCall()
> 
>
at
> 
mx.rpc.soap::Operation/http://www.macromedia.com/2005/flex/mx/interna
l::
> invokeAllPending()
> 
>

RE: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread Jonathan Miranda












Well my best guess is mass-market appeal
(Flash player doesn’t work on everything) and Flex 2 is still beta (Flex1
and Flex1.5 were nice but not near as sexy from a usability standpoint).

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of dos dedos
Sent: Monday, March 13, 2006 10:25
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Google,
Yahoo hooked on AJAX?



 


Google has purchased at least one company that uses Flash or Flex (a Web
analytics startup) but their own internal efforts seem to be always focused on AJAX ... e.g. the latest
Google Mars (http://www.google.com/mars/)

So it's fair to wonder why Google isn't doing more with Flex at this time ...
and why Flickr (Yahoo) moved from Flash to AJAX ... especially given the fact
that Flex 2 has a lot going for it from technical and end-user perspectives.

Attitudes change over time and new technologies take a while to adopt, but it'd
be nice to understand whether or not Google, Yahoo and others are consciously
resisting Flex based on some non-technical reason (e.g. the fact that Flex is a
proprietary platform whereas AJAX
is not.)

Google's and Yahoo's position doesn't matter all that much as far as market
adoption for Flex, but it would be interesting to understand the strategic
reasons why Google, Yahoo and other major players (e.g. eBay) have so far
preferr ed to stick with AJAX.

An interesting position for Google and Yahoo would be to endorse AJAX half of the time and
Flex the other half, or two thrids to one. This way they would keep the market
from leaning too heavily in favor of either. But as of now, they're leaning too
heavily in favor of AJAX,
yet it's very possible that they'll release (or acquire) something based on
Flex 2 in the future. 

I believe Sun has been very successful with Java on the server side ... Flex
could become as popular on the client side as Java is on the server side
if  it's opened up in the style of the Java Community Process.

Just curious if anyone has any insights about where Adobe may be going with
Flex ... ?

Marc










Yahoo! Mail
Bring photos to life! New
PhotoMail makes sharing a breeze. 







--
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: WSDLResponse not resolvable

2006-03-10 Thread Jonathan Miranda












Nah, it’s not the response not being
there….oddly enough passing a string works fine – it’s a
return type of Any (object) or Struct that blows up.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or incomplete,
or contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message which arise as a result of
e-mail transmission. If verification is required please request a hard-copy
version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Doug Lowder
Sent: Friday, March 10, 2006 4:08
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
WSDLResponse not resolvable



 

Looks like some kind of
mismatch between GetCities and 
GetCitiesResponse in your code (although I didn't
see a definition 
for GetCitiesResponse).

Maybe try: 

('Error:'+event.fault.faultstring,'Error',Alert.OK)"

result="getCitiesHandler(event)">

...

function getCitiesHandler(event:
mx.rpc.events.ResultEvent) {
   myData = event.result;
}

...

myRemote.GetCities(myState, myCityType);


--- In flexcoders@yahoogroups.com,
"Jonathan Miranda" <[EMAIL PROTECTED]> 
wrote:
>
> Need help with an error message - Working
with BlueDragon 
(aka .Net),
> I'm attempting a WebService in Flex. Doing a
"cfinvoke" works fine 
and
> looking at the wsdl produced from the CFC it
looks fine...but I 
get this
> when I try a WebService call.
> 
>  
> 
> 
> 
> Element 
http://www.newatlanta.com/bluedragon/cfc/:GetCitiesResponse
not
> resolvable
> 
>
at
> 
mx.rpc.soap::WSDLParser/http://www.macromedia.com/2005/flex/mx/intern
al:
> :parseMessage()
> 
>
at mx.rpc.soap::WSDLOperation/parseMessages()
> 
>
at
> 
mx.rpc.soap::Operation/http://www.macromedia.com/2005/flex/mx/interna
l::
> invokePendingCall()
> 
>
at
> 
mx.rpc.soap::Operation/http://www.macromedia.com/2005/flex/mx/interna
l::
> invokeAllPending()
> 
>
at
>
mx.rpc.soap::WebService/mx.rpc.soap:WebService::unEnqueueCalls()
> 
>
at
> 
mx.rpc.soap::WebService/http://www.macromedia.com/2005/flex/mx/intern
al:
> :wsdlHandler()
> 
>
at flash.events::EventDispatcher/dispatchEvent()
> 
>
at mx.rpc.soap::WSDLParser/dispatchEvent()
> 
>
at
> mx.rpc.soap::WSDLParser/mx.rpc.soap:WSDLParser::parseCompleted()
> 
>
at
> 
mx.rpc.soap::WSDLParser/http://www.macromedia.com/2005/flex/mx/intern
al:
> :httpResultHandler()
> 
>
at flash.events::EventDispatcher/dispatchEvent()
> 
>
at
> 
mx.rpc::AbstractInvoker/http://www.macromedia.com/2005/flex/mx/intern
al:
> :dispatchRpcEvent()
> 
>
at
> 
mx.rpc::AbstractInvoker/http://www.macromedia.com/2005/flex/mx/intern
al:
> :resultHandler()
> 
>
at flash.events::EventDispatcher/dispatchEvent()
> 
>
at mx.rpc::Producer/acknowledge()
> 
>
at
>
C:\dev\enterprise_beta1\frameworks\libs\framework.swc
(mx/validators/Vali
>
dator)$132::DirectHTTPMessageResponder/completeHandler()
> 
>
at flash.events::EventDispatcher/dispatchEvent()
> 
>
at flash.net::URLLoader/flash.net:URLLoader::onComplete
()
> 
> Here's the code:
> 
> 
> wsdl="http://SomeSecretGateway/qrsInterface.cfc?wsdl"

useProxy="false">
> 
>

> fault="Alert.show
('Error:'+event.fault.faultstring,'Error',Alert.OK)">
> 
>

> 
>
CA
> 
>
H
> 
>

> 
>

> 
>

> 
>  
> 
>  
> 
> _
> 
> Jonathan Miranda
> 
> Flexible Master of the Web
> 
> "Try not to become a man of success, but
a man of value." - Albert
> Einstein
> 
> HealthGrades <http://

[flexcoders] WSDLResponse not resolvable

2006-03-10 Thread Jonathan Miranda










Need help with an error message - Working with BlueDragon
(aka .Net), I’m attempting a WebService in Flex. Doing a “cfinvoke”
works fine and looking at the wsdl produced from the CFC it looks fine…but
I get this when I try a WebService call.

 



Element http://www.newatlanta.com/bluedragon/cfc/:GetCitiesResponse not
resolvable

    at
mx.rpc.soap::WSDLParser/http://www.macromedia.com/2005/flex/mx/internal::parseMessage()

    at mx.rpc.soap::WSDLOperation/parseMessages()

    at
mx.rpc.soap::Operation/http://www.macromedia.com/2005/flex/mx/internal::invokePendingCall()

    at
mx.rpc.soap::Operation/http://www.macromedia.com/2005/flex/mx/internal::invokeAllPending()

    at mx.rpc.soap::WebService/mx.rpc.soap:WebService::unEnqueueCalls()

    at
mx.rpc.soap::WebService/http://www.macromedia.com/2005/flex/mx/internal::wsdlHandler()

    at flash.events::EventDispatcher/dispatchEvent()

    at mx.rpc.soap::WSDLParser/dispatchEvent()

    at mx.rpc.soap::WSDLParser/mx.rpc.soap:WSDLParser::parseCompleted()

    at
mx.rpc.soap::WSDLParser/http://www.macromedia.com/2005/flex/mx/internal::httpResultHandler()

    at flash.events::EventDispatcher/dispatchEvent()

    at
mx.rpc::AbstractInvoker/http://www.macromedia.com/2005/flex/mx/internal::dispatchRpcEvent()

    at
mx.rpc::AbstractInvoker/http://www.macromedia.com/2005/flex/mx/internal::resultHandler()

    at flash.events::EventDispatcher/dispatchEvent()

    at mx.rpc::Producer/acknowledge()

    at
C:\dev\enterprise_beta1\frameworks\libs\framework.swc(mx/validators/Validator)$132::DirectHTTPMessageResponder/completeHandler()

    at flash.events::EventDispatcher/dispatchEvent()

    at
flash.net::URLLoader/flash.net:URLLoader::onComplete()

Here’s the code:



    

    

    CA

    H

    

    

    

 

 

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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: Weird Gradient Fill error

2006-03-10 Thread Jonathan Miranda










“What the hell am I looking at? When
does this happen in the movie?”
“Now. You’re looking at now sir. Everything happens now, is
happening now”
“What happened to then?”
“We passed then”
“Go back to then”
“We missed it.”
“When?”
“Just now?”
“When will then be now?”

Soon J (sorry, I’m actually looking at the movie while I code and
had to)



_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or incomplete,
or contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message which arise as a result of
e-mail transmission. If verification is required please request a hard-copy
version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Gordon Smith
Sent: Friday, March 10, 2006 2:26
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
Weird Gradient Fill error



 

Soon.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Scott Fanetti
Sent: Thursday, March 09, 2006
5:30 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re:
Weird Gradient Fill error



 

Roger,

Do you have any timeline on when Beta 2 is going live?

Thanks
Scott Fanetti
RosettaStone.com









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Remote calls and Security

2006-03-10 Thread Jonathan Miranda












Got any material on this stuff? (web.xml?
I thought it was crossdomain.xml) – I’ll have to try the
RemoteObject over SSL, haven’t tangoed with that yet.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or incomplete,
or contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message which arise as a result of
e-mail transmission. If verification is required please request a hard-copy
version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Thursday, March 09, 2006
11:32 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Remote
calls and Security



 

RemoteObject can be secured a few
ways.  You can protect the channel itself which allows access to that
object (basically equivalent to locking down the gateway in web.xml).  You
can also restrict by role the users who are allowed to access the service, that
is integrated into your J2EE server or via a custom login adapter.  You
can make RemoteObject calls over SSL just fine.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Thursday, March 09, 2006
11:40 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Remote calls
and Security



 

With a background in Flash Remoting, I understand quite a
bit about Flash Remoting but wanted to ask what the different approaches to
securing a RemoteObject call are? Crossdomain.xml still have any effect on the
SWF’s allowed domain pool – what about going over SSL with Flex
Enterprise calls? I guess I’m looking or a mini article on security with
these calls – just double checking my approach before I find out later I
was mistaken J

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 










--
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] Remote calls and Security

2006-03-09 Thread Jonathan Miranda










With a background in Flash Remoting, I understand quite a
bit about Flash Remoting but wanted to ask what the different approaches to
securing a RemoteObject call are? Crossdomain.xml still have any effect on the SWF’s
allowed domain pool – what about going over SSL with Flex Enterprise
calls? I guess I’m looking or a mini article on security with these calls
– just double checking my approach before I find out later I was mistaken
J

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] Is there a third-party or opensource market for Flex components?

2006-03-09 Thread Jonathan Miranda












Ghostwire was great back when I did Flash
development, but I think it’s all in AS1 still.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL
Sent: Thursday, March 09, 2006
8:43 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Is there
a third-party or opensource market for Flex components?



 

Market?  Well, there are
a bunch of Flash components that can easily be 
ported to work in Flex, some with no work at all.

As far as creating them, however, that takes a lot
of work, time, and the 
decision to go pay vs. open source isn't one to be
taken lightly if you 
value your time at all.

There some other sets out there too like mCom,
Ghostwire, ActionStep, etc. 
that have some components unique to their
set.  Hit Google for Flash 
components.



- Original Message - 
From: "mmthm"
<[EMAIL PROTECTED]>
To: <flexcoders@yahoogroups.com>
Sent: Thursday, March 09, 2006 10:14 AM
Subject: [flexcoders] Is there a third-party or
opensource market for Flex 
components?


I'm new to Flex, and i'm interested in knowing if
there are any markets
where i can obtain extended Flex components,
either commercial or
opensource (eg. sourceforge)?  I would like
to use components that are
not currently part of the Flex framework.

I'm thinking of components like complex
calendaring (eg.
http://www.laszlosystems.com/lps/sample-apps/calendar/calendar.lzo?
lzt=html), clock controls, gauges, spreadsheet
controls, reporting
components, specialized grids, gant chart
components, network graphing
components, chat controls, etc

Thanks.







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













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Flash Remoting Gateway and .Net

2006-03-08 Thread Jonathan Miranda












As cool as it sounds, pawning an
open-source option to a major client probably won’t go well….(aka support,
reliability down the line, etc)

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of John C. Bland II
Sent: Wednesday, March 08, 2006
10:55 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flash
Remoting Gateway and .Net



 

Check out http://fluorine.thesilentgroup.com/fluorine/index.html



On 3/8/06, Jonathan
Miranda <[EMAIL PROTECTED]>
wrote:





Since
I'm working in a .Net environment, I need to buy the Flash Remoting software
from Macromedia/Adobe for .Net so I can use my nifty RemoteObjects – but
looking at the requirements, it says it runs on .Net SDK 1.0. Anyone know if
they have a 2.0 version?

_________

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a man of success, but a man of
value." - Albert Einstein

HealthGrades
: Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The
message contains confidential and/or legally privileged information and is
intended for use only by the indicated addressee.  If you are not the
named addressee you should not disseminate, distribute, or copy this e-mail.
Please notify the sender immediately by e-mail if you have received this e-mail
by mistake and delete this e-mail from your system. E-mail transmissions cannot
be guaranteed to be secure or error-free as information could be intercepted,
corrupted, lost, destroyed,arrive late or incomplete, or contain viruses. The
sender therefore does not accept liability for any errors or omissions in the
contents of this message which arise as a result of e-mail transmission. If
verification is required please request a hard-copy version.

 





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


 














-- 
John C. Bland II
"I do what I can do when I can do it." - Chris Tucker, Money Talks

http://www.gotoandstop.org - Home of
FMUG.az 







--
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] Flash Remoting Gateway and .Net

2006-03-08 Thread Jonathan Miranda










Since I’m working in a .Net environment, I need to buy
the Flash Remoting software from Macromedia/Adobe for .Net so I can use my
nifty RemoteObjects – but looking at the requirements, it says it runs on
.Net SDK 1.0. Anyone know if they have a 2.0 version?

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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 and URL variables

2006-03-02 Thread Jonathan Miranda










Dos

 



 

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL
Sent: Thursday, March 02, 2006
3:55 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex and
URL variables



 



Flex 1.5 or 2?





 





- Original Message - 



From: Jonathan
Miranda 





To: flexcoders@yahoogroups.com






Sent: Thursday, March
02, 2006 5:49 PM





Subject: [flexcoders] Flex
and URL variables







 



Alright, I’ve done this with Flash before but
I’m wondering how similar it is.

Let’s say I start my app @ http://mysite.com/index.mxml?number=3

What’s the easiest way to get that 3 into a variable in Flex? Using
FlashVars in the embed/object tags and then somehow do mx.core.application.Application.number
as my variable?

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] Flex and URL variables

2006-03-02 Thread Jonathan Miranda










Alright, I’ve done this with Flash before but I’m
wondering how similar it is.

Let’s say I start my app @ http://mysite.com/index.mxml?number=3

What’s the easiest way to get that 3 into a variable in Flex? Using
FlashVars in the embed/object tags and then somehow do
mx.core.application.Application.number as my variable?

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] Dashboard Tutorial

2006-03-02 Thread Jonathan Miranda












If you download the Flex 2 Beta 1, on the
welcome screen there’s the source code for it…the data is just
being pulled from an XML file and it’s pretty straight forward.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of sergiosergiomon
Sent: Thursday, March 02, 2006
1:36 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Dashboard
Tutorial



 

Hi everyone!
Nice to become part of this highly skilled and
creative group, even 
though I am not one of you (yet!).
Is there any tutorial based on how to build a
dashboard like the one 
at http://weblogs.macromedia.com/flex_samples/dashboard/dashboard.html?
Where is all the data acquired from?
What is the external source?

Regards,
Sergio
Brazil











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] how do you put a link in a datagrid?

2006-03-02 Thread Jonathan Miranda
Title: RE: [flexcoders] Actionscript-based Applications with Flex 2










Don’t think I’ve ever seen
more answers to a question with no real answer J

If you’re using Flex2, it’s real easy. Either in-line like my
example or a custom cellrenderer (I’ve been using an HBox and Link inside
just for formatting reasons).


    

  

    





For Flex 1.5, ask Jester J He’s more familiar with that end.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy Spratt
Sent: Thursday, March 02, 2006
1:08 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] how do
you put a link in a datagrid?



 

Are you sure you really need a link? 
You could get the same effect using just the DataGrid events and getURL().

 

If you need a true link, try the example. 

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jason Hawryluk
Sent: Thursday, March 02, 2006
12:00 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] how do
you put a link in a datagrid?



 



What problems are you having exactly, have
you tried to do it?





-Message d'origine-
De : flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]De la part de jeff noyes
Envoyé : jeudi 2 mars 2006
13:23
À : flexcoders@yahoogroups.com
Objet : [flexcoders] how do
you put a link in a datagrid?

Can someone please point me to, or
explain how to put a link in a datagrid?

 

I've seen Jesse Wardens flash example, but
I want strictly a flex example.








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Re: repost - Memory leak repeatedly assigning new series to a chart. (2.0b1)

2006-03-02 Thread Jonathan Miranda












Well using the task manager in windows, it’s
showing 94% cpu usage. Didn’t look at the memory though.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of thunderstumpgesatwork
Sent: Wednesday, March 01, 2006
8:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: repost -
Memory leak repeatedly assigning new series to a chart. (2.0b1)



 

It ended up taking up the
CPU? what about memory usage? I'm having
issues with memory leaking, not CPU usage... 

I'm interested if this is the same thing, or
something different?

Thunder

--- In flexcoders@yahoogroups.com,
"Jonathan Miranda" <[EMAIL PROTECTED]>
wrote:
>
> I can tell you after talking with one of the
Chart QA team, they know of
> a memory leak involving resetting the
dataprovider of a chart. I had a
> chart that would refresh every 30 seconds
(httpservice connected to an
> arraycollection for the chart's dp) that in
4-5 hours would take 95% of
> your computer's CPU usage. This is probably
something very similar.
> 
> _
> 
> Jonathan Miranda
> 
> Flexible Master of the Web
> 
> "In the game of chess, it's important to
never let your opponent see
> your pieces."
> 
> HealthGrades <http://www.healthgrades.com/> :
Guiding America to Better
> Healthcare(tm)
> 
> NASDAQ: HGRD
> 
> w  (720) 963-3832
> 
> c  (707) 761-0868
> 
> [EMAIL PROTECTED] 
> 
> _
> 
> The message contains confidential and/or
legally privileged information
> and is intended for use only by the indicated
addressee.  If you are not
> the named addressee you should not
disseminate, distribute, or copy this
> e-mail. Please notify the sender immediately
by e-mail if you have
> received this e-mail by mistake and delete
this e-mail from your system.
> E-mail transmissions cannot be guaranteed to
be secure or error-free as
> information could be intercepted, corrupted,
lost, destroyed,arrive late
> or incomplete, or contain viruses. The sender
therefore does not accept
> liability for any errors or omissions in the
contents of this message
> which arise as a result of e-mail
transmission. If verification is
> required please request a hard-copy version.
> 
> 
> 
> From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
> Behalf Of thunderstumpgesatwork
> Sent: Tuesday, February 28, 2006 2:34 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] repost - Memory leak
repeatedly assigning new
> series to a chart. (2.0b1)
> 
>  
> 
> Hello,
> 
> I'm reposting this because I got no responses
last time and I was
> hoping one of the Flex engineers could
confirm that it has been noted
> (if not verified) that this is happening. 
> 
> This represents a major blocking point to
releasing our app. Memory
> usage CAN NOT continue to grow unbounded.
> 
> I've narrowed it down to code which cleans up
a chart's
> series array and re-initializes it to add a
new set of series with new
> dataproviders, etc.
> 
> Note that with only the AddSeries, and
SeriesDelete functions removed
> (all other code including CategoryAxis
create/delete, and all XML
> manipulation remained) there was no leak.
> 
> I posted a "best practices"
question about list cleanup and memory use
> which describes the architecture I have:
> http://groups.yahoo.com/group/flexcoders/message/29638?threaded=1
> 
> Below is the implementation of DeleteSeries
which attempts to remove
> every series in the chart and clean up the
dataProvider in it.
> 
> Can someone wh

RE: [flexcoders] Resize bug

2006-03-01 Thread Jonathan Miranda












Slowly but surely Matt…this is like
maybe 15 bugs? J

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL
Sent: Wednesday, March 01, 2006
3:43 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Resize
bug



 



Yep, jacked up here.





 





- Original Message - 



From: Jonathan
Miranda 





To: flexcoders@yahoogroups.com






Sent: Wednesday, March
01, 2006 5:14 PM





Subject: [flexcoders]
Resize bug







 



Anyone have problems with someone dragging an HDivideBox
divider to the edges?

 

Take the Welcome Dashboard example: 

http://weblogs.macromedia.com/flex_samples/dashboard/dashboard.html

And drag the dividers to the edges….see the weirdness?

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] Resize bug

2006-03-01 Thread Jonathan Miranda










Anyone have problems with someone dragging an HDivideBox divider
to the edges?

 

Take the Welcome Dashboard example: 

http://weblogs.macromedia.com/flex_samples/dashboard/dashboard.html

And drag the dividers to the edges….see the weirdness?

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you are
not the named addressee you should not disseminate, distribute, or copy this
e-mail. Please notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] Resize bug?

2006-03-01 Thread Jonathan Miranda










Can’t tell if this would be a Firefox/IE error or
Flex, but let’s say you have 2 tabs open and you’re selected on the
tab without your flash video. Resize the browser, then switch tabs –
flash won’t resize until you resize the window again. Does the same in
Firefox and IE – maybe when the browser resizes, it doesn’t
broadcast to all tabs…

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you are
not the named addressee you should not disseminate, distribute, or copy this
e-mail. Please notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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: Xiff and Flex

2006-03-01 Thread Jonathan Miranda












Yeah, our company is probably going to
start using Wildfire, Psi (psi.sf.net – really good jabber client my
buddy wrote) and an internal flex application. Any plans on when that AS3
version is going to come out? I initially tried messing around with it to get
it to work in AS3 but the amount of changes was a bit much for just tinkering.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dave Wolf
Sent: Wednesday, March 01, 2006
12:18 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Xiff and
Flex



 

Wildfire (and pretty much
everything from Jive Software) is outstanding.

-- 
Dave Wolf
Cynergy Systems, Inc.
Macromedia Flex Alliance Partner
http://www.cynergysystems.com

Email:  [EMAIL PROTECTED]
Office: 866-CYNERGY


--- In flexcoders@yahoogroups.com,
"Scott Langeberg" <[EMAIL PROTECTED]>
wrote:
>
> Jesse,
> 
> You're best off installing your own. Wildfire
is a very simple
Jabber server
> (and well-developed) to set up:
> 
> http://jivesoftware.org/
> 
> I would suggest using the built-in database
option, to start with
and then
> deploy your own, once you get it figured out.
They simply use the
database
> to track users and rooms, etc.
> 
> Scott
> 
> On 3/1/06, JesterXL <[EMAIL PROTECTED]>
wrote:
> >
> > I'd be willing to help if someone could
show me to a working
server.  I've
> > got plenty of working Flash & AS2
code, but NO working server's. 
The one at
> > Dreamhost is like... stupid, it comes
with accounts you can
create, but no
> > conference rooms, etc.  I know jack
about Jabber, but I do have
enough code
> > that shows me I'm connecting, and the
server has no support for
conferences
> > as far as I can tell.
> >
> > - Original Message - *From:*
Jonathan Miranda<[EMAIL PROTECTED]>
> > *To:* flexcoders@yahoogroups.com
> > *Sent:* Wednesday, March 01, 2006 12:58
PM
> > *Subject:* RE: [flexcoders] Xiff and
Flex
> >
> >  Know if there is any plans to port
them to AS3? Didn't find
anything on
> > their forums.**
> >
> >
_
> >
> > *Jonathan Miranda*
> >
> > *Flexible Master of the Web*
> >
> > *"Try not to become a man of
success, but a man of value." - Albert
> > Einstein*
> >
> > HealthGrades <http://www.healthgrades.com/>:
Guiding America to Better
> > Healthcare™
> >
> > NASDAQ: HGRD
> >
> > w  (720) 963-3832
> >
> > c  (707) 761-0868
> >
> > [EMAIL PROTECTED]
> >
> > _
> >
> > The message contains confidential and/or
legally privileged
information
> > and is intended for use only by the
indicated addressee.  If you
are not the
> > named addressee you should not
disseminate, distribute, or copy
this e-mail.
> > Please notify the sender immediately by
e-mail if you have
received this
> > e-mail by mistake and delete this e-mail
from your system. E-mail
> > transmissions cannot be guaranteed to be
secure or error-free as
information
> > could be intercepted, corrupted, lost,
destroyed,arrive late or
incomplete,
> > or contain viruses. The sender therefore
does not accept liability
for any
> > errors or omissions in the contents of
this message which arise as
a result
> > of e-mail transmission. If verification
is required please request a
> > hard-copy version.
> >  --
> >
> > *From:* flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
*On
> > Behalf Of *João Fernandes
> > *Sent:* Wednesd

RE: [flexcoders] Xiff and Flex

2006-03-01 Thread Jonathan Miranda












Know if there is any plans to port them to
AS3? Didn’t find anything on their forums.

_

Jonathan Miranda

Flexible Master of the Web

"Try not
to become a man of success, but a man of value." - Albert Einstein

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of João Fernandes
Sent: Wednesday, March 01, 2006
10:54 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Xiff and
Flex



 

I once did work with it
and it works pretty fine.

 

Don’t forget that
XIFF classes are AS2.0 classes. It could be nice to have a Jabber adapter for
messaging.

 



João Fernandes
Sistemas
de Informação

Programador
Informático
Cofina media

Avenida João
Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel
(+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: quarta-feira, 1 de Março de
2006 17:45
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Xiff and
Flex



 

Anyone ever messed around with the Xiff library and Flex?
I’m in a tinkering mood and have begun working on a Flex IM client that
uses Jabber – just curious if anyone else has dove into this area before.

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information could
be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 










--
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] Xiff and Flex

2006-03-01 Thread Jonathan Miranda










Anyone ever messed around with the Xiff library and Flex? I’m
in a tinkering mood and have begun working on a Flex IM client that uses Jabber
– just curious if anyone else has dove into this area before.

_

Jonathan Miranda

Flexible Master of
the Web

"Try not to become a
man of success, but a man of value." - Albert Einstein

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] Calling JS from ActionScript and vice versa

2006-03-01 Thread Jonathan Miranda












The irony that the all-seeing function
returns 42 in the doc example Matt…. J

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Horn
Sent: Wednesday, March 01, 2006
9:23 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Calling
JS from ActionScript and vice versa



 

Also documented in that same
chapter:
"Accessing Flex from _javascript_"
http://livedocs.macromedia.com/flex/20beta1/docs/1310.html

Hth,

Matt Horn
Flex docs 

> -Original Message-
> From: flexcoders@yahoogroups.com

> [mailto:flexcoders@yahoogroups.com]
On Behalf Of Manish Jethani
> Sent: Wednesday, March 01, 2006 11:11 AM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Calling JS from
ActionScript and vice versa
> 
> On 3/1/06, Jonathan Miranda
<[EMAIL PROTECTED]> wrote:
> 
> > Just a random question to extend this,
is there 
> functionality for _javascript_ to call Flex
functions?
> 
> Yes:
> 
> 
ExternalInterface.addCallback("fooFunc");
> 
> // from JS
>
document.getElementById("myFlexApp").fooFunc();
> 
> You can also pass parameters, etc.
> 
> Manish
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Calling JS from ActionScript and vice versa

2006-03-01 Thread Jonathan Miranda










Just a random question to extend this, is
there functionality for _javascript_ to call Flex functions?

 



 

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Horn
Sent: Wednesday, March 01, 2006
8:50 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Calling
JS from ActionScript and vice versa



 

Not sure why a new class is
being declared inside a script block... You
can try the examples in this section of the
Developing Flex Applications
book:

"Accessing _javascript_ functions from
Flex"
http://livedocs.macromedia.com/flex/20beta1/docs/1303.html

Hth,

Matt Horn
Flex docs 

> -Original Message-
> From: flexcoders@yahoogroups.com

> [mailto:flexcoders@yahoogroups.com]
On Behalf Of Mike Potter
> Sent: Wednesday, March 01, 2006 10:01 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Calling JS from
ActionScript and vice versa
> 
> I'm going through the example here,
> http://labs.macromedia.com/wiki/index.php/ActionScript_3:resou
rces:FAQ#How_can_I_call_a_JavaScript_function_from_ActionScript.>
3F
> on how to call a JS function from
ActionScript.
> 
> I have the following MXML:
> 
> http://www.macromedia.com/2005/mxml"
> xmlns="*"
layout="absolute">
>  

>  
  
>  

> 
> 
> Why do I get an error that says "Classes
must not be nested" 
> on the line for public class
ExternalInterfaceTest?
> 
> More importantly, what is the correct code
for calling a JS 
> function via AS, and vice versa?  Oh,
and I'm happy to edit 
> the wiki when I find out what's wrong. :)
> 
> Mike
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] repost - Memory leak repeatedly assigning new series to a chart. (2.0b1)

2006-02-28 Thread Jonathan Miranda












I can tell you after talking with one of
the Chart QA team, they know of a memory leak involving resetting the
dataprovider of a chart. I had a chart that would refresh every 30 seconds
(httpservice connected to an arraycollection for the chart’s dp) that in
4-5 hours would take 95% of your computer’s CPU usage. This is probably
something very similar.

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of thunderstumpgesatwork
Sent: Tuesday, February 28, 2006
2:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] repost -
Memory leak repeatedly assigning new series to a chart. (2.0b1)



 

Hello,

I'm reposting this because I got no responses last
time and I was
hoping one of the Flex engineers could confirm
that it has been noted
(if not verified) that this is happening. 

This represents a major blocking point to
releasing our app. Memory
usage CAN NOT continue to grow unbounded.

I've narrowed it down to code which cleans up a
chart's
series array and re-initializes it to add a new
set of series with new
dataproviders, etc.

Note that with only the AddSeries, and
SeriesDelete functions removed
(all other code including CategoryAxis
create/delete, and all XML
manipulation remained) there was no leak.

I posted a "best practices" question
about list cleanup and memory use
which describes the architecture I have:
http://groups.yahoo.com/group/flexcoders/message/29638?threaded=1

Below is the implementation of DeleteSeries which
attempts to remove
every series in the chart and clean up the
dataProvider in it.

Can someone who knows the internal workings of the
charts maybe look
at this and see if I'm missing something or if
there are any known
issues with the cleanup of chart series?

thanks,
Thunder
__

public static function SeriesDelete(
thisChart:ChartBase )
{
    // try to clean up the series
    var i:Number =
thisChart.series.length;
    while(i--)
    {
    var
obj:Array = thisChart.series.splice(i, 1);
    var
oSeries:Series = null;
    if
(obj[0] is Series)
    {
  
oSeries = Series(obj[0]);
 
if (oSeries.dataProvider is ListCollectionView)
 
{

var oView:ListCollectionView =
ListCollectionView(oSeries.dataProvider);

oView.removeAll();

if (oView.list != null)
   
oView.list.removeAll();

oView.release();

delete oView.list;

oView=null;
 
}
 
delete oSeries.dataProvider;
 
oSeries.dataProvider=null;
 
delete oSeries;
 
oSeries=null;
   }
   obj=null;
    }
    thisChart.series = new Array();
}












--
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] DataGrid automatic height

2006-02-28 Thread Jonathan Miranda












Yeah but how can I set that rows height without
using cell-renderers J

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Tuesday, February 28, 2006
12:56 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 

Yes it should work with variableRowHeight
and if you specify a starting index of 1 and a length of 1 I’d imagine it
should give you that individual row.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Tuesday, February 28, 2006
11:44 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 



Does it work with variableRowHeight=true?
And how is calculate height actually getting the individual row heights?

Reason I ask is I am still trying to find a way to find an individual row
height in AS.

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt
 Chotin
Sent: Tuesday, February 28, 2006
12:22 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 

Found it: in B1 the function is named
calculateHeight: http://livedocs.macromedia.com/labs/1/flex/langref/mx/controls/listclasses/ListBase.html#calculateHeight()

 

Set your DP, then set height equal to that
value.

 

In B2 the function will be
measureHeightOfItems

 

Matt









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Monday, February 27, 2006
6:43 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 



rowCount is read-only if ya use
variableRowHeight=true. So no word on finding the height of a specific row with
actionscript?

_____

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions i

RE: [flexcoders] DataGrid automatic height

2006-02-28 Thread Jonathan Miranda












Does it work with variableRowHeight=true?
And how is calculate height actually getting the individual row heights?

Reason I ask is I am still trying to find a way to find an individual row
height in AS.

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Tuesday, February 28, 2006
12:22 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 

Found it: in B1 the function is named
calculateHeight: http://livedocs.macromedia.com/labs/1/flex/langref/mx/controls/listclasses/ListBase.html#calculateHeight()

 

Set your DP, then set height equal to that
value.

 

In B2 the function will be
measureHeightOfItems

 

Matt









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Monday, February 27, 2006
6:43 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 



rowCount is read-only if ya use
variableRowHeight=true. So no word on finding the height of a specific row with
actionscript?

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt
 Chotin
Sent: Sunday, February 26, 2006
6:28 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 

Have you guys set rowCount to be the same
as dataProvider.length?  That should get the DG to start attempting to
draw all rows.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Friday, February 24, 2006
10:33 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 



If you can find a way to find out
rowHeight by actionscript with variableRowHeight=true, more power to you
– I’m still stumped on this.

_____

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated addressee. 
If you are not the named addressee you should not disseminate, distribute, or
copy this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Jonathan Miranda
Good points and thanks for the insight (coming from a newer developer).

And hey now, you can't plug "we have openings" and give no links, info,
or email address :)
_____
Jonathan Miranda
Flexible Master of the Web
"In the game of chess, it's important to never let your opponent see
your pieces."
HealthGrades: Guiding America to Better Healthcare(tm)
NASDAQ: HGRD
w  (720) 963-3832
c  (707) 761-0868
[EMAIL PROTECTED] 
_

The message contains confidential and/or legally privileged information
and is intended for use only by the indicated addressee.  If you are not
the named addressee you should not disseminate, distribute, or copy this
e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system.
E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late
or incomplete, or contain viruses. The sender therefore does not accept
liability for any errors or omissions in the contents of this message
which arise as a result of e-mail transmission. If verification is
required please request a hard-copy version.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Joe Berkovitz
Sent: Tuesday, February 28, 2006 9:21 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: RIA Certified Developer/Architect

I am sure that there are many viewpoints on this subject, and I won't 
presume to have the "right" one.  However, I have been in the business 
for over 20 years, so I can at least claim to have seen a lot, even if 
I'm wrong in my conclusions :)

I have a couple of things to share -- both my own orientation as someone

who wants to hire good people (we have openings), and my 
impression of general hiring practice in the US software engineering 
business.

As far as my own hiring goes, knowledge of a specific technology ranks 
somewhere near the bottom of my list.  That doesn't make it unimportant 
-- learning new stuff takes valuable time -- but the ability to learn is

more significant to me, and the ability to think about problems 
abstractly (not only in terms of technology XYZ's approach) is more 
significant to me.  So is the ability to have fun, and the ability to 
communicate :).  I build products, so I am generally not looking for a 
contractor to come in and fix a problem, but for a long-term hire. 
Technology changes very rapidly, and passing a certification exam today 
doesn't mean a candidate can adapt to shifting circumstances.

Out there in the bigger world, what I see is that certification counts 
the most in:
- jobs with high turnover (e.g. system administration)
- jobs with inherently short duration (consulting)
- jobs where management is not well-informed enough to make a good 
decision (non-engineering companies)
- jobs at a very junior level (one can count on getting something out of

an unknown new hire until the next technology shift).

For a senior long-term hire, it doesn't really count for much relative 
to job experience.  Theoretically certification could be important in 
arcane specialties, say, natural language recognition, but academia 
tends to take its place there; certification programs instead aim at 
shorter-haul achievements like learning Flex or J2EE.

... .  ..   .j


Nick Weekes wrote:
> not at all.  my point is that a good dev should be aware of all 
> technologies, and not the one he is most comfortable with.
>  
> 
>

> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

> *On Behalf Of *Tolulope Olonade
> *Sent:* 28 February 2006 15:48
> *To:* flexcoders@yahoogroups.com
> *Subject:* RE: [flexcoders] Re: RIA Certified Developer/Architect
> 
> Umn that's a nice way of allowing the discussion enter the "Which 
> technology/platform is better" argument.
> 
> I can tell u I have seen many. And so far in terms of aesthetics and 
> unconventional/unbounded creativity, flex is the strongest player I
have 
> seen so far. Though I don't do much in it but I can smell the
prospects J
> 
>  
> 
>

> 
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

> *On Behalf Of *Nick Weekes
> *Sent:* 28 February 2006 04:30
> *To:* flexcoders@yahoogroups.com
> *Subject:* RE: [flexcoders] Re: RIA Certified Developer/Architect
> 
>  
> 
> Im sure the Ajax 'evangelists' would wish the same thing, as would the

> MS next gen people.  Whatever is fit for purpose gets used, and the 
> market pretty much decides what becomes the standa

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Jonathan Miranda












Awww, so I’m wearing this “Flex
Monkey” t-shirt for nothing? J jk

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nick Weekes
Sent: Tuesday, February 28, 2006
8:30 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: RIA
Certified Developer/Architect



 

Im sure the Ajax 'evangelists' would
wish the same thing, as would the MS next gen people.  Whatever is fit for
purpose gets used, and the market pretty much decides what becomes the
standard, not the well wishers ;-)

 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tolulope Olonade
Sent: 28 February 2006 15:21
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: RIA
Certified Developer/Architect

I am actually talking about Adobe making
Flex the unofficial standard for rich internet application development in a
very smart way.

So we flex evangelists can even carry the
gospel further to executive pple J

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nick Weekes
Sent: 28 February 2006 12:17
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: RIA
Certified Developer/Architect



 

just my 10
cents, but over here in the UK
graduates of tech (comp science/systems dev etc) based degrees usually get some
sort of certification (mostly MSCE/MSCD).  So we have college leavers with
this kind of certificate, which kind of puts certification at the junior/entry
level, rather than the 'niche carving' level.

 



I think the fact that someone can put on their resume that they have solid experience of a (relatively new) tech such
as Flex is way more important.





 





But maybe its
totally different in other countries.





 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tolulope Olonade
Sent: 28 February 2006 11:07
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: RIA Certified
Developer/Architect

You are probably right.

I jus suggest they don’t stay too
late on coming out with it. It could really give them an edge and probably some
market dominance.

Remember there are other competing
 technologies/companies e.g Nexaweb, ajax
etc.

Anyone of them that comes out early is
most likely to carve a niche for himself.

Adobe do really have an edge for now J

Regards

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Modien
Sent: 28 February 2006 09:25
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: RIA
Certified Developer/Architect



 

The point of most
certifications is too insure to a resonable degree that the person is capable
of doing what they say they can do.

I would hesitate to take a car I owned to anyone "claiming" to be a
mechanic but lacked formal certification.

I think the bottom line is...  there are certification programs for other
Adobe/Macromedia products...  and I'm sure there will be one for Flex in
the not too distant future.



On 2/27/06, JesterXL
<[EMAIL PROTECTED]>
wrote:



...both of you, Jonathan and Brendan, have good attitudes,
and contribute to this list.  Both of those facts alone would cause me to
hire you in a heartbeat.





 





However, if you are looking for the sense of accomplishment,
ability to represent bigger companies, and the resume addition, then I
understand.







 





- Original Message - 



From: Jonathan Miranda 





To: flexcoders@yahoogroups.com 





Sent: Monday, February
27, 2006 11:40 AM





Subject: RE: [flexcoders]
Re: RIA Certified Developer/Architect







 







Would also like to know this…..if you got a company
willing to pay for training, take them up on it J 

_____

Jonathan
Miranda

Flexible
Master of the Web

"In

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Jonathan Miranda












That’s more than likely true here….a
degree goes a lot longer. But hey, if you have the degree and the time, why
not? J

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nick Weekes
Sent: Tuesday, February 28, 2006
4:17 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: RIA
Certified Developer/Architect



 

just my 10
cents, but over here in the UK
graduates of tech (comp science/systems dev etc) based degrees usually get some
sort of certification (mostly MSCE/MSCD).  So we have college leavers with
this kind of certificate, which kind of puts certification at the junior/entry
level, rather than the 'niche carving' level.

 



I think the fact that someone can put on their resume that they have solid experience of a (relatively new) tech such
as Flex is way more important.





 





But maybe its
totally different in other countries.





 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tolulope Olonade
Sent: 28 February 2006 11:07
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: RIA
Certified Developer/Architect

You are probably right.

I jus suggest they don’t stay too
late on coming out with it. It could really give them an edge and probably some
market dominance.

Remember there are other competing
 technologies/companies e.g Nexaweb, ajax
etc.

Anyone of them that comes out early is
most likely to carve a niche for himself.

Adobe do really have an edge for now J

Regards

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Modien
Sent: 28 February 2006 09:25
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: RIA
Certified Developer/Architect



 

The point of most
certifications is too insure to a resonable degree that the person is capable
of doing what they say they can do.

I would hesitate to take a car I owned to anyone "claiming" to be a
mechanic but lacked formal certification.

I think the bottom line is...  there are certification programs for other
Adobe/Macromedia products...  and I'm sure there will be one for Flex in
the not too distant future.



On 2/27/06, JesterXL
<[EMAIL PROTECTED]>
wrote:



...both of you, Jonathan and Brendan, have good attitudes,
and contribute to this list.  Both of those facts alone would cause me to
hire you in a heartbeat.





 





However, if you are looking for the sense of accomplishment,
ability to represent bigger companies, and the resume addition, then I
understand.







 





----- Original Message - 



From: Jonathan Miranda 





To: flexcoders@yahoogroups.com 





Sent: Monday, February
27, 2006 11:40 AM





Subject: RE: [flexcoders]
Re: RIA Certified Developer/Architect







 







Would also like to know this…..if you got a company
willing to pay for training, take them up on it J 

_____

Jonathan
Miranda

Flexible
Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED]


_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any error

RE: [flexcoders] Flash Detection Option

2006-02-27 Thread Jonathan Miranda












Then why have the option in the builder if
it’s not meant to work J

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Abdul Qabiz
Sent: Monday, February 27, 2006
3:59 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flash
Detection Option



 

I believe, you are
talking about express-install. Not sure, if that works for Macromedia Flash
Player 8.5 considering it is still under-development and would not be good idea
to update user-machines with a binary which is not of release quality. 

May be after some-months, it would start working..

-abdul



On 2/27/06, Jonathan
Miranda <[EMAIL PROTECTED]
> wrote:



Anyone
else get this to actually work from the FB options? I think the auto-installer
option in FlexBuilder2 doesn't work with flash player 8.5 alpha 3….since all my
users are seeing solid blue screens (meaning the script isn't triggering).

_____

Jonathan Miranda

Flexible Master of
the Web

"In the game of chess, it's important to never
let your opponent see your pieces."

HealthGrades
: Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The
message contains confidential and/or legally privileged information and is
intended for use only by the indicated addressee.  If you are not the
named addressee you should not disseminate, distribute, or copy this e-mail.
Please notify the sender immediately by e-mail if you have received this e-mail
by mistake and delete this e-mail from your system. E-mail transmissions cannot
be guaranteed to be secure or error-free as information could be intercepted,
corrupted, lost, destroyed,arrive late or incomplete, or contain viruses. The
sender therefore does not accept liability for any errors or omissions in the
contents of this message which arise as a result of e-mail transmission. If
verification is required please request a hard-copy version.

 





--
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 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: Array based class throws error for splice method call

2006-02-27 Thread Jonathan Miranda












In your code, you’re not calling the
Super constructor….

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Vadim Melnik
Sent: Monday, February 27, 2006
2:23 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Array
based class throws error for splice method call



 

>> There's a lot of
stuff missing it seems in your class <<
Right, because I've cut source code as much as
possible to simplify 
test case.

>> AS3 is strong-type coding, so you need to
code in everything 
you're assuming it understands<<

My code compiles without errors/warnings in strict
mode.


>>my first guess is to have the set/get
commands and call the 
splice/push methods on the actual array (maybe
using "this"<<

I've played with things like this/super and other
variants, but did 
not find right solution. For me it sounds like a
bug in Array.splice 
implementation, (unless Array class is
final/sealed by design and is 
not allowed to be inherited).


--
Thanks,
Vadim.


--- In flexcoders@yahoogroups.com,
"Jonathan Miranda" <[EMAIL PROTECTED]> 
wrote:
>
> There's a lot of stuff missing it seems in
your class. AS3 is
> strong-type coding, so you need to code in
everything you're 
assuming it
> understands. I don't have the time to check
it out, but my first 
guess
> is to have the set/get commands and call the
splice/push methods 
on the
> actual array (maybe using "this" -
think in AS2 to AS3 the
> implementation of "this" changed).
> 
> _
> 
> Jonathan Miranda
> 
> Flexible Master of the Web
> 
> "In the game of chess, it's important to
never let your opponent 
see
> your pieces."
> 
> HealthGrades <http://www.healthgrades.com/> :
Guiding America to 
Better
> Healthcare(tm)
> 
> NASDAQ: HGRD
> 
> w  (720) 963-3832
> 
> c  (707) 761-0868
> 
> [EMAIL PROTECTED] 
> 
> _
> 
> The message contains confidential and/or
legally privileged 
information
> and is intended for use only by the indicated
addressee.  If you 
are not
> the named addressee you should not
disseminate, distribute, or 
copy this
> e-mail. Please notify the sender immediately
by e-mail if you have
> received this e-mail by mistake and delete
this e-mail from your 
system.
> E-mail transmissions cannot be guaranteed to
be secure or error-
free as
> information could be intercepted, corrupted,
lost, 
destroyed,arrive late
> or incomplete, or contain viruses. The sender
therefore does not 
accept
> liability for any errors or omissions in the
contents of this 
message
> which arise as a result of e-mail
transmission. If verification is
> required please request a hard-copy version.
> 
> 
> 
> From: flexcoders@yahoogroups.com

[mailto:flexcoders@yahoogroups.com]
On
> Behalf Of Vadim Melnik
> Sent: Monday, February 27, 2006 1:50 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Array based class
throws error for splice 
method
> call
> 
>  
> 
> Hi All,
> 
> Got problem with my custom class inheriting
default AS3 Array one. 
> Not sure it's allowed in AS3, but it worked
well with previous 
> ActionScript 2.
> 
> I've created small test case, it throws
runtime error somewhere 
> inside Array.splice call. Also in real
application I am getting IE 
> GPFs right after exception dialog closed.
> 
> P.S.: also reported this bug using web form -

> http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform
> 
> 
> [Error]
> 
> ReferenceErr

RE: [flexcoders] Re: DG display with xml and webservice

2006-02-27 Thread Jonathan Miranda












Ahh, I think I know why. In your result
you called it srv.AgentDisplay….and shouldn’t it be
result.AgentDisplay….

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeremy Rottman
Sent: Monday, February 27, 2006
2:09 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: DG
display with xml and webservice



 

I know the click event is
working properly. And I know the data being
returned from my webservice is returning
correclty. I have have tested
teh cfc and verfied that it is returned the xml.

I am just not sure if I am connecting the
webservice to the dg properly. 

--- In flexcoders@yahoogroups.com,
"Doug Lowder" <[EMAIL PROTECTED]> wrote:
>
> Have you verified that the click event is
actually being processed 
> by your datagrid?  If not, try using a
trace or Alert.show for the 
> click handler, or try changing the click
event to something like 
> creationComplete.  If you find the
problem is not the click event, 
> then it's likely there is an issue with the
data returned by your 
> web service.
> 
> Hope that helps,
> Doug
> 
> --- In flexcoders@yahoogroups.com,
"Jeremy Rottman"  
> wrote:
> >
> > I am using a webservice to call a
function from my cfc that returns
> > data as xml. When the data results are
received, I convert the 
> results
> > into an array named agents. I am trying
to populate my dg with the
> > array. When I click on the dg I am
calling the function
> > agentDisplayQry. Which calls the
function in my cfc. However, I 
> cant
> > get this to work. Can someone help me
with this.
> > 
> > Here is what I am trying.
> > 
> > 
> > 
> >  
import mx.collections.ArrayCollection;
> >  
[Bindable]
> >  
public var agents:ArrayCollection;
> > 
> > 
> > 
> > 
> > useProxy="false" 
> > wsdl="http://flex.homesmartagent.com/cfc/adminHS2F.cfc?wsdl"

> > result="agents = new
> >
ArrayCollection(srv.agentDisplayQry.result.list.employee)"
> > showBusyCursor="true" />
> > 
> > Then I am using this dg to display the
information.
> > 
> >
click="agentDisplayQry(fileNum.text)"  
    
>  
  dataProvider="{agents}"
> > height="192"
id="datagrid1"> 
   
  
> >  
  
> width="275" 
> > columnName="agentName"/>
> >  
  
> width="150" 
> > columnName="agentSide"/>
> >  
  > Side"
> > width="95" 
columnName="col3"/> 
   
  
>  
   

> > headerText="Type"
width="175" columnName="agentType"/>
> >  

> > 
> >
>













--
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] Array based class throws error for splice method call

2006-02-27 Thread Jonathan Miranda












There’s a lot of stuff missing it
seems in your class. AS3 is strong-type coding, so you need to code in
everything you’re assuming it understands. I don’t have the time to
check it out, but my first guess is to have the set/get commands and call the
splice/push methods on the actual array (maybe using “this” –
think in AS2 to AS3 the implementation of “this” changed).

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Vadim Melnik
Sent: Monday, February 27, 2006
1:50 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Array based
class throws error for splice method call



 

Hi All,

Got problem with my custom class inheriting
default AS3 Array one. 
Not sure it's allowed in AS3, but it worked well
with previous 
ActionScript 2.

I've created small test case, it throws runtime
error somewhere 
inside Array.splice call. Also in real application
I am getting IE 
GPFs right after exception dialog closed.

P.S.: also reported this bug using web form - 
http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform


[Error]

ReferenceError: Error #1069: Property length not
found on MyArray 
and there is no default value
  at Array/splice()
  at MyArray/bug()
  at
test002::doTest()

[test002.mxml]


http://www.macromedia.com/2005/mxml"
>





[MyArray.as]

package
{
  public class
MyArray extends Array
  {
 
  public function MyArray()
 
  {
 
    push("some
data");
 
  }

 
  public function bug():void
 
  {
 
    splice(0, 1);
 
  }
  }
}



--
Thanks,
Vadim.











--
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] Newbie: load external xml problem

2006-02-27 Thread Jonathan Miranda












Unless I’m missing something, you could
use a  and use onComplete
events…or if it’s in a url, use a HttpService to call it in. Here’s
what I’d do:



 

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of revanisle
Sent: Monday, February 27, 2006
12:44 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Newbie: load
external xml problem



 

Hi all,
  I'm new to Flex and AS3 (well, I guess
everyone's "new" to AS3) and
am having difficulty with what should be basic and
simple - loading an
external xml file.  I can't even get the
examples in Help to work
(Flex 2beta):

1 var externalXML:XML;
2 var loader:URLLoader = new URLLoader();
3 var request:URLRequest = new
URLRequest("xmlFile.xml");
4 loader.load(request);
5 loader.addEventListener(EventType.COMPLETE,
onComplete);
6 
7 function onComplete(event:Event):Void{
8 var loader:URLLoader =
URLLoader(event.target);
9 externalXML = new
XML(loader.data);
10   
trace(externalXML.toXMLString());
11 }

This gives me an error at line 7 - Void is not a
compile time constant.
If I change that to lowercase void (or any other
valid constant) or
remove the type declaration :Void altogether I get
two errors at lines
4 and 5 telling me that "request" and
"loader" are undefined
properties, even though they're defined
immediately above.  What
gives?  and thanks in advance for your help!

Rick Englert












--
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] Focus within the Browser

2006-02-27 Thread Jonathan Miranda












On a similar note, anyone know how to send
certain key-strokes back to the browser when it has focus? I use control-t
religiously for tabbing in Firefox and it’s really annoying when the
flash video sucks those in – rather it somehow gets passed back to the
browser

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Claudia Barnal
Sent: Monday, February 27, 2006
10:09 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Focus within
the Browser



 

How can I know if the
Application has the focus within the Browser.

I need to do something like this:

if ( playerHasFocus == true )
{
  myMC._visible =
true;
}
else
{
  myMC._visible = false;
}

Thanks,
Claudia








--
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 1.5 or 2.0

2006-02-27 Thread Jonathan Miranda










Flex Builder 2 has so many neat little
tweaks that make coding life a lot smoother. Just from personal preference…

Alt+ (left-arrow/right-arrow)

Control-click on code

Shift-f2

Control-O (huge timesaver)

Control-shift-T


Besides the builder, Flex2 is a lot “cleaner” in figuring stuff out
– and a lot more functionality has been standardized & added. It is
still in beta, so there are some hiccups but I’ve found it’s worth
the minor issues to upgrade most of my apps.



_____

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of oiland_barry
Sent: Monday, February 27, 2006
8:06 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex builder
1.5 or 2.0



 

Hello everyone,

im new to the group and only just started using
the whole Flex
environment and language in the past fewe
weeks.  I can see the
advantages of using Flex for the GUI's that my
system will use and
using Coldfusion cfc's to manipulate my database
and data as a whole.

I am using Coldfusion to develop my main system
and i intend to use
Flex to create some powerful GUI's.  However
i have been having some
major problems getting to two to work together (cf/flex
compiler
merge, Coldfusion cfc's as remote objects).

I have been using Flex Builder 1.5 for a few weeks
now and im starting
to build what will be a pretty sophisticated
application.  I have been
having a few problems with getting Coldfusion
cfc/Remote Objects
working, thankfully i have got a quick fix so i
can continue
developing my application for the time being, but
i need to get this
problem sorted before i can deploy the system for
production use.

My main question is what are the advantages of
using Flex Builder 2.0
over 1.5, and indeed the Flex 2.0 language over
1.5.  I was about to
install Flex Builder 2.0 on my laptop to develop
the system, but i
just got the remote objects/cfc's working so i
thought that if it aint
broke dont fix it!

I am running the cf and flex as integrated JRun 4
servers on one
machine on my network, and i am developing and
viewing the cf and flex
applications on my laptop.

Any comments would be helpful.

Thanks,

Barry











--
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: RIA Certified Developer/Architect

2006-02-27 Thread Jonathan Miranda












Ironically, most flex developers I know
outside this list are like “flexcoders? What’s that?” –
I’ve found using this list gives me the ability to say “that’s
possible” a lot more….of course, most of the solutions are funky
since we’re still in Beta J Work with what you got though.

And hey, if someone out there is hiring then feel free to ask J (by the way, neat
Airplane game Jester)

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL
Sent: Monday, February 27, 2006
9:51 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: RIA
Certified Developer/Architect



 



...both of you, Jonathan and Brendan, have good attitudes,
and contribute to this list.  Both of those facts alone would cause me to
hire you in a heartbeat.





 





However, if you are looking for the sense of accomplishment,
ability to represent bigger companies, and the resume addition, then I
understand.





 





- Original Message - 



From: Jonathan
Miranda 





To: flexcoders@yahoogroups.com






Sent: Monday, February
27, 2006 11:40 AM





Subject: RE: [flexcoders]
Re: RIA Certified Developer/Architect







 





Would also like to know this…..if
you got a company willing to pay for training, take them up on it J

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Brendan Meutzner
Sent: Monday, February 27, 2006
7:47 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: RIA
Certified Developer/Architect



 

I second this

Flex has been publicly released for almost 2 years
now, but we still
don't have a certification to strive for? 

Also, I've noticed individuals with the title of
"Certified Flex
Instructor/Trainer" or something to that
effect... What is it, and how
do I get it?

Thanks,

Brendan


--- In flexcoders@yahoogroups.com,
"Tolulope Olonade" <[EMAIL PROTECTED]>
wrote:
>
> Still wondering why Adobe hasnt come out with
a certification track
> named similar as above :-)
> 
>  
> 
> Regards
>















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

   
  







  
  
  Y

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-27 Thread Jonathan Miranda












Would also like to know this…..if you
got a company willing to pay for training, take them up on it J

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Brendan Meutzner
Sent: Monday, February 27, 2006
7:47 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: RIA
Certified Developer/Architect



 

I second this

Flex has been publicly released for almost 2 years
now, but we still
don't have a certification to strive for? 

Also, I've noticed individuals with the title of
"Certified Flex
Instructor/Trainer" or something to that
effect... What is it, and how
do I get it?

Thanks,

Brendan


--- In flexcoders@yahoogroups.com,
"Tolulope Olonade" <[EMAIL PROTECTED]>
wrote:
>
> Still wondering why Adobe hasnt come out with
a certification track
> named similar as above :-)
> 
>  
> 
> Regards
>













--
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] Flash Detection Option

2006-02-27 Thread Jonathan Miranda










Anyone else get this to actually work from the FB options? I
think the auto-installer option in FlexBuilder2 doesn’t work with flash
player 8.5 alpha 3….since all my users are seeing solid blue screens
(meaning the script isn’t triggering).

_

Jonathan Miranda

Flexible Master of
the Web

"In the game of
chess, it's important to never let your opponent see your pieces."

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] DataGrid automatic height

2006-02-27 Thread Jonathan Miranda












rowCount is read-only if ya use
variableRowHeight=true. So no word on finding the height of a specific row with
actionscript?

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Sunday, February 26, 2006
6:28 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 

Have you guys set rowCount to be the same
as dataProvider.length?  That should get the DG to start attempting to
draw all rows.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Friday, February 24, 2006
10:33 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 



If you can find a way to find out
rowHeight by actionscript with variableRowHeight=true, more power to you
– I’m still stumped on this.

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dustin Mercer
Sent: Friday, February 24, 2006
11:40 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 

What did you use for number?  What
about height=”{(dg.dataProvider.length * dg.rowHeight) + 2}”…
you might need the + 2 there to account for the 1px border on top and
bottom.  For the variableRowHeight, you will have to do a lot more
work.  It will be very tough since you cannot just loop through the rows
to find their heights, because the hidden rows aren’t drawn yet ;) 
So that will take so creativity.  Maybe someone else has an idea on that,
in the mean time, I will play with the idea.  Hope this works for normal
row heights though.

 

Dustin Mercer

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Friday, February 24, 2006
7:23 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 



I’d love to figure this out also,
especially if you use variableRowHeight=true

_____

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be

RE: [flexcoders] Another charting bug

2006-02-24 Thread Jonathan Miranda












Aww…and I thought it was 42 J

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Matt Chotin
Sent: Friday, February 24, 2006
3:49 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Another
charting bug



 

147 J

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Friday, February 24, 2006
2:27 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Another
charting bug



 

If you use a mx:Legend in the control-bar of a panel that
holds a graph and you don’t specify width=”100%”, the legend
will not wrap in the control-bar and go off the screen (with no scrolling so
you can’t see the edge of the legend). So either the Legend isn’t
correctly reading it’s default dimensions of width or the control-bar
isn’t containing the legend correctly, or something like that –
setting it to width=”100%” makes it correctly wrap.


So how many bugs until I get into the credits again Matt? J

_

Jonathan Miranda

Flexible Master of
the Web

"In the game of
chess, it's important to never let your opponent see your pieces."

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 










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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Another charting bug

2006-02-24 Thread Jonathan Miranda










If you use a mx:Legend in the control-bar of a panel that
holds a graph and you don’t specify width=”100%”, the legend
will not wrap in the control-bar and go off the screen (with no scrolling so you
can’t see the edge of the legend). So either the Legend isn’t
correctly reading it’s default dimensions of width or the control-bar isn’t
containing the legend correctly, or something like that – setting it to
width=”100%” makes it correctly wrap.


So how many bugs until I get into the credits again Matt? J

_

Jonathan Miranda

Flexible Master of
the Web

"In the game of
chess, it's important to never let your opponent see your pieces."

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] General quick questions

2006-02-24 Thread Jonathan Miranda










Well I should have just done some
research. For the rest of the flexcoders group, here goes:

 

1)   http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectID=298

2)   http://cfdj.sys-con.com/read/46790.htm



_____

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Miranda
Sent: Friday, February 24, 2006
12:56 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] General
quick questions



 

Before I go off and research, wondering if anyone has
tackled these before so thought I’d ask here.

-Anyone exported a datagrid’s data out to an excel file or printer?

 

-Anyone tried connecting with MDX/Cube technology directly?

_____

Jonathan Miranda

Flexible Master of
the Web

"In the game of chess,
it's important to never let your opponent see your pieces."

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] General quick questions

2006-02-24 Thread Jonathan Miranda










Before I go off and research, wondering if anyone has
tackled these before so thought I’d ask here.

-Anyone exported a datagrid’s data out to an excel file or printer?

 

-Anyone tried connecting with MDX/Cube technology directly?

_

Jonathan Miranda

Flexible Master of
the Web

"In the game of
chess, it's important to never let your opponent see your pieces."

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









--
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] DataGrid automatic height

2006-02-24 Thread Jonathan Miranda












If you can find a way to find out
rowHeight by actionscript with variableRowHeight=true, more power to you –
I’m still stumped on this.

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dustin Mercer
Sent: Friday, February 24, 2006
11:40 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 

What did you use for number?  What
about height=”{(dg.dataProvider.length * dg.rowHeight) + 2}”…
you might need the + 2 there to account for the 1px border on top and
bottom.  For the variableRowHeight, you will have to do a lot more
work.  It will be very tough since you cannot just loop through the rows
to find their heights, because the hidden rows aren’t drawn yet ;) 
So that will take so creativity.  Maybe someone else has an idea on that,
in the mean time, I will play with the idea.  Hope this works for normal
row heights though.

 

Dustin Mercer

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Friday, February 24, 2006
7:23 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] DataGrid
automatic height



 



I’d love to figure this out also,
especially if you use variableRowHeight=true

_

Jonathan Miranda

Flexible Master of the Web

"In the game
of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alberto Albericio Salvador
Sent: Friday, February 24, 2006
6:26 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] DataGrid
automatic height



 

Hi all,

Is there any property on the DataGrid component to
automatically resize 
the datagrid to show the number of items of its
dataProvider?

I use height="dataProviders.length *
Number" but it's not exact enough

Thanks

-- 
Alberto Albericio Salvador
Aura S.A. Seguros
Departamento Informática











--
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 2.0 and Flash 8

2006-02-24 Thread Jonathan Miranda












If you set the “Detect Flash Version
8.5” and check “Express Install” in the Flex 2 builder, it
doesn’t work at all (I’ve had to have clients manually install the
player…which also requires admin rights, which is annoying) – they just
see a solid blue screen. Is this working as intended or a known bug?

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin
Sent: Friday, February 24, 2006
12:29 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex 2.0
and Flash 8



 

Nope, sorry.  Flex 2 will only work
with 8.5.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stephane B.
Sent: Thursday, February 23, 2006
6:02 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2.0 and
Flash 8



 

Is there any way to get an application developed using Flex
Builder 2.0 to be viewable with version 8 (not 8.5) of the player?










--
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] DataGrid automatic height

2006-02-24 Thread Jonathan Miranda












I’d love to figure this out also,
especially if you use variableRowHeight=true

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alberto Albericio Salvador
Sent: Friday, February 24, 2006
6:26 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] DataGrid
automatic height



 

Hi all,

Is there any property on the DataGrid component to
automatically resize 
the datagrid to show the number of items of its
dataProvider?

I use height="dataProviders.length *
Number" but it's not exact enough

Thanks

-- 
Alberto Albericio Salvador
Aura S.A. Seguros
Departamento Informática









--
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] Cairngorm 2 / Flex 2 / Flickr

2006-02-23 Thread Jonathan Miranda












Oh of course, I didn’t mean to come
across as dogging his application efforts – I was asking mostly if he
found benefits to using Cairngorm besides a learning experience. I probably
should have started another discussion instead of coat-tail his application, it
probably came off as negative. Hats off for getting it to work in Cairngorm, I
know it’s not easy. 

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Webster
Sent: Thursday, February 23, 2006
2:07 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Cairngorm 2 / Flex 2 / Flickr



 

Jonathan,

 

I think it's important to separate when
people are using Cairngorm in an application (such as a Flickr
application) in order to immerse oneself in or learn/understand the framework,
or when people are applying the framework to leverage benefits in much larger
application developments.

 

Are frameworks overkill for simple
use-case apps like this ?  Probably.  But is using Cairngorm for the
first time wise on a mission-critical multi-developer application, before
you're familiar with it ?  Definitely.

 

And as people contribute their sample
applicaitons that helped them better understand the concepts, surely there is
merit in others being able to use them to help in their understanding also ?

 

Best wishes,

 

Steven

 


 
  
  
   






Steven Webster
Practice Director (Rich Internet Applications)
Adobe Consulting
Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ,
 UK
p: +44 (0) 131 338 6108


m: +44 (0) 7917 428
947 
[EMAIL PROTECTED] 



   
  
  
  
 


 

 

 

 

 

 

 

 

 

 

 Probably worthy of an entire other discussion,
but what was the benefit of using Cairngorm Framework with this application?
This could be done a lot simplier outside unless I’m missing something. I
guess I’m in the mood for a framework versus overkill discussion J





_________

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Brian Riley
Sent: Thursday, February 23, 2006
12:48 PM
To: flexcoders@yahoogroups.com;
Brian Riley
Subject: [flexcoders] Cairngorm 2
/ Flex 2 / Flickr



 

I leveraged the new
Cairngorm Framework (C2) recently on a Flex enabled Flickr app. Functionally,
it's pretty similar to the hundreds of other Flickr apps, but the point of the
app was to immerse myself in the new vr of C2, rather than to get bogged down
in functionality. NOTE: loosely documented and some small errors, as this was
just a first pass with C2 and Flex 2. Lots of refactoring and some small
defects to address, but you'll get the pt. Just enter in tag(s) comma separated
without s

RE: [flexcoders] Cairngorm 2 / Flex 2 / Flickr

2006-02-23 Thread Jonathan Miranda












Probably worthy of an entire other
discussion, but what was the benefit of using Cairngorm Framework with this
application? This could be done a lot simplier outside unless I’m missing
something. I guess I’m in the mood for a framework versus overkill
discussion J

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Brian Riley
Sent: Thursday, February 23, 2006
12:48 PM
To: flexcoders@yahoogroups.com;
Brian Riley
Subject: [flexcoders] Cairngorm 2
/ Flex 2 / Flickr



 

I leveraged the new
Cairngorm Framework (C2) recently on a Flex enabled Flickr app. Functionally,
it's pretty similar to the hundreds of other Flickr apps, but the point of the
app was to immerse myself in the new vr of C2, rather than to get bogged down
in functionality. NOTE: loosely documented and some small errors, as this was
just a first pass with C2 and Flex 2. Lots of refactoring and some small
defects to address, but you'll get the pt. Just enter in tag(s) comma separated
without spaces. eg: munch,rocco -- brings up my dogs.

http://www.brianmriley.com/sandbox/flickr/FlickrV2.html

One point or issue I had with C2 was the implementation of the ServiceLocator
as an MXML component. The thing I love most about Flex is the clear separation
of business logic from presentation logic -- MXML for views and AS for business
/ application logic. Sure, you'll have to add a bit of AS to all your views in
order to make it work, but my ideal app leverages MXML only for views only. So,
I created my own ServiceLocator for the application, and moved some of the
result and fault objects to the BusinessDelegate. My BusinessDelegate is
specific to the my Flickr application, but it could be refactored to a an
AbstractBusinessDelegate or similar.

Also, since I leverage the ARP framework for Flash apps quite a bit, I like the
idea of instantiating Commands as they're needed, not when the Controller is
instantiated -- while I didn't implement this in my first pass at the app, I'm
probably going to introduce this in my next vr.

And then there's the use of additional controllers. I usually introduce
controllers into my app for the different MVC triads that require it -- while
this can be seen as overkill, I sometimes like the granular control of smaller
MVCs within my app. I took this away from large Flash apps, but I've found it's
not as necessary in Flex. That being said, I've considered creating an
additional controller here to handle the c lick event from the DataGrid,
although it could be completey unnecessary in this small app.

I'll continue to add additional functionality as I have time. Feel free to
comment.

Yes, I know my Flickr info is in the src ;-)

-riley







Yahoo!
Autos. Looking for a sweet ride? Get pricing, reviews, & more on new
and used cars. 







--
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] Adobe Videos

2006-02-23 Thread Jonathan Miranda










Speaking of which, is there any sort of
timeline for beta2? Next week, next month, next year? J



_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sho Kuwamoto
Sent: Thursday, February 23, 2006
10:53 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Adobe
Videos



 

Hi all.

 

I've talked to Glenn, and he says that
because of an unfortunate late breaking bug that was introduced right before
beta 1, two of the three demos he did on the video don't actually work on beta
1.

 

His plan is to get the bugs fixed and to
post the source in time for beta 2.

 

Don't shoot me. I'm just the messenger!

 

-Sho

 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Thursday, February 23, 2006
9:31 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Adobe
Videos



That or someone knows Glenn and can toss a
note into his cube J

_____

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w 
(720) 963-3832

c 
(707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonas Windey
Sent: Thursday, February 23, 2006
10:17 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Adobe
Videos



 

I’d like to know that too!
Let’s hope Glenn Ruehle is reading this and would be so kind to post his
example ;)

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: dinsdag 21 februari 2006
17:45
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Adobe Videos



 

http://labs..macromedia.com/flexproductline/videos/#/

Anyone find out if
they posted the Transition code somewhere?

 

 

_____

Jonathan Miranda

Flexible Master of
the Web

"In the game of
chess, it's important to never let your opponent see your pieces."

 

 









--
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] Adobe Videos

2006-02-23 Thread Jonathan Miranda












That or someone knows Glenn and can toss a
note into his cube J

_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonas Windey
Sent: Thursday, February 23, 2006
10:17 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Adobe
Videos



 

I’d like to know that too!
Let’s hope Glenn Ruehle is reading this and would be so kind to post his
example ;)

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: dinsdag 21 februari 2006
17:45
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Adobe Videos



 

http://labs..macromedia.com/flexproductline/videos/#/

Anyone find out if
they posted the Transition code somewhere?

 

 

_

Jonathan Miranda

Flexible Master of
the Web

"In the game of
chess, it's important to never let your opponent see your pieces."

 










--
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] More datagrid row height issues

2006-02-23 Thread Jonathan Miranda










Yeah, I’ve got that working now with
individual row heights changed. I guess I just wanted a way to take one
datagrid and copy the heights to another – a bindable solution for
datagrids with different row heights. It seems the only way to make an
individual row height different is by a cellrenderer – I was looking for
a way to do it in code by doing something like datagrid[theRow].rowheight = 40.




_

Jonathan Miranda

Flexible Master of the Web

"In the
game of chess, it's important to never let your opponent see your pieces."

HealthGrades: Guiding America to Better Healthcare™

NASDAQ:
HGRD

w  (720)
963-3832

c  (707)
761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or
legally privileged information and is intended for use only by the indicated
addressee.  If you are not the named addressee you should not disseminate,
distribute, or copy this e-mail. Please notify the sender immediately by e-mail
if you have received this e-mail by mistake and delete this e-mail from your
system. E-mail transmissions cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed,arrive late or
incomplete, or contain viruses. The sender therefore does not accept liability
for any errors or omissions in the contents of this message which arise as a result
of e-mail transmission. If verification is required please request a hard-copy
version.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Thursday, February 23, 2006
12:19 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] More
datagrid row height issues



 

I’m not sure what you’re
trying to accomplish here.  Generally the only way you can control an
individual row’s height would be to put a cell renderer in that you
explicitly change the height on.  I don’t see how you then bind two
grids together.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda
Sent: Wednesday, February 22, 2006
11:10 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] More
datagrid row height issues



 

Still having problems changing the height of one row
specifically in actionscript, but that aside I’m also having problems
matching datagrids together via height.

let’s say I have 2 datagrids with “variableRowHeight=true”.
Is there a way to bind 2 data grids together via their row heights?

_

Jonathan Miranda

Flexible Master of
the Web

"In the game of
chess, it's important to never let your opponent see your pieces."

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If
you are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 










--
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] More Flash Player memory issues

2006-02-22 Thread Jonathan Miranda










I have a basic chart that shows dashboard information, so I
have it calling the service every 30 seconds. Here’s the code:

private function initApp() {

    srv.send();

    timer = new Timer(3);

    timer.addEventListener("timer", callService);

    timer.start();

 }

 

public function callService(e:Event) {

    currentRefresh = new Date(); 

    currentRefresh =
dateAdd("h",currentRefresh,-1);

    srv.send();

}

If I take this out, it runs fine…if I add this, after time it gets
insanely slower – give it 3-4 hours and it’ll take 95% of your CPU
usage. Is there something wrong with timers in Flex2? All the service does is
call an xml file which the results are bound to a chart.

_________

Jonathan Miranda

Flexible Master of
the Web

"In the game of
chess, it's important to never let your opponent see your pieces."

HealthGrades:
Guiding America
to Better Healthcare™

NASDAQ: HGRD

w  (720) 963-3832

c  (707) 761-0868

[EMAIL PROTECTED] 

_

The message contains confidential and/or legally privileged
information and is intended for use only by the indicated addressee.  If you
are not the named addressee you should not disseminate, distribute, or copy
this e-mail. Please notify the sender immediately by e-mail if you have
received this e-mail by mistake and delete this e-mail from your system. E-mail
transmissions cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed,arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any errors
or omissions in the contents of this message which arise as a result of e-mail
transmission. If verification is required please request a hard-copy version.

 









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











  1   2   >