Re: [flexcoders] Render HTML in FLEX

2009-05-14 Thread thomas parquier
Hi,

There is a component which seems interesting :
http://drumbeatinsight.com/htmlcomponent, you can also look at hmlfilter (
http://code.google.com/p/flex-htmlfilter/).

thomas
---
http://www.web-attitude.fr/
msn : thomas.parqu...@web-attitude.fr
softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net
téléphone portable : +33601 822 056


2009/5/13 jadhav_pradip jadhav_pra...@yahoo.co.in



 Hi All,

 I am facing one problem, i want to display some html contents in my
 flex application. I tried that using iframe but its not working (If u
 click out side that iframe, then it will hide iframe).

 I want to do this with out using (AIR). I searched this on internet
 but i didn't get any solution for that.

 So if anybody knows how to solve this plz send help me.

 Thanx in advance ..

 Regards,
 Pradip jadhav

  



[flexcoders] flex/coldfusion ad management loke open ads

2009-05-14 Thread stinasius
hi is there an open source ad network like open ads that i can use with flex 
and coldfusion? was reading a tutorial where rich media x uses flex and php 
with open ads and i think open ads is php based.



[flexcoders] Hello!!!!

2009-05-14 Thread mhbmarcos
Hi, my name is Marcos, i am from Argentine.
You can take me any example of complex application of flex with Cairngorm?, 
because i have example simple, i dont find well example.

PD: i dont speak english.

Regards





[flexcoders] Determining file read-only attribute in AIR

2009-05-14 Thread Yves Riel
Hi guys,
 
Do any of you have a nice simple trick to determine and possibly toggle
the read-only attribute of a file in AIR?
 
Thanks!


[flexcoders] Flex crossdomain failing in Internet Explorer

2009-05-14 Thread cwicky99
I have a Flex app that runs on foo.acme.com which tries to access content on 
bar.acme.com over secure communications (i.e SSL).

Both servers use tomcat and on bar.acme.com I have a crossdomain.xml file setup 
in /tomcat_home/webapps/ROOT.

When I launch the app on foo (i.e. https://foo.acme.com) it attempts to make a 
RESTful request to https://bar.acme.com/content/person (as an example).  In 
Firefox this works just fine.  However, in Internet Exploer (I am using IE7 in 
this case) it fails giving me the message:

Error #2048: Security sandbox violation: https://foo.acme.com/myApp.swf cannot 
load data from https://bar.acme.com/content/person;

However, there is a workaround (not good enough for production use though):
1. Open IE7
2. Open a tab to https://bar.acme.com (basically launch the app over there)
3. Open a tab to https://foo.acme.com (this is the app that requests data from 
the 'bar' server).
4. Ta-Da it works

So if I first load up the app on the other server (i.e. 'bar.acme.com') things 
work just fine.  Anyone have any idea what I can do about this??  I'm not sure 
about IE6 (still need to test again)...at this point I believe if a user opens 
IE6 and visits 'bar.acme.com', then goes to 'foo.acme.com' it works (have to 
validate this though).

Just in case, here is the crossdomain.xml:

?xml version=1.0?
cross-domain-policy
site-control permitted-cross-domain-policies=all/
allow-access-from domain=* secure=true to-ports=443/
/cross-domain-policy



[flexcoders] Re: Validating items in DataGrids

2009-05-14 Thread Amy
--- In flexcoders@yahoogroups.com, foobone9 foobo...@... wrote:

 I would just create a custom item renderer who examines its own data and if 
 it finds something it doesn't like it draws a red bordering using the drawing 
 API in updateDisplayList.

It might be simpler to use this:
http://flexdiary.blogspot.com/2008/09/extended-datagrid-with-stylefunction.html



[flexcoders] Re: 2 Questions abot TextField in ActionScript

2009-05-14 Thread Amy
--- In flexcoders@yahoogroups.com, Gordon Smith gosm...@... wrote:

 1. Did you try setting TextField's 'alpha' property? In Player 10, I think it 
 works with both device and embedded fonts. In Player 9, I think it only works 
 with embedded fonts.

You have to set the blend mode on text to layer or embed the font if you want 
the text to be translucent.



[flexcoders] Re: Flex crossdomain failing in Internet Explorer

2009-05-14 Thread cwicky99
I realize it's worth mentioning these two servers are using self-signed certs 
(at the moment).  So the first time you launch the apps in Firefox you can add 
an exception basically telling Firefox that you trust these self-signed certs. 
 After that Firefox won't bother the user.

However, IE doesn't seem to handle/act that way.

--- In flexcoders@yahoogroups.com, cwicky99 codecr...@... wrote:

 I have a Flex app that runs on foo.acme.com which tries to access content on 
 bar.acme.com over secure communications (i.e SSL).
 
 Both servers use tomcat and on bar.acme.com I have a crossdomain.xml file 
 setup in /tomcat_home/webapps/ROOT.
 
 When I launch the app on foo (i.e. https://foo.acme.com) it attempts to make 
 a RESTful request to https://bar.acme.com/content/person (as an example).  In 
 Firefox this works just fine.  However, in Internet Exploer (I am using IE7 
 in this case) it fails giving me the message:
 
 Error #2048: Security sandbox violation: https://foo.acme.com/myApp.swf 
 cannot load data from https://bar.acme.com/content/person;
 
 However, there is a workaround (not good enough for production use though):
 1. Open IE7
 2. Open a tab to https://bar.acme.com (basically launch the app over there)
 3. Open a tab to https://foo.acme.com (this is the app that requests data 
 from the 'bar' server).
 4. Ta-Da it works
 
 So if I first load up the app on the other server (i.e. 'bar.acme.com') 
 things work just fine.  Anyone have any idea what I can do about this??  I'm 
 not sure about IE6 (still need to test again)...at this point I believe if a 
 user opens IE6 and visits 'bar.acme.com', then goes to 'foo.acme.com' it 
 works (have to validate this though).
 
 Just in case, here is the crossdomain.xml:
 
 ?xml version=1.0?
 cross-domain-policy
 site-control permitted-cross-domain-policies=all/
 allow-access-from domain=* secure=true to-ports=443/
 /cross-domain-policy





[flexcoders] Re: Buggy HorizontalList

2009-05-14 Thread Amy
--- In flexcoders@yahoogroups.com, nathanpdaniel ndan...@... wrote:

 Yes - I am using a custom ItemRenderer.  Also of note (as per amy's 
 suggestion) while Q2 DOES represent what is happening, all my data is bound 
 to a model (I believe).  So, I am overriding the set data method/property 
 already, and upon setting the data property, I'm updating my model which is 
 updating my view (using Cairngorm on this project so - I'm sort of forced to 
 do things proper).
 Here's my itemRenderer code:

There is a lot of debate over whether Cairngorm is good practice at all, but it 
sounds to me as if the way you're using it is _not_ proper.  ItemRenderers 
shouldn't know anything about your model.  All they should do is display and/or 
edit the data that is pushed into them, without knowing or caring how that data 
fits into the larger picture.

HTH;

Amy



Re: [flexcoders] Validation on ItemRenderers in DataGrid

2009-05-14 Thread Andriy Panas
Are you using custom itemEditor component or default itemEditor
shipped with mx:DataGrid component?

--
Best regards,
Andriy Panas

 I need to validate all the item renders within a DataGris on certain
 triggers from within dataGrid as well as out of dataGrid. Validation should
 provide feedback by marking the border red and error message on hover. I am
 wondering if any has faced similar issues.


[flexcoders] Re: Custom Alert - When I add more than one, the only one I can close is the top

2009-05-14 Thread tchredeemed
bump



[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Listening for events fired from ArrayCollections

2009-05-14 Thread lampei
The problem:
I currently have a model that has properties bound to my view (a datagrid 
populated from an arraycollection, call it myModel.acUsers).  The 
arraycollection is populated from a remote object call.  However, if I set 
listeners on that ArrayCollection, once the remote call returns the data, and I 
set it to the arraycollection, the original listener I had set on the 
arraycollection gets removed, correct?

In diving into the ListCollectionView, I saw that when the source gets set, it 
fires the listChanged event, so I can do a myModel.acUsers.source = ( 
event.results as ArrayCollection ).source and the event fires, and my original 
listeners do not get removed.  The listChanged event is different than the 
ListEvent.CHANGE event though.  So 2 questions:
1) Is this the best way to do this (I always have trouble listening for events 
on arraycollections when returning the values from remote calls so I can 
perform an action once the data is returned)
2) Is there a specific event set up for listChanged (such as 
ListEvent.LIST_CHANGED) or do I just need to continue listening for it like 
myModel.acUsers.addEventListener( listChanged, handleListChanged ) ?

Thanks



[flexcoders] Re: What's wrong with this linechart?

2009-05-14 Thread valdhor
You haven't told the CategoryAxis what its dataProvider is. In MXML the 
dataprovider is set implicitly in the chart definition. If you are adding line 
series programmatically, you need to add the CategoryAxis dataProvider 
programmatically as well.

Give the CategoryAxis an id...

mx:CategoryAxis id=ca categoryField=loadval/

then, in Actionscript, give it a dataProvider...

ca.dataProvider = testdata;


HTH




Steve


--- In flexcoders@yahoogroups.com, Trefalgar Bain trefal...@... wrote:

 I've got two charts, one is 99% mxml (the 1% is actionscript defining
 the datasource definition), the other is mostly actionscript. The mxml
 works, the actionscript does not. Does anyone have any idea what in the
 world I'm doing wrong?
 
 I'd appreciate any pointers, despite how much it could sting.
 
 Tref
 
 Working:
 
 var testdata2:Array = new Array(
  {loadval: 3.0.C1, passthru: 5},
  {loadval: 3.0.C2, passthru: 4},
  {loadval: 3.0.C4, passthru: 4.5}
 );
 linechart0.dataProvider = testdata2;
 mx:LineChart x=10 y=48 id=linechart0 width=853 height=206
 showDataTips=true
  mx:horizontalAxis
  mx:CategoryAxis categoryField=loadval/
  /mx:horizontalAxis
  mx:series
  mx:LineSeries xField=loadval yField=passthru
 displayName=Pass-Thru/
  /mx:series
 /mx:LineChart
 
 
 NOT Working:
 
 var testdata:Array = new Array(
  {loadval: 3.0.C1, counter: 5},
  {loadval: 3.0.C2, counter: 4},
  {loadval: 3.0.C4, counter: 4.5}
 );
 var ls:LineSeries = new LineSeries();
 ls.dataProvider = testdata;
 ls.yField = counter;
 ls.xField = loadval;
 ls.displayName = moo;
 ls.setStyle('itemRenderer', new ClassFactory(CircleItemRenderer));
 var currentSeries:Array = linechart1.series;
 currentSeries.push(ls);
 linechart1.series = currentSeries;
 
 mx:LineChart x=10 y=359 id=linechart1 width=853 height=205
 showDataTips=true
  mx:horizontalAxis
  mx:CategoryAxis categoryField=loadval/
  /mx:horizontalAxis
 /mx:LineChart





[flexcoders] Re: Job Offer !

2009-05-14 Thread valdhor
Amy

Has someone stolen your identity or are you really spamming the list with job 
offers that have nothing to do with Flex??


--- In flexcoders@yahoogroups.com, Tiba industry amyblankens...@... wrote:

 
 Tiba industry international is offering a wide range of job offers for people 
 living in 
 united State,Canada,United Kingdom,South America,Australia and Europe,
 if you are experienced and qualified in the category stated below,
 Please tender your resume at
 care...@... or visit our website 
 http://www.tibaindustry.com/jobs.html for further details.
 
 
 * ADMIN ASSISTANT
 * ACCOUNTANT
 * HEALTHCARE WORKERS
 * FACTORY WORKERS
 * MANAGERS
 * MARKETING
 * HUMAN RESOURCES
 * MERCHANDISING
 * STORE KEEPERS
 * DRIVERS
 * SUPERVISORS
 * MECHANICAL ENGINEER
 * SECRETARY
 
 
 BENEFITS
 
 
 * Salary: Annual gross starting salary of $63,500, paid in biweekly 
 installments by your choice of check or direct deposit
 * Performance Bonuses: Up to three percent of your annual gross salary, paid 
 quarterly by your choice of check or direct deposit
 * Stock Options: 500 Acme stock options in your first year, fully vested in 
 four years at the rate of 125 shares per year
 * Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
 including the following
 o 401 retirement account
 o Annual stock options
 o Child daycare assistance
 o Education assistance
 o Health, dental, life and disability insurance
 o Profit sharing
 o Sick leave
 o Vacation and personal days
 
 Tiba industry international
 
 http://www.tibaindustry.com/jobs.html





[flexcoders] MenuBar text roll over

2009-05-14 Thread KK
Hi,

I am trying to figure out the easiest way to change the text color on 
roll over for the menu headings in the mx.controls.MenuBar. Defining 
styles doesn't work. I also looked at the MenuBarItem but was unable to 
salvage anything there. So far, I think I need to assign a custom item 
renderer, which would change the color based on the state. However, I 
have not done that in the past so any help or advice would be much 
appreciated. BTW, I am using custom skins to render a custom shape when 
the mouse hovers the link.

Thanks.

Dmitri


[flexcoders] Drag and Drop snapping to objects together

2009-05-14 Thread gneely74
Hi Guys and Gals,

I am in the planning stage of writing a drag and drop application that allows 
the user to drag objects and drop them onto other objects, resulting in the two 
objects being snapped together.

The application is that of a shelf with multiple slots, and individual cards 
that are dragged onto a particular slot, and when the drag is released, 
snapping that card to the slot.

Afterwards, I would like the whole group of objects to behave as one draggable 
object.

I am new to Flex, but I just need a little point in the right direction as to 
what classes, and methods I should look at to get me going.  

Thank you.





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Job Offer !

2009-05-14 Thread Tiba industry

Tiba industry international is offering a wide range of job offers for people 
living in 
united State,Canada,United Kingdom,South America,Australia and Europe,
if you are experienced and qualified in the category stated below,
Please tender your resume at
care...@tibaindustry.com or visit our website 
http://www.tibaindustry.com/jobs.html for further details.


* ADMIN ASSISTANT
* ACCOUNTANT
* HEALTHCARE WORKERS
* FACTORY WORKERS
* MANAGERS
* MARKETING
* HUMAN RESOURCES
* MERCHANDISING
* STORE KEEPERS
* DRIVERS
* SUPERVISORS
* MECHANICAL ENGINEER
* SECRETARY


BENEFITS


* Salary: Annual gross starting salary of $63,500, paid in biweekly 
installments by your choice of check or direct deposit
* Performance Bonuses: Up to three percent of your annual gross salary, paid 
quarterly by your choice of check or direct deposit
* Stock Options: 500 Acme stock options in your first year, fully vested in 
four years at the rate of 125 shares per year
* Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
including the following
o 401 retirement account
o Annual stock options
o Child daycare assistance
o Education assistance
o Health, dental, life and disability insurance
o Profit sharing
o Sick leave
o Vacation and personal days

Tiba industry international

http://www.tibaindustry.com/jobs.html 





[flexcoders] Re: 2 Questions abot TextField in ActionScript

2009-05-14 Thread ACasualObserver
Thanks.

I want halo as it appears on the Figure A on 
http://articles.techrepublic.com.com/5100-10878_11-6118091.html



[flexcoders] Re: Job Offer !

2009-05-14 Thread valdhor
OK, this aint good. They've now stolen my address.

How do we stop this?



[flexcoders] Flex - Create Application From Database

2009-05-14 Thread Angelo Anolin

Hi All,

I have FB3 on my machine, coupled with VS 2008 Express. 

When I click on Data | Create Application From Database, I get the Popup WIndow 
- Create Application From Database.

I click on the New button beside the Connection and I am directed to the Create 
Connection Profile.  I then enter the Name for the New Connection and click on 
Next button..

On the next screen, I have the following fields:

Server Name: localhost
Database Name
User Name
Password

I cannot figure out what values need to be entered into these fields.  Kindly 
help me sort this out so that I could leverage the database app capability of 
Flex.

Thanks.

P.S. 
When I run my web service application, I am able to connect to it.  Inside my 
web service, I have already defined the Northwind database in the App_Data 
folder.


  


[flexcoders] Re: Does ADG work with Gumbo?

2009-05-14 Thread markgoldin_2000
That's my latest result. Any idea?

ReferenceError: Error #1069: Property 
http://www.adobe.com/2006/flex/mx/internal::STYLE_UNINITIALIZED not found on 
class mx.core.UIComponent and there is no default value.
at 
mx.controls.advancedDataGridClasses::AdvancedDataGridItemRenderer()[C:\work\flex\dmv_automation\projects\datavisualisation\src\mx\controls\advancedDataGridClasses\AdvancedDataGridItemRenderer.as:91]
at _test_mx_managers_SystemManager/create()
at 
mx.core::ContextualClassFactory/newInstance()[E:\dev\beta1\frameworks\projects\framework\src\mx\core\ContextualClassFactory.as:113]
at 
mx.controls.advancedDataGridClasses::AdvancedDataGridBase/http://www.adobe.com/2006/flex/mx/internal::columnItemRenderer()[C:\work\flex\dmv_automation\projects\datavisualisation\src\mx\controls\advancedDataGridClasses\AdvancedDataGridBase.as:1437]
at 
mx.controls::AdvancedDataGridBaseEx/http://www.adobe.com/2006/flex/mx/internal::getMeasuringRenderer()[C:\work\flex\dmv_automation\projects\datavisualisation\src\mx\controls\AdvancedDataGridBaseEx.as:2024]
at 
mx.controls::AdvancedDataGrid/http://www.adobe.com/2006/flex/mx/internal::getMeasuringRenderer()[C:\work\flex\dmv_automation\projects\datavisualisation\src\mx\controls\AdvancedDataGrid.as:8545]
at 
mx.controls::AdvancedDataGridBaseEx/measureItems()[C:\work\flex\dmv_automation\projects\datavisualisation\src\mx\controls\AdvancedDataGridBaseEx.as:7057]
at 
mx.controls::AdvancedDataGridBaseEx/commitProperties()[C:\work\flex\dmv_automation\projects\datavisualisation\src\mx\controls\AdvancedDataGridBaseEx.as:1993]
at 
mx.controls::AdvancedDataGrid/commitProperties()[C:\work\flex\dmv_automation\projects\datavisualisation\src\mx\controls\AdvancedDataGrid.as:2276]
at 
mx.core::UIComponent/validateProperties()[E:\dev\beta1\frameworks\projects\framework\src\mx\core\UIComponent.as:7019]
at 
mx.managers::LayoutManager/validateProperties()[E:\dev\beta1\frameworks\projects\framework\src\mx\managers\LayoutManager.as:572]
at 
mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\beta1\frameworks\projects\framework\src\mx\managers\LayoutManager.as:700]
at 
mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\beta1\frameworks\projects\framework\src\mx\managers\LayoutManager.as:1067]


--- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... 
wrote:

 Ok then :)
 So my question is:
 How to get ADG working using SDK 4?
 
 --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiverton@ wrote:
 
  On Wednesday 13 May 2009, markgoldin_2000 wrote:
   I've got more results but I am not sure if it's fine to ask Gumbo 
   questions
   here.
  
  It's fine as far as I know, same as AIR :-)
  
  -- 
  Helping to professionally envisioneer open-source corporate communities as 
  part of the IT team of the year, '09 and '08
  
  Tom Chiverton
  Developer
  Tel: +44 0161 618 5032
  Fax: +44 0161 618 5099 
  Tom.Chiverton@
  3 Hardman Square, Manchester, M3 3EB
  www.Halliwells.com
  
  
  
  This email is sent for and on behalf of Halliwells LLP.
  
  Halliwells LLP is a limited liability partnership registered in England and 
  Wales under registered number OC307980 whose registered office address is 
  at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. A 
  list of members is available for inspection at the registered office 
  together with a list of those non members who are referred to as partners. 
  We use the word ?partner? to refer to a member of the LLP, or an employee 
  or consultant with equivalent standing and qualifications. Regulated by the 
  Solicitors Regulation Authority.
  
  CONFIDENTIALITY
  
  This email is intended only for the use of the addressee named above and 
  may be confidential or legally privileged. If you are not the addressee you 
  must not read it and must not use any information contained in nor copy it 
  nor inform any person other than Halliwells LLP or the addressee of its 
  existence or contents. If you have received this email in error please 
  delete it and notify Halliwells LLP IT Department on 0870 365 2500.
  
  For more information about Halliwells LLP visit www.Halliwells.com.
 





[flexcoders] Re: Job Offer !

2009-05-14 Thread Amy
--- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote:

 Amy
 
 Has someone stolen your identity or are you really spamming the list with job 
 offers that have nothing to do with Flex??
 

I confess...someone has stolen my identity.



[flexcoders] Re: Flex - Create Application From Database

2009-05-14 Thread valdhor
So, when I do this the window says Simple MySQL Connection-Create a 
connection to a MySQL Database. At this point you plug in details for your 
database connection...

Host URL: The IP address or hostname of your MySQL Database (If it's on your 
local machine use localhost or 127.0.0.1 or your local machines IP address).

Database Name: The database you want to connect to (You will select a table 
later).

User Name: The User Name you use to connect to the database above.

Password: The Password you use to connect to the database above.

You should then click the Test Connection button to see if Flex can connect 
to the database with the parameters you have entered.



HTH



Steve


--- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote:

 
 Hi All,
 
 I have FB3 on my machine, coupled with VS 2008 Express. 
 
 When I click on Data | Create Application From Database, I get the Popup 
 WIndow - Create Application From Database.
 
 I click on the New button beside the Connection and I am directed to the 
 Create Connection Profile.  I then enter the Name for the New Connection and 
 click on Next button..
 
 On the next screen, I have the following fields:
 
 Server Name: localhost
 Database Name
 User Name
 Password
 
 I cannot figure out what values need to be entered into these fields.  Kindly 
 help me sort this out so that I could leverage the database app capability of 
 Flex.
 
 Thanks.
 
 P.S. 
 When I run my web service application, I am able to connect to it.  Inside my 
 web service, I have already defined the Northwind database in the App_Data 
 folder.





[flexcoders] Re: Buggy HorizontalList

2009-05-14 Thread nathanpdaniel
Maybe I misspoke so, to clarify, my ItemRenderer knows nothing of my actual 
model.  I do use some static values from my model (checking against specific 
values - if I have one of these values, change the state of this particular 
item).
So after reading in my last post all my data is bound to a model, I see the 
confusion.  I simply have a VO being created when the data property is 
set/updated.  Cairngorm has a model which is used for the entire application. 
 Then it uses VOs to represent individual things (I'm not sure what to call 
them.. :D).  However, going back in the history of Flex, a model (in standard 
Flex) and a VO (in Cairngorm) are the same thing.  So, when I was referring to 
a model in my ItemRenderer, it would have been better to use VO.  

Thanks for the help, hopefully I can get it figured out...
-Nathan


--- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote:

 --- In flexcoders@yahoogroups.com, nathanpdaniel ndaniel@ wrote:
 
  Yes - I am using a custom ItemRenderer.  Also of note (as per amy's 
  suggestion) while Q2 DOES represent what is happening, all my data is bound 
  to a model (I believe).  So, I am overriding the set data method/property 
  already, and upon setting the data property, I'm updating my model which is 
  updating my view (using Cairngorm on this project so - I'm sort of forced 
  to do things proper).
  Here's my itemRenderer code:
 
 There is a lot of debate over whether Cairngorm is good practice at all, but 
 it sounds to me as if the way you're using it is _not_ proper.  ItemRenderers 
 shouldn't know anything about your model.  All they should do is display 
 and/or edit the data that is pushed into them, without knowing or caring how 
 that data fits into the larger picture.
 
 HTH;
 
 Amy





[flexcoders] backgroundGradientColors

2009-05-14 Thread thomas parquier
Hi,

I dont see the implementation of backgroundGradientColors drawing in
Application.as. There doesnt seem to be any other component defining and
implementing backgroundGradientColors.
Does anyone know where to look at ?
A simple graphics.drawRect() with a gradientFill should work, but where is
such a script for Application ?

thomas
---
http://www.web-attitude.fr/
msn : thomas.parqu...@web-attitude.fr
softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net
téléphone portable : +33601 822 056


RE: [flexcoders] MenuBar text roll over

2009-05-14 Thread Alex Harui
You should be able to supply a custom skin

Alex Harui
Flex SDK Developer
Adobe Systems Inc.http://www.adobe.com/
Blog: http://blogs.adobe.com/aharui

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of KK
Sent: Thursday, May 14, 2009 7:07 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] MenuBar text roll over





Hi,

I am trying to figure out the easiest way to change the text color on
roll over for the menu headings in the mx.controls.MenuBar. Defining
styles doesn't work. I also looked at the MenuBarItem but was unable to
salvage anything there. So far, I think I need to assign a custom item
renderer, which would change the color based on the state. However, I
have not done that in the past so any help or advice would be much
appreciated. BTW, I am using custom skins to render a custom shape when
the mouse hovers the link.

Thanks.

Dmitri



Re: [flexcoders] Re: Flex - Create Application From Database

2009-05-14 Thread Angelo Anolin
Hi Steve,
I am trying to connect to the NorthWind database which I placed in the App_Data 
folder of my web service.
When I run the webservice, it runs in the address:
http://localhost:12345/service.asmx

So would I be placing the localhost:12345 as my host url for the database?

How do I set the northwind (or any other SQL Server database to run in the 
localhost for this matter?)

By default the username for the SQL Server Express database is sa and password 
is left blank.

Thanks a lot.

Regards,

Angelo






From: valdhor valdhorli...@embarqmail.com
To: flexcoders@yahoogroups.com
Sent: Friday, 15 May, 2009 0:04:47
Subject: [flexcoders] Re: Flex - Create Application From Database





So, when I do this the window says Simple MySQL Connection- Create a 
connection to a MySQL Database. At this point you plug in details for your 
database connection.. .

Host URL: The IP address or hostname of your MySQL Database (If it's on your 
local machine use localhost or 127.0.0.1 or your local machines IP address).

Database Name: The database you want to connect to (You will select a table 
later).

User Name: The User Name you use to connect to the database above.

Password: The Password you use to connect to the database above.

You should then click the Test Connection button to see if Flex can connect 
to the database with the parameters you have entered.

HTH

Steve

--- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote:

 
 Hi All,
 
 I have FB3 on my machine, coupled with VS 2008 Express. 
 
 When I click on Data | Create Application From Database, I get the Popup 
 WIndow - Create Application From Database.
 
 I click on the New button beside the Connection and I am directed to the 
 Create Connection Profile.  I then enter the Name for the New Connection and 
 click on Next button..
 
 On the next screen, I have the following fields:
 
 Server Name: localhost
 Database Name
 User Name
 Password
 
 I cannot figure out what values need to be entered into these fields.  Kindly 
 help me sort this out so that I could leverage the database app capability of 
 Flex.
 
 Thanks.
 
 P.S. 
 When I run my web service application, I am able to connect to it.  Inside my 
 web service, I have already defined the Northwind database in the App_Data 
 folder.



   


  

Re: [flexcoders] Re: Application Idea

2009-05-14 Thread Baz
You want your app to be successful right? Well what's the most successful
app on the web? Google. Why not emulate it... You can have the frontend done
pretty quickly, so you're already 50% done. It's only a matter of getting
the backend right.

Good luck.


On Wed, May 13, 2009 at 7:00 PM, foobone9 foobo...@yahoo.com wrote:



 geni.com is a nice flex/flash family tree app.


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Brad
 Bueche brad.bue...@... wrote:
 
  Create a Family Tree.
 
  I mean the visual for the tree.
 
  Branches Nodes Leaves would be either text (Mother/Father, or Family
 Name)
  OR
  Branches Nodes Leaves would be thumb nail images.
 
  Mouse/over or hover over a branch, node, tree would bring up a little
 window
  with more info about that particular family (couple). Hover window could
  have children names as links at the bottom of it. Clicking them would
 take
  you to the children.
 
  Clicking in the main part of the hover window would take you to a page of
  info about that family.
 
  ===
  Create a calculator that keeps a running tab on a visual, realistic roll
 of
  paper. Allow user to grab components on the paper and re-arrange them. Be
  able to still calculate what they have re-arranged on the paper. Allow
 them
  to save the work on a piece of paper. Figure out what the most atomic
  components (building blocks) are. You'll need to be able to do this in
  order to recognize the new statements that are created on the paper.
 
  =
  Create an sql interface similar to search coders but enable this to also
  create real sql in a text space. Allow them to drag elements around and
  re-arrange them. Then paramertize what they have submitted and submit it
 to
  the database. The trick is dont let them build in the text area. Let them
  build through a menu'ing system that prohibits nefarious sql. Why both?
  Its very hard to do complex sql with a menu'ing system only.
 
  brad
 
  On Wed, May 13, 2009 at 7:00 AM, kanu kukreja kanukukr...@... wrote:
 
  
  
   Hello,
  
   I'm looking for an idea, so that i can create a application on based
   on that idea in flash or flex.
  
   Thanks,
   kanu
  
  
 

  



Re: [flexcoders] Re: Application Idea

2009-05-14 Thread ATIF
backend means ? he will be creating a full Fledge search engine like google Doh.

  - Original Message - 
  From: Baz 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, May 14, 2009 10:40 PM
  Subject: Re: [flexcoders] Re: Application Idea





  You want your app to be successful right? Well what's the most successful app 
on the web? Google. Why not emulate it... You can have the frontend done pretty 
quickly, so you're already 50% done. It's only a matter of getting the backend 
right.

  Good luck.




  On Wed, May 13, 2009 at 7:00 PM, foobone9 foobo...@yahoo.com wrote:




geni.com is a nice flex/flash family tree app.



--- In flexcoders@yahoogroups.com, Brad Bueche brad.bue...@... wrote:

 Create a Family Tree.
 
 I mean the visual for the tree.
 
 Branches Nodes Leaves would be either text (Mother/Father, or Family Name)
 OR
 Branches Nodes Leaves would be thumb nail images.
 
 Mouse/over or hover over a branch, node, tree would bring up a little 
window
 with more info about that particular family (couple). Hover window could
 have children names as links at the bottom of it. Clicking them would take
 you to the children.
 
 Clicking in the main part of the hover window would take you to a page of
 info about that family.
 
 ===
 Create a calculator that keeps a running tab on a visual, realistic roll 
of
 paper. Allow user to grab components on the paper and re-arrange them. Be
 able to still calculate what they have re-arranged on the paper. Allow 
them
 to save the work on a piece of paper. Figure out what the most atomic
 components (building blocks) are. You'll need to be able to do this in
 order to recognize the new statements that are created on the paper.
 
 =
 Create an sql interface similar to search coders but enable this to also
 create real sql in a text space. Allow them to drag elements around and
 re-arrange them. Then paramertize what they have submitted and submit it 
to
 the database. The trick is dont let them build in the text area. Let them
 build through a menu'ing system that prohibits nefarious sql. Why both?
 Its very hard to do complex sql with a menu'ing system only.
 
 brad
 

 On Wed, May 13, 2009 at 7:00 AM, kanu kukreja kanukukr...@... wrote:
 
 
 
  Hello,
 
  I'm looking for an idea, so that i can create a application on based
  on that idea in flash or flex.
 
  Thanks,
  kanu
  
 






  

[flexcoders] Re: Flex - Create Application From Database

2009-05-14 Thread valdhor
I don't use .NET or NorthWind.

I would try http://localhost:12345 or http://localhost:12345/service.asmx as 
the server name.

Put the database name you want to use in the Database Name field and leave the 
other fields as is (Flex automatically populates the user name field with sa).

Then try clicking the Test Connection button. Flex will try to connect and 
give you some sort of error if it can't.

As I understand it, you should be able to connect to a NorthWind database.


HTH



Steve



--- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote:

 Hi Steve,
 I am trying to connect to the NorthWind database which I placed in the 
 App_Data folder of my web service.
 When I run the webservice, it runs in the address:
 http://localhost:12345/service.asmx
 
 So would I be placing the localhost:12345 as my host url for the database?
 
 How do I set the northwind (or any other SQL Server database to run in the 
 localhost for this matter?)
 
 By default the username for the SQL Server Express database is sa and 
 password is left blank.
 
 Thanks a lot.
 
 Regards,
 
 Angelo
 
 
 
 
 
 
 From: valdhor valdhorli...@...
 To: flexcoders@yahoogroups.com
 Sent: Friday, 15 May, 2009 0:04:47
 Subject: [flexcoders] Re: Flex - Create Application From Database
 
 
 
 
 
 So, when I do this the window says Simple MySQL Connection- Create a 
 connection to a MySQL Database. At this point you plug in details for your 
 database connection.. .
 
 Host URL: The IP address or hostname of your MySQL Database (If it's on your 
 local machine use localhost or 127.0.0.1 or your local machines IP address).
 
 Database Name: The database you want to connect to (You will select a table 
 later).
 
 User Name: The User Name you use to connect to the database above.
 
 Password: The Password you use to connect to the database above.
 
 You should then click the Test Connection button to see if Flex can connect 
 to the database with the parameters you have entered.
 
 HTH
 
 Steve
 
 --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote:
 
  
  Hi All,
  
  I have FB3 on my machine, coupled with VS 2008 Express. 
  
  When I click on Data | Create Application From Database, I get the Popup 
  WIndow - Create Application From Database.
  
  I click on the New button beside the Connection and I am directed to the 
  Create Connection Profile.  I then enter the Name for the New Connection 
  and click on Next button..
  
  On the next screen, I have the following fields:
  
  Server Name: localhost
  Database Name
  User Name
  Password
  
  I cannot figure out what values need to be entered into these fields.  
  Kindly help me sort this out so that I could leverage the database app 
  capability of Flex.
  
  Thanks.
  
  P.S. 
  When I run my web service application, I am able to connect to it.  Inside 
  my web service, I have already defined the Northwind database in the 
  App_Data folder.
 





[flexcoders] Confused about modules using embedded fonts Flex 3.3

2009-05-14 Thread Greg Hess
Hi Folks,

I have a modular application built on Flex 3.3 SDK and have just
introduced some embedded fonts and unfortunately all text is blank in
the modules that attempt to use the embedded font. Popup windows
displayed from my module shell(main application) work fine.  Searching
the archive and web I have found much discussion in relation to
ActionScript 2 but not much regarding Flex 3 other than this adobe
bug(3.2 sdk) http://bugs.adobe.com/jira/browse/SDK-18254 that has the
same result (blank text), but in my testing my modules call to
Font.enumerateFonts(false); does return my list of embedded fonts so I
don't think the work around to register the fonts will help.

Does anyone know how to allow a module to use fonts embedded in the
main application in Flex 3.3?

Do I have to register the embedded font when initializing each module?

If my fonts are listed in Font.enumerateFonts(false) does that mean
registration is already complete?

Any help is much appreciated!

Greg


[flexcoders] Re: Flex - Create Application From Database

2009-05-14 Thread valdhor
If you still can't get it to work, you may like to look at 
http://www.lynda.com/home/DisplayCourse.aspx?lpk2=437 . There is a course 
component labeled Using Flex Builder 3's ASP.NET Data Wizard.


--- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote:

 I don't use .NET or NorthWind.
 
 I would try http://localhost:12345 or http://localhost:12345/service.asmx as 
 the server name.
 
 Put the database name you want to use in the Database Name field and leave 
 the other fields as is (Flex automatically populates the user name field with 
 sa).
 
 Then try clicking the Test Connection button. Flex will try to connect and 
 give you some sort of error if it can't.
 
 As I understand it, you should be able to connect to a NorthWind database.
 
 
 HTH
 
 
 
 Steve
 
 
 
 --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_anolin@ wrote:
 
  Hi Steve,
  I am trying to connect to the NorthWind database which I placed in the 
  App_Data folder of my web service.
  When I run the webservice, it runs in the address:
  http://localhost:12345/service.asmx
  
  So would I be placing the localhost:12345 as my host url for the database?
  
  How do I set the northwind (or any other SQL Server database to run in the 
  localhost for this matter?)
  
  By default the username for the SQL Server Express database is sa and 
  password is left blank.
  
  Thanks a lot.
  
  Regards,
  
  Angelo
  
  
  
  
  
  
  From: valdhor valdhorlists@
  To: flexcoders@yahoogroups.com
  Sent: Friday, 15 May, 2009 0:04:47
  Subject: [flexcoders] Re: Flex - Create Application From Database
  
  
  
  
  
  So, when I do this the window says Simple MySQL Connection- Create a 
  connection to a MySQL Database. At this point you plug in details for your 
  database connection.. .
  
  Host URL: The IP address or hostname of your MySQL Database (If it's on 
  your local machine use localhost or 127.0.0.1 or your local machines IP 
  address).
  
  Database Name: The database you want to connect to (You will select a table 
  later).
  
  User Name: The User Name you use to connect to the database above.
  
  Password: The Password you use to connect to the database above.
  
  You should then click the Test Connection button to see if Flex can 
  connect to the database with the parameters you have entered.
  
  HTH
  
  Steve
  
  --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... 
  wrote:
  
   
   Hi All,
   
   I have FB3 on my machine, coupled with VS 2008 Express. 
   
   When I click on Data | Create Application From Database, I get the Popup 
   WIndow - Create Application From Database.
   
   I click on the New button beside the Connection and I am directed to the 
   Create Connection Profile.  I then enter the Name for the New Connection 
   and click on Next button..
   
   On the next screen, I have the following fields:
   
   Server Name: localhost
   Database Name
   User Name
   Password
   
   I cannot figure out what values need to be entered into these fields.  
   Kindly help me sort this out so that I could leverage the database app 
   capability of Flex.
   
   Thanks.
   
   P.S. 
   When I run my web service application, I am able to connect to it.  
   Inside my web service, I have already defined the Northwind database in 
   the App_Data folder.
  
 





[flexcoders] Sorry i am not a rocket scientist...

2009-05-14 Thread djhatrick
but how do I remove the header highlight fill from a datagrid?

DatagridHeader is nearly impossible to override, i want to kill that f**n fill.

It's driving me crazy, it's a all bright white...

BTW, looping over the children in createChildren and manually setting 
focusAlpha to 0 does not help.

Any help there.

Thanks,
Patrick



[flexcoders] Re: Sorry i am not a rocket scientist...

2009-05-14 Thread valdhor
Try...

mx:DataGrid headerColors={[0xFF, 0xE6E6E6]}/

or

DataGrid's headerStyleName

or

DataGridColumn's headerRenderer


--- In flexcoders@yahoogroups.com, djhatrick djhatr...@... wrote:

 but how do I remove the header highlight fill from a datagrid?
 
 DatagridHeader is nearly impossible to override, i want to kill that f**n 
 fill.
 
 It's driving me crazy, it's a all bright white...
 
 BTW, looping over the children in createChildren and manually setting 
 focusAlpha to 0 does not help.
 
 Any help there.
 
 Thanks,
 Patrick





[flexcoders] Re: Tree backgorund color

2009-05-14 Thread valdhor
depthColors?

--- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... 
wrote:

 How can I change a background color from white to something else?
 
 Thanks





[flexcoders] Tree backgorund color

2009-05-14 Thread markgoldin_2000
How can I change a background color from white to something else?

Thanks



[flexcoders] Re: Buggy HorizontalList

2009-05-14 Thread Amy
--- In flexcoders@yahoogroups.com, nathanpdaniel ndan...@... wrote:

 Maybe I misspoke so, to clarify, my ItemRenderer knows nothing of my actual 
 model.  I do use some static values from my model (checking against specific 
 values - if I have one of these values, change the state of this particular 
 item).
 So after reading in my last post all my data is bound to a model, I see the 
 confusion.  I simply have a VO being created when the data property is 
 set/updated.  Cairngorm has a model which is used for the entire 
 application.  Then it uses VOs to represent individual things (I'm not sure 
 what to call them.. :D).  However, going back in the history of Flex, a model 
 (in standard Flex) and a VO (in Cairngorm) are the same thing.  So, when I 
 was referring to a model in my ItemRenderer, it would have been better to use 
 VO.  

So why are you using this line in your ItemRenderer if your ItemRenderer knows 
nothing of the model:

[Bindable]private var model:AppModelLocator = AppModelLocator.getInstance();

?



[flexcoders] Re: backgroundGradientColors

2009-05-14 Thread Amy
--- In flexcoders@yahoogroups.com, thomas parquier mailingli...@... wrote:

 Hi,
 
 I dont see the implementation of backgroundGradientColors drawing in
 Application.as. There doesnt seem to be any other component defining and
 implementing backgroundGradientColors.
 Does anyone know where to look at ?
 A simple graphics.drawRect() with a gradientFill should work, but where is
 such a script for Application ?

I think it's part of HaloBorder.



[flexcoders] Re: backgroundGradientColors

2009-05-14 Thread Tim Hoff

Hi Thomas,

The style is defined in mx.core.Application.as:
[Style(name=backgroundGradientColors, type=Array, arrayType=uint,
format=Color, inherit=no)]

And it is implemented in mx.skins.halo.ApplicationBackground.as:
var fillColors:Array = getStyle(backgroundGradientColors);
var fillAlphas:Array = getStyle(backgroundGradientAlphas);

We can't see the code, but I'm guessing that ApplicationBackground is
set as the borderSkin for Application, behind the scenes.

-TH

--- In flexcoders@yahoogroups.com, thomas parquier mailingli...@...
wrote:

 Hi,

 I dont see the implementation of backgroundGradientColors drawing in
 Application.as. There doesnt seem to be any other component defining
and
 implementing backgroundGradientColors.
 Does anyone know where to look at ?
 A simple graphics.drawRect() with a gradientFill should work, but
where is
 such a script for Application ?

 thomas
 ---
 http://www.web-attitude.fr/
 msn : thomas.parqu...@...
 softphone : sip:webattit...@... sip%3awebattit...@...
 téléphone portable : +33601 822 056





[flexcoders] Re: Sorry i am not a rocket scientist...

2009-05-14 Thread Tim Hoff

This might help:

http://ntt.cc/2009/02/18/set-background-color-for-headers-of-datagrid.ht\
ml
http://ntt.cc/2009/02/18/set-background-color-for-headers-of-datagrid.h\
tml

-TH

--- In flexcoders@yahoogroups.com, djhatrick djhatr...@... wrote:

 but how do I remove the header highlight fill from a datagrid?

 DatagridHeader is nearly impossible to override, i want to kill that
f**n fill.

 It's driving me crazy, it's a all bright white...

 BTW, looping over the children in createChildren and manually setting
focusAlpha to 0 does not help.

 Any help there.

 Thanks,
 Patrick





re: [flexcoders] Re: Job Offer ! - WTF?!

2009-05-14 Thread Wally Kolcz
How funny. pay to apply and make less than most of us already do.


From: valdhor valdhorli...@embarqmail.com
Sent: Thursday, May 14, 2009 7:22 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Job Offer ! 

Amy

Has someone stolen your identity or are you really spamming the list with job 
offers that have nothing to do with Flex??

--- In flexcoders@yahoogroups.com, Tiba industry amyblankens...@... wrote:



 

 Tiba industry international is offering a wide range of job offers for people 
 living in 

 united State,Canada,United Kingdom,South America,Australia and Europe,

 if you are experienced and qualified in the category stated below,

 Please tender your resume at

 care...@... or visit our website 

 http://www.tibaindustry.com/jobs.html for further details.

 

 

 * ADMIN ASSISTANT

 * ACCOUNTANT

 * HEALTHCARE WORKERS

 * FACTORY WORKERS

 * MANAGERS

 * MARKETING

 * HUMAN RESOURCES

 * MERCHANDISING

 * STORE KEEPERS

 * DRIVERS

 * SUPERVISORS

 * MECHANICAL ENGINEER

 * SECRETARY

 

 

 BENEFITS

 

 

 * Salary: Annual gross starting salary of $63,500, paid in biweekly 
 installments by your choice of check or direct deposit

 * Performance Bonuses: Up to three percent of your annual gross salary, paid 
 quarterly by your choice of check or direct deposit

 * Stock Options: 500 Acme stock options in your first year, fully vested in 
 four years at the rate of 125 shares per year

 * Benefits: Standard, Acme-provided benefits for salaried-exempt employees, 
 including the following

 o 401 retirement account

 o Annual stock options

 o Child daycare assistance

 o Education assistance

 o Health, dental, life and disability insurance

 o Profit sharing

 o Sick leave

 o Vacation and personal days

 

 Tiba industry international

 

 http://www.tibaindustry.com/jobs.html







[flexcoders] Focus on itemRenderer sub-components in a non editable list

2009-05-14 Thread JérémyR

Hi,

This problem seems very simple but despite of my searches, I didn't find any
solution...
I have a non editable List with custom Canvas item renderer. This Canvas
contains 4 buttons. And I want the user to be able to focus each button with
TAB key.

A lot of posts talks about similar problems but it seems there is no
solution (for non editable list - Alex Harui wrote an excellent article on
his blog but for a DataGrid component but with editable set to true)...

Is there really no solution? (if it is the case, I think it deserves a bug
in Adobe Bug system cause it completely breaks application accessibility...)

Thanks for your reply.
-- 
View this message in context: 
http://www.nabble.com/Focus-on-itemRenderer-sub-components-in-a-non-editable-list-tp23546945p23546945.html
Sent from the FlexCoders mailing list archive at Nabble.com.



Re: [flexcoders] Re: Application Idea

2009-05-14 Thread Mike Britton
Personally, and as a matter of pride, I would avoid reinventing the wheel.


Mike Britton
--
http://www.mikebritton.com

 - Original Message -
 From: Baz
 To: flexcoders@yahoogroups.com
 Sent: Thursday, May 14, 2009 10:40 PM
 Subject: Re: [flexcoders] Re: Application Idea

 You want your app to be successful right? Well what's the most successful
 app on the web? Google. Why not emulate it... You can have the frontend done
 pretty quickly, so you're already 50% done. It's only a matter of getting
 the backend right.

 Good luck.



[flexcoders] Re: Sorry i am not a rocket scientist...

2009-05-14 Thread djhatrick

Ha, no that doesn't help, but things, i want to remove the mouse Over highlight 
fill.  Not the header column colors.

Thanks
Patrick


--- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote:

 Try...
 
 mx:DataGrid headerColors={[0xFF, 0xE6E6E6]}/
 
 or
 
 DataGrid's headerStyleName
 
 or
 
 DataGridColumn's headerRenderer
 
 
 --- In flexcoders@yahoogroups.com, djhatrick djhatrick@ wrote:
 
  but how do I remove the header highlight fill from a datagrid?
  
  DatagridHeader is nearly impossible to override, i want to kill that f**n 
  fill.
  
  It's driving me crazy, it's a all bright white...
  
  BTW, looping over the children in createChildren and manually setting 
  focusAlpha to 0 does not help.
  
  Any help there.
  
  Thanks,
  Patrick
 





[flexcoders] extract function name from Function instance?

2009-05-14 Thread Mic
private var sqlCall:Function;
sqlCall = sql_sel_hier_sls;

private function sqlSwitch():void{
   var identifyFunction:String = [extract funct name from sqlCall];   
   sqlCall();

}

private function sql_sel_hier_sls():void{

}

How do I extract the function name from the Function instance for 
debugging/tracing? TIA,

Mic.



Re: [flexcoders] Re: Validating items in DataGrids

2009-05-14 Thread nhid
Hi

I also need to show the applicable error message to each of the error cell.
So I use a renderer that extends Label since there's a errorString attribute
for label.  However, I keep getting dumped (application freezes) when I add
in errorString.  Any idea why?
*

package* {

*import* mx.controls.Label;

*import* mx.controls.listClasses.*;

*public* *class* PriceLabel *extends* Label {

*private* *const* POSITIVE_COLOR:uint = 0x00; *// Black
*

*private* *const* NEGATIVE_COLOR:uint = 0xFF; *// Red
*

*override* *protected* *function* updateDisplayList(unscaledWidth:Number,
unscaledHeight:Number):*void* {

*super*.updateDisplayList(unscaledWidth, unscaledHeight);

*/* Set the font color based on the item price. */
*

setStyle(*color*, (da...@price = 0) ? NEGATIVE_COLOR : POSITIVE_COLOR);

this.errorString=err;

  }

   }
}



?xml version=1.0 encoding=utf-8?

!--
http://blog.flexexamples.com/2007/08/20/formatting-a-flex-datagrid-control-using-a-custom-item-renderer/--

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

layout=vertical

verticalAlign=middle creationComplete=setErrorString()

backgroundColor=white

mx:Script

![CDATA[

*import* mx.controls.dataGridClasses.DataGridColumn;

*import* mx.utils.ObjectUtil;

*private* *function* price_labelFunc(item:Object,
column:DataGridColumn):String {

*return* currencyFormatter.format(it...@price);

}

*private* *function* price_sortCompareFunc(itemA:Object, itemB:Object):int {

*return* ObjectUtil.numericCompare(ite...@price, ite...@price);

}

*private* *function* setErrorString():*void*{

}

]]

/mx:Script

mx:XML id=itemsXML

items

item name=Item 1 price=1.32 error=my Error/

item name=Item 2 price=-12.23 error=my Error /

item name=Item 3 price=4.96 error=my Error /

item name=Item 4 price=-0.94 error=my Error /

/items

/mx:XML

mx:Style

.centered {

text-align: center;

}

/mx:Style

mx:CurrencyFormatter id=currencyFormatter

precision=2

useNegativeSign=false /

mx:DataGrid id=dataGrid dataProvider={itemsXML.item}

mx:columns

mx:DataGridColumn dataField=@name

headerText=Name:

headerStyleName=centered /

mx:DataGridColumn dataField=@price

headerText=Price:

textAlign=right

headerStyleName=centered

labelFunction=price_labelFunc

sortCompareFunction=price_sortCompareFunc

itemRenderer=PriceLabel

/

/mx:columns

/mx:DataGrid

mx:Label text=my label errorString=my error/

/mx:Application


On Wed, May 13, 2009 at 5:57 PM, foobone9 foobo...@yahoo.com wrote:



 I would just create a custom item renderer who examines its own data and if
 it finds something it doesn't like it draws a red bordering using the
 drawing API in updateDisplayList.

 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, nhid
 nhi...@... wrote:
 
  Hi,
 
  I am also working on this problem, does anyone has an idea how to draw
 the
  red border when validation failed on a field in the datagrid?
 
  Thanks for any help.
  Nhi
 
  On Fri, May 8, 2009 at 2:50 PM, Ravi Suda sudaraviku...@... wrote:
 
  
  
   John,
   I am working on a similar requirement. I want to show the mandatory
 fields
   in datagrid as a validation error(red border). Could you provide your
 custom
   item renderer that you created.
  
   Thanks in Advance
   Ravi
  
  
   --- In flexcoders@yahoogroups.com 
   flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com,
   j_lentzz jelentz@ wrote:
   
True. Good idea. I've already coded the method to increment a
counter to display number of failed items. I'll modify the item
renderer too and see what appears.
   
Thanks,
   
John
--- In flexcoders@yahoogroups.com 
flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com, Roman
   Protsiuk
roman.protsiuk@ wrote:

 Then all you need is dataProvider. Validate items held in there.
 And
change
 some property of the item that indicates whether it's valid or not.
   Then
 item renderer easily can draw something bad basing on that info.

 R.

 On 9/19/07, j_lentzz jelentz@ wrote:
 
  I'm doing something like that right now for the individual cells.
  I've integrated a validator into the cell object. However, I need
 to
  be able to validate the complete datagrid when the save button is
  pressed. If the user never moves to a cell, I can't use the
  itemEditEnd to validate, I need to move through the data and
 check.
  Using the itemEditor.newInstance() and calling my validation
 routine,
  I can detect that a validation fails. Now I'm going to try to use
 the
  itemRenderer property to indicate the nice red boxes.
 
  John
  --- In flexcoders@yahoogroups.com 
  flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.comflexcoders%

   40yahoogroups.com,
Roman
  Protsiuk
  roman.protsiuk@ wrote:
  
   I remember I did it like this:
  
   public class FilesDataGridColumnEditor extends TextInput {
  
   public function 

[flexcoders] Re: SessionDestroyed () method is not getting called

2009-05-14 Thread Dharmendra Chauhan
Hi , 
I tried FlexSessionListener but I was surprised to see that only sessionCreated 
method is getting called.

I have put break point in SessionDestroyed() method , It does NOT get called 
when I closes the Window. However It get called after 15-20 minute.

I was expecting it to get called immediatly after the window closure but It is 
not happening.


Please note that I m using RTMP channel and my application was deployed as 
activeX control and I have not configured any time out period. 


Do I need to configure anything else to enable SessionDestroyed() method ?


Regards,
Dharmendra






 
 
 

--- In flexcoders@yahoogroups.com, foobone9 foobo...@... wrote:

 
 Create an object that implements the FlexSessionListener interface.
 Then set your object to receive the callbacks:
 
 FlexContext.getFlexSession().addSessionDestroyedListener(your Object);
 
 
 --- In flexcoders@yahoogroups.com, Dharmendra Chauhan chauhan_icse@ wrote:
 
  Thanks Jeffrey,
  
  I am using RTMT channel, which interface I need to implement in order to 
  get notification or I have.I mean what are the ways to implement it.
  I need to close some open connections to the backend system when Flex 
  Client goes down.
   
  Regards,
  Dharmendra
  
  
   
  
  --- In flexcoders@yahoogroups.com, Jeffrey Vroom jeff@ wrote:
  
   The FlexSession object dispatches session closed events.  For RTMP 
   sessions,
   these will be pretty much immediate.  For HTTP sessions though, they are
   dispatched when the session expires.  So for RTMP you get quick 
   notification
   but for HTTP it will be delayed based on your session expiration interval.
   Jeff
   
   On Tue, May 12, 2009 at 10:39 PM, Dharmendra Chauhan chauhan_icse@
wrote:
   
   
   
Hi,
I have to release resources when user get disconnected from LCDS.
What I need to implement in java to listen it ?
   
User may disconnect due to network failure ,when he closes the flex 
Window
etc..
   
Thanks,
Dharmendra
   
   
 
   
  
 





[flexcoders] How to display data label in LineChart / LineSeries

2009-05-14 Thread filipevirginio
Hi,
I need display data labels in LineChart / LineSeries, but its properties 
(labelPosition, labelField, labelFunction etc) is not supported by LineSeries, 
only BarSeries, ColumnSeries and PieSeries.

Does exists some line chart component that display data label ou any other 
workaround to solve this problem?

Thanks in advance.

Filipe Torres



[flexcoders] Re: Sorry i am not a rocket scientist...

2009-05-14 Thread Tim Hoff

Looks like it's drawn in the mouseOverHandler function in
DataGridHeader.as:

drawHeaderIndicator(s, r.x, 0, visibleColumns[i].width,
cachedHeaderHeight - 0.5, getStyle(rollOverColor), r);

You'll have to try to extend DataGrid and DataGridHeader, or monkeyPatch
DataGridHeader.

-TH

--- In flexcoders@yahoogroups.com, djhatrick djhatr...@... wrote:


 Ha, no that doesn't help, but things, i want to remove the mouse Over
highlight fill. Not the header column colors.

 Thanks
 Patrick


 --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote:
 
  Try...
 
  mx:DataGrid headerColors={[0xFF, 0xE6E6E6]}/
 
  or
 
  DataGrid's headerStyleName
 
  or
 
  DataGridColumn's headerRenderer
 
 
  --- In flexcoders@yahoogroups.com, djhatrick djhatrick@ wrote:
  
   but how do I remove the header highlight fill from a datagrid?
  
   DatagridHeader is nearly impossible to override, i want to kill
that f**n fill.
  
   It's driving me crazy, it's a all bright white...
  
   BTW, looping over the children in createChildren and manually
setting focusAlpha to 0 does not help.
  
   Any help there.
  
   Thanks,
   Patrick
  
 





Re: [flexcoders] MenuBar text roll over

2009-05-14 Thread KK

Thanks Alex,

But I couldn't achieve that with skinning. Maybe you could show a quick 
example?


Actually, I found a way to do that through item renderers. I wanted to 
just extend the mx.controls.menuClasses.MenuBarItemRenderer and override 
its set menuBarItemState but because of this bug 
http://bugs.adobe.com/jira/browse/SDK-13877, well I received the same 
error, I couldn't quite do that. So, I just created a copy of the class 
and added the following hack to aforementioned method:


   if (value == itemOverSkin || value == itemDownSkin)
   {
   label.textColor = getStyle(hoverColor) as int;
   }
   else
   {
   label.textColor = getStyle(color) as int;
   }

Besides that, as you might have already presumed, I added another style 
property:


[Style(name=hoverColor, type=uint, format=Color, inherit=yes)]

Now, I don't really favor this solution as it is IMHO a hack. Therefore 
I'd be grateful if you or anyone else could show a more elegant solution.


Other than that, MenuBar does seem a little difficult to work with, 
mainly because there isn't enough documentation covering it. For 
example, just by miraculous coincidence I found out that the menus 
inside the menu bar are actually DropDowns, is that true? At least it 
seems to be possible to define their styles in this way.


Anyway, thanks for attention.

Dmitri

Alex Harui пишет:



You should be able to supply a custom skin

 


Alex Harui

Flex SDK Developer

Adobe Systems Inc. http://www.adobe.com/

Blog: http://blogs.adobe.com/aharui http://blogs.adobe.com/aharui

 

*From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] 
*On Behalf Of *KK

*Sent:* Thursday, May 14, 2009 7:07 AM
*To:* flexcoders@yahoogroups.com
*Subject:* [flexcoders] MenuBar text roll over

 





Hi,

I am trying to figure out the easiest way to change the text color on
roll over for the menu headings in the mx.controls.MenuBar. Defining
styles doesn't work. I also looked at the MenuBarItem but was unable to
salvage anything there. So far, I think I need to assign a custom item
renderer, which would change the color based on the state. However, I
have not done that in the past so any help or advice would be much
appreciated. BTW, I am using custom skins to render a custom shape when
the mouse hovers the link.

Thanks.

Dmitri




[flexcoders] Re: Tree backgorund color

2009-05-14 Thread markgoldin_2000
Yep, that's the one. Thanks
--- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote:

 depthColors?
 
 --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2000@ wrote:
 
  How can I change a background color from white to something else?
  
  Thanks
 





[flexcoders] Re: Sorry i am not a rocket scientist...

2009-05-14 Thread Tim Hoff

Monkey patching DataGridHeader works.  Just copy DataGridHeader.as into
mx/controls/dataGridClasses (you'll have to create these folders in the
src folder of your project), comment out the drawHeaderIndicator line in
the mouseOverHandler function.

-TH

--- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote:


 Looks like it's drawn in the mouseOverHandler function in
 DataGridHeader.as:

 drawHeaderIndicator(s, r.x, 0, visibleColumns[i].width,
 cachedHeaderHeight - 0.5, getStyle(rollOverColor), r);

 You'll have to try to extend DataGrid and DataGridHeader, or
monkeyPatch
 DataGridHeader.

 -TH

 --- In flexcoders@yahoogroups.com, djhatrick djhatrick@ wrote:
 
 
  Ha, no that doesn't help, but things, i want to remove the mouse
Over
 highlight fill. Not the header column colors.
 
  Thanks
  Patrick
 
 
  --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote:
  
   Try...
  
   mx:DataGrid headerColors={[0xFF, 0xE6E6E6]}/
  
   or
  
   DataGrid's headerStyleName
  
   or
  
   DataGridColumn's headerRenderer
  
  
   --- In flexcoders@yahoogroups.com, djhatrick djhatrick@ wrote:
   
but how do I remove the header highlight fill from a datagrid?
   
DatagridHeader is nearly impossible to override, i want to kill
 that f**n fill.
   
It's driving me crazy, it's a all bright white...
   
BTW, looping over the children in createChildren and manually
 setting focusAlpha to 0 does not help.
   
Any help there.
   
Thanks,
Patrick
   
  
 






[flexcoders] Re: Sorry i am not a rocket scientist...

2009-05-14 Thread valdhor
Also, skinning should work. Check out http://www.munkiihouse.com/?p=14


--- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote:

 
 Monkey patching DataGridHeader works.  Just copy DataGridHeader.as into
 mx/controls/dataGridClasses (you'll have to create these folders in the
 src folder of your project), comment out the drawHeaderIndicator line in
 the mouseOverHandler function.
 
 -TH
 
 --- In flexcoders@yahoogroups.com, Tim Hoff TimHoff@ wrote:
 
 
  Looks like it's drawn in the mouseOverHandler function in
  DataGridHeader.as:
 
  drawHeaderIndicator(s, r.x, 0, visibleColumns[i].width,
  cachedHeaderHeight - 0.5, getStyle(rollOverColor), r);
 
  You'll have to try to extend DataGrid and DataGridHeader, or
 monkeyPatch
  DataGridHeader.
 
  -TH
 
  --- In flexcoders@yahoogroups.com, djhatrick djhatrick@ wrote:
  
  
   Ha, no that doesn't help, but things, i want to remove the mouse
 Over
  highlight fill. Not the header column colors.
  
   Thanks
   Patrick
  
  
   --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote:
   
Try...
   
mx:DataGrid headerColors={[0xFF, 0xE6E6E6]}/
   
or
   
DataGrid's headerStyleName
   
or
   
DataGridColumn's headerRenderer
   
   
--- In flexcoders@yahoogroups.com, djhatrick djhatrick@ wrote:

 but how do I remove the header highlight fill from a datagrid?

 DatagridHeader is nearly impossible to override, i want to kill
  that f**n fill.

 It's driving me crazy, it's a all bright white...

 BTW, looping over the children in createChildren and manually
  setting focusAlpha to 0 does not help.

 Any help there.

 Thanks,
 Patrick

   
  
 





Re: [flexcoders] Re: backgroundGradientColors

2009-05-14 Thread thomas parquier
Thank you Amy, Tim.

thomas
---
http://www.web-attitude.fr/
msn : thomas.parqu...@web-attitude.fr
softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net
téléphone portable : +33601 822 056


2009/5/14 Tim Hoff timh...@aol.com



 Hi Thomas,

 The style is defined in mx.core.Application.as:
 [*Style*(name=*backgroundGradientColors*, type=*Array*, arrayType=*
 uint*, format=*Color*, inherit=*no*)]

 And it is implemented in mx.skins.halo.ApplicationBackground.as:
 *var* fillColors:Array = getStyle(*backgroundGradientColors*);
 *var* fillAlphas:Array = getStyle(*backgroundGradientAlphas*);

 We can't see the code, but I'm guessing that ApplicationBackground is set
 as the borderSkin for Application, behind the scenes.

 -TH


 --- In flexcoders@yahoogroups.com, thomas parquier mailingli...@...
 wrote:
 
  Hi,
 
  I dont see the implementation of backgroundGradientColors drawing in
  Application.as. There doesnt seem to be any other component defining and
  implementing backgroundGradientColors.
  Does anyone know where to look at ?
  A simple graphics.drawRect() with a gradientFill should work, but where
 is
  such a script for Application ?
 
  thomas
  ---
  http://www.web-attitude.fr/
  msn : thomas.parqu...@...
  softphone : sip:webattit...@... sip%3awebattit...@...
  téléphone portable : +33601 822 056
 
  



[flexcoders] Form with 3 Custom Components...

2009-05-14 Thread Laurence MacNeill
I have a form with 3 Custom Components on it.  I want to be able to 
click a single button on the form (button is not in any of the custom 
components) that will submit the form.  But I'm confused as how to do this?

 From what I understand, I somehow need to get all three custom 
components to throw an event at the same time, yes?  And to have them 
throw these events when a button is clicked, and said button is not a 
part of any of the three components.  Therein lies my confusion.  How 
do I do this?

Or would it just be easier to combine all three components into one 
giant component that contains the submit button?  Seems like bad 
programming practice to me, tho.  There's gotta be a way to keep the 
three components separate, and have a submit button on the main form 
that will trigger the submit event in all three components 
simultaneously, I would think -- I just can't figure out how to do it.

Thanks for any help you can offer,

Laurence MacNeill
Mableton, Georgia, USA



[flexcoders] Loading Modules in Separate Application Domains

2009-05-14 Thread colin.shreffler
I'm trying to build a portal Flex Application that loads 1 or modules at run 
time.  I need each of these modules to run in their own ApplicationDomain.  

The loading application AND the modules are ALL being referenced via http and 
are all in the same domain.

Therefore I'm using the following code to load each module:

ModuleManager.getModule(_url).load(new ApplicationDomain(), 
SecurityDomain.currentDomain)

As soon as I do this however, I am getting the following error:

SWF is not a loadable module

If I use ModuleManager.getModule(_url).load() it works fine but then I have the 
issue of each module running in a shared ApplicationDomain which isn't what I 
want.

I've read quite a few posts about domain policy files and allowDomain() and 
I've tried all that but nothing is working.

Does anyone know how to get this to work?  I've heard that there are developers 
out there using the Loader.loadBytes() method to accomplish the same thing but 
I can't find an example of this.

Any help would be GREATLY appreciated.




[flexcoders] AIR: Duplicate entity encoding in web service call, same class is fine in SWF

2009-05-14 Thread jeffdafoe

We have a class that uses mx.rpc.soap.WebService to call a web service via 
WSDL.  Nothing fancy, the class is really just a wrapper with about 10 lines of 
code.  The code has been in production as a SWF for about a year without drama. 
 When we use the same class under AIR, we are seeing duplicate entity encoding. 
 For example, we sent  as the password:

Flex app generated:

SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  SOAP-ENV:Body
hhl-User:authenticateRequest 
xmlns:hhl-User=http://www.harte-hanks.com/hhl-User/;
  Login
usernameyevgen/username
password11amp;lt;11/password
  /Login
/hhl-User:authenticateRequest
  /SOAP-ENV:Body
/SOAP-ENV:Envelope

SWF version generates:

SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  SOAP-ENV:Body
hhl-User:authenticateRequest 
xmlns:hhl-User=http://www.harte-hanks.com/hhl-User/;
  Login
usernameyevgen/username
password11lt;11/password
  /Login
/hhl-User:authenticateRequest
  /SOAP-ENV:Body
/SOAP-ENV:Envelope

The XSD defines Login as:

xsd:complexType name=LoginType
xsd:sequence minOccurs=1 maxOccurs=1
xsd:element name=username maxOccurs=1
xsd:simpleType
xsd:restriction base=xsd:string
xsd:maxLength value=10 /
/xsd:restriction
/xsd:simpleType
/xsd:element
xsd:element name=password maxOccurs=1
xsd:simpleType
xsd:restriction base=xsd:string
xsd:maxLength value=15 /
/xsd:restriction
/xsd:simpleType
/xsd:element
/xsd:sequence
/xsd:complexType


Has anyone else seen anything similar or had encoding work properly?


Thanks in advance,
-Jeff



[flexcoders] Re: AIR: Duplicate entity encoding in web service call, same class is fine in SWF

2009-05-14 Thread jeffdafoe

I am thinking this is caused by the issue discussed in 
http://tech.groups.yahoo.com/group/flexcoders/message/139207


-Jeff




[flexcoders] Is this very bad?

2009-05-14 Thread markgoldin_2000
When I open Builder:
Error opening the editor.
Assertion failed: 





[flexcoders] Re: What's wrong with this linechart?

2009-05-14 Thread Trefalgar Bain
--- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote:
 Give the CategoryAxis an id...
 mx:CategoryAxis id=ca categoryField=loadval/
 then, in Actionscript, give it a dataProvider...
 ca.dataProvider = testdata;

Absolutely right. That's annoying ;)

I'm now trying to figure out how to dynamically take the current CatagoryAxis 
dataProvider and append additional data to it. Probably my fault for not 
posting the entire context ...

private function graphSetup(data:Object, chart:String):void {
for ( var obj:Object in data ) {
var ls:LineSeries = new LineSeries();
ls.dataProvider = data[obj];
ls.yField = val;
ls.xField = loadval;
ls.displayName = obj.valueOf();
ls.setStyle('itemRenderer', new 
ClassFactory(CircleItemRenderer));
var currentSeries:Array = linechart1.series;
currentSeries.push(ls);
linechart1.series = currentSeries;
ca1.dataProvider.push(data[obj]);
}
}

ca1.dataProvider.push doesn't work, it actually ends up setting 
ca1.dataProvider to null. I can't do this, either ...

var moo:Array = ca1.dataProvider;
moo.push(data[obj]);
ca1.dataProvider = moo;

If I ... ca1.dataProvider = data[obj] ... it works but for just a single line 
series.

Hrm.

Tref




[flexcoders] Re: Form with 3 Custom Components...

2009-05-14 Thread foobone9

You can just handle the click event from your button and in the handler 
function pull the necessary information out of your 3 custom components and 
then do what you want with it.

--- In flexcoders@yahoogroups.com, Laurence MacNeill lmacne...@... wrote:

 I have a form with 3 Custom Components on it.  I want to be able to 
 click a single button on the form (button is not in any of the custom 
 components) that will submit the form.  But I'm confused as how to do this?
 
  From what I understand, I somehow need to get all three custom 
 components to throw an event at the same time, yes?  And to have them 
 throw these events when a button is clicked, and said button is not a 
 part of any of the three components.  Therein lies my confusion.  How 
 do I do this?
 
 Or would it just be easier to combine all three components into one 
 giant component that contains the submit button?  Seems like bad 
 programming practice to me, tho.  There's gotta be a way to keep the 
 three components separate, and have a submit button on the main form 
 that will trigger the submit event in all three components 
 simultaneously, I would think -- I just can't figure out how to do it.
 
 Thanks for any help you can offer,
 
 Laurence MacNeill
 Mableton, Georgia, USA





[flexcoders] Re: What's wrong with this linechart?

2009-05-14 Thread Trefalgar Bain
I ended up doing this ...

ca3a.splice.apply(ca3a,[ca3a.length,0].concat(data[obj]));
ca3a.sortOn(loadval);
ca3.dataProvider = ca3a;

... for each possible axis. Seems like there should be an easier way to do 
this, without having to define temporary holding variables. This solution also 
ends up with duplicates (since each line is added separately, they should at 
some point have horizontal values that are the same), which causes the graph to 
do all sorts of fun things.

T

--- In flexcoders@yahoogroups.com, Trefalgar Bain trefal...@... wrote:

 --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote:
  Give the CategoryAxis an id...
  mx:CategoryAxis id=ca categoryField=loadval/
  then, in Actionscript, give it a dataProvider...
  ca.dataProvider = testdata;
 
 Absolutely right. That's annoying ;)
 
 I'm now trying to figure out how to dynamically take the current CatagoryAxis 
 dataProvider and append additional data to it. Probably my fault for not 
 posting the entire context ...
 
 private function graphSetup(data:Object, chart:String):void {
   for ( var obj:Object in data ) {
   var ls:LineSeries = new LineSeries();
   ls.dataProvider = data[obj];
   ls.yField = val;
   ls.xField = loadval;
   ls.displayName = obj.valueOf();
   ls.setStyle('itemRenderer', new 
 ClassFactory(CircleItemRenderer));
   var currentSeries:Array = linechart1.series;
   currentSeries.push(ls);
   linechart1.series = currentSeries;
   ca1.dataProvider.push(data[obj]);
   }
 }
 
 ca1.dataProvider.push doesn't work, it actually ends up setting 
 ca1.dataProvider to null. I can't do this, either ...
 
 var moo:Array = ca1.dataProvider;
 moo.push(data[obj]);
 ca1.dataProvider = moo;
 
 If I ... ca1.dataProvider = data[obj] ... it works but for just a single line 
 series.
 
 Hrm.
 
 Tref





Re: [flexcoders] Loading Modules in Separate Application Domains

2009-05-14 Thread Manish Jethani
On Fri, May 15, 2009 at 2:04 AM, colin.shreffler cshreff...@gmail.com wrote:

 ModuleManager.getModule(_url).load(new ApplicationDomain(), 
 SecurityDomain.currentDomain)

 As soon as I do this however, I am getting the following error:

 SWF is not a loadable module

 If I use ModuleManager.getModule(_url).load() it works fine but then I have 
 the issue of each module running in a shared ApplicationDomain which isn't 
 what I want.

It doesn't look like this is supported: you can't load the module in a
separate application domain (which makes me wonder why the option
exists at all).

http://www.mail-archive.com/flexcoders@yahoogroups.com/msg80560.html

Manish


RE: [flexcoders] Confused about modules using embedded fonts Flex 3.3

2009-05-14 Thread Alex Harui
The key is that there must be code in the same SWF as the font that generates 
the class that will display the text (which might be from the module).  This 
should be automatic for any Flex control, but if you're using itemrenderers 
and/or classFactories you'll probably need to use ContextualClassFactory 
instead.

Alex Harui
Flex SDK Developer
Adobe Systems Inc.http://www.adobe.com/
Blog: http://blogs.adobe.com/aharui

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of Greg Hess
Sent: Thursday, May 14, 2009 11:02 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Confused about modules using embedded fonts Flex 3.3





Hi Folks,

I have a modular application built on Flex 3.3 SDK and have just
introduced some embedded fonts and unfortunately all text is blank in
the modules that attempt to use the embedded font. Popup windows
displayed from my module shell(main application) work fine. Searching
the archive and web I have found much discussion in relation to
ActionScript 2 but not much regarding Flex 3 other than this adobe
bug(3.2 sdk) http://bugs.adobe.com/jira/browse/SDK-18254 that has the
same result (blank text), but in my testing my modules call to
Font.enumerateFonts(false); does return my list of embedded fonts so I
don't think the work around to register the fonts will help.

Does anyone know how to allow a module to use fonts embedded in the
main application in Flex 3.3?

Do I have to register the embedded font when initializing each module?

If my fonts are listed in Font.enumerateFonts(false) does that mean
registration is already complete?

Any help is much appreciated!

Greg



RE: [flexcoders] extract function name from Function instance?

2009-05-14 Thread Alex Harui
Example on my blog

Alex Harui
Flex SDK Developer
Adobe Systems Inc.http://www.adobe.com/
Blog: http://blogs.adobe.com/aharui

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of Mic
Sent: Thursday, May 14, 2009 12:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] extract function name from Function instance?





private var sqlCall:Function;
sqlCall = sql_sel_hier_sls;

private function sqlSwitch():void{
var identifyFunction:String = [extract funct name from sqlCall];
sqlCall();

}

private function sql_sel_hier_sls():void{

}

How do I extract the function name from the Function instance for 
debugging/tracing? TIA,

Mic.



RE: [flexcoders] Loading Modules in Separate Application Domains

2009-05-14 Thread Alex Harui
The option exists so you can choose a child topology (default) or same domain 
toplogy (RSL).  Yes that means you can stick in parameters for a separate 
appdom, but since modules must share interfaces, you can hopefully see why that 
will never work.

You can check out the Marshall Plan if you have a strong reason to use separate 
appdoms.

Alex Harui
Flex SDK Developer
Adobe Systems Inc.http://www.adobe.com/
Blog: http://blogs.adobe.com/aharui

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of Manish Jethani
Sent: Thursday, May 14, 2009 4:10 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Loading Modules in Separate Application Domains





On Fri, May 15, 2009 at 2:04 AM, colin.shreffler 
cshreff...@gmail.commailto:cshreffler%40gmail.com wrote:

 ModuleManager.getModule(_url).load(new ApplicationDomain(), 
 SecurityDomain.currentDomain)

 As soon as I do this however, I am getting the following error:

 SWF is not a loadable module

 If I use ModuleManager.getModule(_url).load() it works fine but then I have 
 the issue of each module running in a shared ApplicationDomain which isn't 
 what I want.

It doesn't look like this is supported: you can't load the module in a
separate application domain (which makes me wonder why the option
exists at all).

http://www.mail-archive.com/flexcoders@yahoogroups.com/msg80560.html

Manish



RE: [flexcoders] Focus on itemRenderer sub-components in a non editable list

2009-05-14 Thread Alex Harui
A List must be editable in order for renderers to get focus.  Is there a reason 
you don't want to set editable=true?  There's probably a way around it, but I 
think it will be lots of work.

Alex Harui
Flex SDK Developer
Adobe Systems Inc.http://www.adobe.com/
Blog: http://blogs.adobe.com/aharui

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of JérémyR
Sent: Thursday, May 14, 2009 12:04 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Focus on itemRenderer sub-components in a non editable 
list





Hi,

This problem seems very simple but despite of my searches, I didn't find any
solution...
I have a non editable List with custom Canvas item renderer. This Canvas
contains 4 buttons. And I want the user to be able to focus each button with
TAB key.

A lot of posts talks about similar problems but it seems there is no
solution (for non editable list - Alex Harui wrote an excellent article on
his blog but for a DataGrid component but with editable set to true)...

Is there really no solution? (if it is the case, I think it deserves a bug
in Adobe Bug system cause it completely breaks application accessibility...)

Thanks for your reply.
--
View this message in context: 
http://www.nabble.com/Focus-on-itemRenderer-sub-components-in-a-non-editable-list-tp23546945p23546945.html
Sent from the FlexCoders mailing list archive at Nabble.com.



[flexcoders] Re: Eclipse Crashing

2009-05-14 Thread Geoffrey
So I tried a few things and it seems a little better now.

1. I combined a couple projects, so now I have one main project, and 25 library 
projects.

2. I removed as many unneeded Flex Library SWCs from the SDK entry in the 
Library Path tab of each project.  This included all the automation stuff for 
every project, and rpc, datavisualization, utilities, and fds stuff for most of 
the other projects.

3. I updated the eclipse.ini to the following:
-showsplash
org.eclipse.platform
-framework
plugins\org.eclipse.osgi_3.4.3.R34x_v20081215-1030.jar
-vm
C:\Program Files (x86)\Java\jdk1.6.0_13\bin\javaw.exe
-vmargs
-Xms1G
-Xmx1G
-XX:PermSize=128M
-XX:MaxPermSize=256M
-XX:+UseParallelGC
-Dosgi.requiredJavaVersion=1.5
-Djava.net.preferIPv4Stack=true

* Setting PermSize/MaxPermSize to 256M/512M did not seem to help or hinder.  
Anyone know why I can't set -Xmx to a value larger than 1G?  Eclipse won't even 
start.

In general it seems to be fairly stable.  Changes to our ValueObject project 
(used by almost every other project) take 2:30 to compile, but has not crashed 
as of yet.

Thanks for the suggestions!
~Geoff


--- In flexcoders@yahoogroups.com, Geoffrey gtb...@... wrote:

 I'll certainly try everyone's suggestions when I get back from vacation. :D
 
 Thanks for everyone's help/advise.
 
 --- In flexcoders@yahoogroups.com, Kevin F. Benz kbenz@ wrote:
 
  Oh. I thought you can get past the module dependency by linking the SWC and
  binding the source to the swc in the home project allowing you to close the
  library projects.
  
   
  
  From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
  Behalf Of Kevin F. Benz
  Sent: Thursday, April 30, 2009 3:23 PM
  To: flexcoders@yahoogroups.com
  Subject: RE: [flexcoders] Eclipse Crashing
  
   
  
  
  
  
  
  
  Here are few things I have found.  They may help, they may not.
  
   
  
  Ultimately I find that projects under version control have been my issues.
  Let me explain. I have found (at least through SDK 3.0 and 3.1) that an
  upgrade to the SDK causes the local project file to go through some update
  but when a later SCM update occurs, you get an old versions project files
  and crasho. The new SDK is expecting a known project file and gets
  hair-balled by what came in from source control. I have tried cutting and
  pasting another copy, reverting, trying to fix by hand, etc but in the end,
  I find that I have had to create a new blank project and copy all the files
  (except for the project files) and reconfigure the library path, and the
  rest of the goo. You will need the new library properties, and other . (dot)
  files as well from the new project. Bring in the old ones and you die. I'll
  bet you can close each of your projects and the crashes will stop when the
  offending project(s) is closed. 
  
   
  
  The list of source files to be compiled can be corrupted.  I believe this is
  the real issue with reverting project files but don't have a good handle on
  why - but you should try disabling incremental compilation.  Add
  -incremental=false to the compiler settings in the Flex Compiler tab of
  the Properties.  This will effectively ignore the .cache files.  Compile
  times will be longer - but hopefully that is offset by having a stable
  environment. Flex uses cache files to persist previously compiled objects.
  And a clean build doesn't necessarily refresh the cache files.  It is benign
  to backup and remove those .cache files. They live in a few places so you
  will need to find the
  .metadata/.plugins/org.eclipse.core.resources/.projects directory and within
  that directory, you will find one for every Flex project. For example
  ./metadata/.plugins/org.eclipse.core.resoures/.projects/MYPROJECT/com.adobe.
  flexbuilder.project/MyProject.cache. For each release, I like to clean these
  out regardless.
  
  K
  
   
  
   
  
  From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
  Behalf Of Geoffrey
  Sent: Thursday, April 30, 2009 11:30 AM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Eclipse Crashing
  
   
  
  
  
  
  
  
  
  Recently, FB(Eclipse) keeps crashing on me. I've looked all over the place
  for solutions, have tried many, but none seem to do the trick.
  
  My current setup is:
  Eclipse 3.4.2 (M20090211-1700)
  FB 3.0.2.214193
  Flex SDK 3.3
  JDK 1.6.0_13
  
  My eclipse.ini is:
  -showsplash
  org.eclipse.platform
  -framework
  plugins\org.eclipse.osgi_3.4.3.R34x_v20081215-1030.jar
  -vm
  C:\Program Files (x86)\Java\jdk1.6.0_13\bin\javaw.exe
  -vmargs
  -Xms1024M
  -Xmx1024M
  -XX:PermSize=256M
  -XX:MaxPermSize=512M
  -XX:+UseParallelGC
  -Dosgi.requiredJavaVersion=1.5
  -Djava.net.preferIPv4Stack=true
  -Dcom.sun.management.jmxremote
  
  Our Flex application is a collection of 30 projects (one main one and 29
  flex library projects). All have to be open at the same time or else you get
  build(dependency) errors.
  
  There's a few projects that are 

[flexcoders] Re: Flex Framework Cache Statistics

2009-05-14 Thread Bjorn Schultheiss
good question.
I would also like to know

--- In flexcoders@yahoogroups.com, Nayan Savla nayansa...@... wrote:

 Hi All,
 
 I am just wondering if there is some data on the percentage of Flash
 players which would already have a the flex framework cache. Our
 application without the cache is 456Kb and when i use framework
 caching its 256Kb and the swz file is around 500kb.
 
 In this scenario if the user doesn't already have the framework
 cached, it won't make any sense to use framework caching. We don't
 have a high percentage of returning users yet.
 
 So if there is any data which gives an idea about the percentage of
 Flash players out there with the Flex framework cache, it will be
 really helpful.
 
 Thank you
 Nayan





[flexcoders] dumb question gumbo beta...

2009-05-14 Thread grimmwerks
Where's the visuals for the CSS stuff? What am I missing?

I'm *sure* I'm doing something stupid because gumbo was supposed to be  
even *more* integrated with the visual/css side; so what am I missing?

Danke


Re: [flexcoders] Re: Flex Framework Cache Statistics

2009-05-14 Thread Matt Chotin
Hi,

We are not publishing data on this right now, but in general adoption of the 
cached framework appears to be going well.

Matt
Flex team


On 5/14/09 5:10 PM, Bjorn Schultheiss bjorn.mailingli...@gmail.com wrote:






good question.
I would also like to know

--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Nayan 
Savla nayansa...@... wrote:

 Hi All,

 I am just wondering if there is some data on the percentage of Flash
 players which would already have a the flex framework cache. Our
 application without the cache is 456Kb and when i use framework
 caching its 256Kb and the swz file is around 500kb.

 In this scenario if the user doesn't already have the framework
 cached, it won't make any sense to use framework caching. We don't
 have a high percentage of returning users yet.

 So if there is any data which gives an idea about the percentage of
 Flash players out there with the Flex framework cache, it will be
 really helpful.

 Thank you
 Nayan








[flexcoders] does anyone have a list of the top RIA development firms in Los Angeles or CA?

2009-05-14 Thread brandonh72
does anyone have a list of the top RIA development firms in Los Angeles?

can you email me some names or refferals?

thanks a bunch,

brandon

brand...@gmail.com



Re: [flexcoders] Re: Form with 3 Custom Components...

2009-05-14 Thread Laurence MacNeill
I guess my problem could be summed up like this:

How do you get a child to listen to events that occur in the 
parent?  The button-click will take place in the parent form, but 
adding an EventListener to the child doesn't seem to do anything, 
even if I set bubbles=true when I create the event.  So how do you 
set an EventListener to listen for events in the parent?


Thanks,

Laurence MacNeill
Mableton, Georgia, USA



Re: [flexcoders] Re: Form with 3 Custom Components...

2009-05-14 Thread Laurence MacNeill
At 05:32 PM 5/14/2009, you wrote:



You can just handle the click event from your button and in the 
handler function pull the necessary information out of your 3 custom 
components and then do what you want with it.

Right -- but don't I have to have those components dispatch their own 
events in order to pull data from them?  At least, as I understand 
it, that's the best practice.  What you're telling me to do (if I'm 
understanding) would tightly couple my form with the components, 
because I'd be accessing stuff that's supposed to be internal to the 
components, right?

The way I understand it, I need to get the components to dispatch an 
event and pass a Value Object back to my main form.  But I need it to 
happen when I click a button on the form -- so I have no idea where 
to put the Event Listener inside the components to cause them to 
dispatch their events.  That's where I'm getting confused.

Thanks,

Laurence MacNeill
Mableton, Georgia, USA



Re: [flexcoders] Re: Flex Framework Cache Statistics

2009-05-14 Thread guy
If it was going *that* well you'd publish some stats.

This is a REALLY IMPORTANT issue to many of us.

Please help us help you by finding a way of pushing the frameworks out  
so that we don't have to cop the blame from our employers, customers  
and users about why the binary is suddenly taking longer to download.

The whole concept is great, but the support and follow-through from  
Adobe has been too slow. It's hard to understand why when you have an  
automatically updating plugin that could be preemptively loading this  
stuff for us.

Guy


Quoting Matt Chotin mcho...@adobe.com:

 Hi,

 We are not publishing data on this right now, but in general   
 adoption of the cached framework appears to be going well.

 Matt
 Flex team


 On 5/14/09 5:10 PM, Bjorn Schultheiss bjorn.mailingli...@gmail.com wrote:






 good question.
 I would also like to know

 --- In flexcoders@yahoogroups.com   
 mailto:flexcoders%40yahoogroups.com , Nayan Savla nayansa...@...  
  wrote:

 Hi All,

 I am just wondering if there is some data on the percentage of Flash
 players which would already have a the flex framework cache. Our
 application without the cache is 456Kb and when i use framework
 caching its 256Kb and the swz file is around 500kb.

 In this scenario if the user doesn't already have the framework
 cached, it won't make any sense to use framework caching. We don't
 have a high percentage of returning users yet.

 So if there is any data which gives an idea about the percentage of
 Flash players out there with the Flex framework cache, it will be
 really helpful.

 Thank you
 Nayan











This message was sent using IMP, the Internet Messaging Program.



[flexcoders] Re: Form with 3 Custom Components...

2009-05-14 Thread foobone9

If you're that worried about it have your subcomponents implement a common 
interface to act as the contract between them and the parent which provides the 
api for the parent to pull the data out.

--- In flexcoders@yahoogroups.com, Laurence MacNeill lmacne...@... wrote:

 At 05:32 PM 5/14/2009, you wrote:
 
 
 
 You can just handle the click event from your button and in the 
 handler function pull the necessary information out of your 3 custom 
 components and then do what you want with it.
 
 Right -- but don't I have to have those components dispatch their own 
 events in order to pull data from them?  At least, as I understand 
 it, that's the best practice.  What you're telling me to do (if I'm 
 understanding) would tightly couple my form with the components, 
 because I'd be accessing stuff that's supposed to be internal to the 
 components, right?
 
 The way I understand it, I need to get the components to dispatch an 
 event and pass a Value Object back to my main form.  But I need it to 
 happen when I click a button on the form -- so I have no idea where 
 to put the Event Listener inside the components to cause them to 
 dispatch their events.  That's where I'm getting confused.
 
 Thanks,
 
 Laurence MacNeill
 Mableton, Georgia, USA





Re: [flexcoders] Re: Job Offer ! - WTF?!

2009-05-14 Thread Sam Lai
The factory workers must be over the moon that they make the same as
their managers!

On 5/15/09, Wally Kolcz wko...@isavepets.com wrote:
 How funny. pay to apply and make less than most of us already do.

 
 From: valdhor valdhorli...@embarqmail.com
 Sent: Thursday, May 14, 2009 7:22 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Job Offer !

 Amy

 Has someone stolen your identity or are you really spamming the list with
 job offers that have nothing to do with Flex??

 --- In flexcoders@yahoogroups.com, Tiba industry amyblankens...@...
 wrote:





 Tiba industry international is offering a wide range of job offers for
 people living in

 united State,Canada,United Kingdom,South America,Australia and Europe,

 if you are experienced and qualified in the category stated below,

 Please tender your resume at

 care...@... or visit our website

 http://www.tibaindustry.com/jobs.html for further details.





 * ADMIN ASSISTANT

 * ACCOUNTANT

 * HEALTHCARE WORKERS

 * FACTORY WORKERS

 * MANAGERS

 * MARKETING

 * HUMAN RESOURCES

 * MERCHANDISING

 * STORE KEEPERS

 * DRIVERS

 * SUPERVISORS

 * MECHANICAL ENGINEER

 * SECRETARY





 BENEFITS





 * Salary: Annual gross starting salary of $63,500, paid in biweekly
 installments by your choice of check or direct deposit

 * Performance Bonuses: Up to three percent of your annual gross salary,
 paid quarterly by your choice of check or direct deposit

 * Stock Options: 500 Acme stock options in your first year, fully vested
 in four years at the rate of 125 shares per year

 * Benefits: Standard, Acme-provided benefits for salaried-exempt
 employees, including the following

 o 401 retirement account

 o Annual stock options

 o Child daycare assistance

 o Education assistance

 o Health, dental, life and disability insurance

 o Profit sharing

 o Sick leave

 o Vacation and personal days



 Tiba industry international



 http://www.tibaindustry.com/jobs.html







-- 
Sent from my mobile device


Re: [flexcoders] Is this very bad?

2009-05-14 Thread Sam Lai
I've gotten something similar occasionally too. I think the Java
runtime has just gotten itself confused; usually restarting FB3 fixes
it.

On 5/15/09, markgoldin_2000 markgoldin_2...@yahoo.com wrote:
 When I open Builder:
 Error opening the editor.
 Assertion failed:





 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location:
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links





-- 
Sent from my mobile device


Re: [flexcoders] Job Offer !

2009-05-14 Thread Sam Lai
Maybe it has just taken the email addresses from the publicly
available archives and faked the email headers?

In that case it's more annoying than a security breach.

On 5/15/09, Amy amyblankens...@bellsouth.net wrote:
 --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote:

 Amy

 Has someone stolen your identity or are you really spamming the list with
 job offers that have nothing to do with Flex??


 I confess...someone has stolen my identity.



 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location:
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links





-- 
Sent from my mobile device


[flexcoders] Problems with getChildByName();

2009-05-14 Thread Laurence MacNeill
I have a form that has several dynamically-created children.  I'm 
having trouble using getChildByName() to retrieve data from them.

Specifically, I create several VBoxes, and in each of those VBoxes I 
create children (a label a textInput).  Obviously, the TextInput that 
I'm trying to get the data from is a child of the VBox, not the 
'this', right?   So it should be something like 
'this.VBox.textInput'  right?  So I'd getChildByName the VBox first, 
then use the result of that to getChildByName the TextInput that's 
the child of the VBox, right?

Well, it's not working.  when I try to this.getChildByName() the 
VBox, I get null instead.

Here's my code, in case I haven't confused you enough.  It fails with 
a 'cant access property of null object' or something like that.

public function resetFormHandler(): void {
 var tempVBox:VBox;
 var tempTextInput:TextInput;
 var tempComboBox:ComboBox;
 var tempCheckBox:CheckBox;
 for (var i:int = 0; idemoList.length; i++) {
 tempVBox = this.getChildByName(vbox + 
demoList[i].name) as VBox;
 tempTextInput = tempVBox.getChildByName(input + 
demoList[i].name) as TextInput;
 tempTextInput.text = ;
 }
}

I really don't see why this isn't working -- the VBox was added to 
the form with the this.addChild() method.  So this.getChildByName 
should work to get it back right?  I'm completely confused.  Unless 
getChildByName *doesn't* use the ID field of the VBox to find 
it...  In which case, I have no clue how I'm gonna find it again.

HELP!  :-)


Laurence MacNeill
Mableton, Georgia, USA



RE: [flexcoders] Re: 2 Questions abot TextField in ActionScript

2009-05-14 Thread Gordon Smith
My hunch is that flash.filters.ConvolutionFilter could be used to accomplish 
that kind of halo effect around text characters, if you can figure out, or 
Google, the right convolution matrix to use. It might be easier to first try 
our flash.filters.GlowFilter.

Gordon Smith
Adobe Flex SDK Team

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of ACasualObserver
Sent: Thursday, May 14, 2009 7:38 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: 2 Questions abot TextField in ActionScript





Thanks.

I want halo as it appears on the Figure A on 
http://articles.techrepublic.com.com/5100-10878_11-6118091.html