[flexcoders] Hide data tips on one series only

2007-12-12 Thread Sreejith Unnikrishnan
Hi,

If I use 2 series on one chart - say a line series with a plot series, how
can I prevent the datatips from showing when I set *showAllDataTips *to *true
*in the LineChart control?

mx:LineChart dataProvider={d}
*showAllDataTips=true*dataTipFunction=setdp
..
mx:series
mx:LineSeries xField=Time yField=Score /
mx:PlotSeries xField=Time yField=Score /
/mx:series
/mx:LineChart

Regards
-- 
Sree


Re: [flexcoders] Tiling a Background Image

2007-04-05 Thread Sreejith Unnikrishnan
Set application background alpha to 0
In the wrapper HTML, set the background image to repeat

Sree

Alex Harui wrote:

 I'd make a custom border class.

 
 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
 *On Behalf Of *Paul Whitelock
 *Sent:* Wednesday, April 04, 2007 11:50 AM
 *To:* flexcoders@yahoogroups.com
 *Subject:* [flexcoders] Tiling a Background Image

 I've just started work on the UI/Graphic Design for a Flex application
 and I need to tile a seamless image as the application's background.
 I've found that while it is possible to specify an image for the
 application background, I see no way to tile the image.

 I assume that I'll need to write my own code to tile the image, but
 could someone perhaps give me a tip as to where I should begin
 looking? Do I need to do something like subclass the Application class
 or is there some simple way to insert a custom component so that it
 becomes the application's background?

 Thanks!

 Paul

  



Re: [flexcoders] Re: MXML schema

2007-04-04 Thread Sreejith Unnikrishnan
Thats 2005 and for 1.5.
If you need to use eclipse, you should use the official plugin.
And if you need to set it up for FDS, check out 
http://weblogs.macromedia.com/pmartin/archives/2006/08/fds_plugin_for.cfm


Dexter18 wrote:


 here is a smal tuto on how to setup eclipse to work with mxml

 http://www.darronschall.com/weblog/archives/000182.cfm 
 http://www.darronschall.com/weblog/archives/000182.cfm

 carsten

 --- In flexcoders@yahoogroups.com 
 mailto:flexcoders%40yahoogroups.com, Jock [EMAIL PROTECTED] wrote:
 
  I've read in several articles, eg...
 
  * http://www.adobe.com/ap/products/flex/productinfo/tooling/ 
 http://www.adobe.com/ap/products/flex/productinfo/tooling/
  * http://www.adobe.com/devnet/flex/articles/paradigm.html 
 http://www.adobe.com/devnet/flex/articles/paradigm.html
 
  ...that there is a schema for mxml that can be used in various IDEs.
  Where can I find this schema? I have downloaded the Flex 2 SDK but
  it's not to be found anywhere.
 
  Many thanks,
 
  Gordon
 

  



Re: [flexcoders] Re: MXML schema

2007-04-04 Thread Sreejith Unnikrishnan
:-)
I didnt realize that angle!

Tom Chiverton wrote:
 On Wednesday 04 Apr 2007, Sreejith Unnikrishnan wrote:
   
 Thats 2005 and for 1.5.
 If you need to use eclipse, you should use the official plugin.
 

 Unless you can't afford it, in which case *someone* ( :-) ) has written an 
 XSD 
 to plug into Eclipe's WebTools.

   



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

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

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

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

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


[flexcoders] [Apollo] Slow rendering of maps

2007-03-19 Thread Sreejith Unnikrishnan
I was running the Maptacular application and I noticed that the map 
tiles was loading very slowly than it would on a browser. Also, the 
images seem to be ghost-imaged in the window, I mean, while you pan 
there images don't refresh quickly.

Is there a downside to trying to loading images with Apollo? Or is it 
just a performance problem that will be looked into?

~sree


Re: [flexcoders] Re: and I thought Adobe was a professional company. Whats going on with the upgrade

2007-01-06 Thread Sreejith Unnikrishnan
NOTE:  One place you will not yet find the 2.0.1 docs is ... 
livedocs.macromedia.com!  But hopefully LiveDocs will be getting the updated 
docs soon ;-)

I guess it is ... but the link is not published ... tried changing 2 to 201 and 
it worked ... maybe it is not ready for release  but anyways ...

http://livedocs.macromedia.com/flex/201/langref/index.html


Re: [flexcoders] Re: and I thought Adobe was a professional company. Whats going on with the upgrade

2007-01-06 Thread Sreejith Unnikrishnan
NOTE:  One place you will not yet find the 2.0.1 docs is ... 
livedocs.macromedia.com!  But hopefully LiveDocs will be getting the updated 
docs soon ;-)

I guess it is ... but the link is not published ... tried changing 2 to 201 and 
it worked ... maybe it is not ready for release  but anyways ...

http://livedocs.macromedia.com/flex/201/langref/index.html


Re: [flexcoders] Multi-select not happening! - bug?

2006-11-02 Thread Sreejith Unnikrishnan





HiJoan,

I put a sample that can be accessed at http://indesg.com/flexBugs/ListExample.swf

+++

The code is below:
?xml version="1.0"?mx:Application 
xmlns:mx="http://www.adobe.com/2006/mxml" 
width="100%"height="100%" creationComplete="initApp();" 
viewSourceURL="srcview/index.html"mx:Script![CDATA[import 
mx.controls.Text;import 
mx.events.DragEvent;private function initApp():void 
{srclist.dataProvider = 
['Reading', 'Television', 
'Movies'];}private 
function 
popSelectItems(event:Event):void{var 
theSelectItems:Array = new 
Array(srclist.selectedItems);si.text = 
theSelectItems.toString();}

private function 
doDragDrop(event:DragEvent):void{trace 
("Drag 
Dropped");}]]/mx:Script 
mx:XMLList id="treeData" 
node label="Mail 
Box" 
node 
label="Inbox" 
node 
label="Marketing"/ 
node label="Product 
Management"/ 
node 
label="Personal"/ 
/node 
node 
label="Outbox" 
node 
label="Professional"/ 
node 
label="Personal"/ 
/node 
node 
label="Spam"/ 
node label="Sent"/ 
/node  
/mx:XMLListmx:HBoxmx:VBoxmx:Label 
text="Available Activities"/mx:List id="srclist" 
width="200" height="200" 
allowMultipleSelection="true" dragEnabled="true" 
change="popSelectItems(event)"//mx:VBoxmx:VBoxmx:Label 
text="Multi-select happens in IE, not in Mozilla, Opera ..." 
/mx:TextArea id="si" width="200" height="200" 
//mx:VBox/mx:HBoxmx:HBoxmx:VBox 
backgroundColor="#ff"mx:Label text="Drag items 
from top - works !" /mx:List width="200" 
height="200" dropEnabled="true" 
//mx:VBoxmx:VBox width="200" 
height="200"mx:Label text="Tree does not recognize 
dragDrop ! :-(" /mx:Tree id="myTree" width="100%" 
height="100%" dropEnabled="true" 
dragDrop="doDragDrop(event)" 
dragEnabled="true"labelField="@label" 
showRoot="false" 
dataProvider="{treeData}"//mx:VBox/mx:HBox/mx:Application

+++

Thanks
Sree



  - Original Message - 
  From: 
  Joan Lafferty 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, November 02, 2006 4:06 
  AM
  Subject: RE: [flexcoders] Multi-select 
  not happening! - bug?
  
  
  
  
  Sreejith,
  
  I ran your bugfile 
  and it seems to run fine for me in Firefox 2.0. Do you want to send the swf 
  and mxml file to me offline? Also, please confirm whether you are using a Mac, 
  Windows or Linux machine.
  
  Thanks,
  Joan
  
  
  
  
  
  From: [EMAIL PROTECTED]ups.com 
  [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of Sreejith 
  UnnikrishnanSent: Wednesday, 
  November 01, 2006 1:50 PMTo: 
  [EMAIL PROTECTED]ups.comSubject: Re: [flexcoders] Multi-select 
  not happening! - bug?
  
  
  
  
  
  Well, I just noticed that the 
  multiSelect does not happen in Firefox 2.0.
  
  
  
  It works in IE 
  though.
  
  
  
  Is this a 
  bug?
  
  
  

- Original Message - 


From: Sreejith 
Unnikrishnan 

To: [EMAIL PROTECTED]ups.com 


Sent: 
Thursday, November 02, 2006 12:27 AM

Subject: 
**SL-JUNK** [flexcoders] Multi-select not 
happening!




The multiSelect does not seem to 
beworking. Any help?



Thanks

=

?xml 
version="1.0"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
width="500"height="200" borderStyle="solid" 
creationComplete="initApp();"mx:Script![CDATA[private 
function initApp():void {srclist.dataProvider = 
['Reading', 'Television', 
'Movies'];destlist.dataProvider 
=[];}]]/mx:Scriptmx:HBoxmx:VBoxmx:Label 
text="Available Activities"/mx:List id="srclist" 
height="100" 
allowMultipleSelection="true"dragEnabled="true"//mx:VBoxmx:VBoxmx:Label 
text="Activities I Like"/mx:List id="destlist" 
height="100" 
dropEnabled="true"//mx:VBox/mx:HBox/mx:Application


  
  
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






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

  




__,_._,___



Re: [flexcoders] Multi-select not happening! - bug?

2006-11-01 Thread Sreejith Unnikrishnan





Well, I just noticed 
that the multiSelect does not happen in Firefox 2.0.

It works in IE though.

Is this a bug?


  - Original Message - 
  From: 
  Sreejith 
  Unnikrishnan 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, November 02, 2006 12:27 
  AM
  Subject: **SL-JUNK** [flexcoders] 
  Multi-select not happening!
  
  
  
  The multiSelect does not seem to beworking. 
  Any help?
  
  Thanks
  =
  ?xml 
  version="1.0"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
  width="500"height="200" borderStyle="solid" 
  creationComplete="initApp();"mx:Script![CDATA[private 
  function initApp():void {srclist.dataProvider = 
  ['Reading', 'Television', 
  'Movies'];destlist.dataProvider 
  =[];}]]/mx:Scriptmx:HBoxmx:VBoxmx:Label 
  text="Available Activities"/mx:List id="srclist" 
  height="100" 
  allowMultipleSelection="true"dragEnabled="true"//mx:VBoxmx:VBoxmx:Label 
  text="Activities I Like"/mx:List id="destlist" 
  height="100" 
  dropEnabled="true"//mx:VBox/mx:HBox/mx:Application
  
  
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






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

  




__,_._,___



Re: [flexcoders] Multi-select not happening! - bug?

2006-11-01 Thread Sreejith Unnikrishnan





Well, I just noticed 
that the multiSelect does not happen in Firefox 2.0.

It works in IE though.

Is this a bug?


  - Original Message - 
  From: 
  Sreejith 
  Unnikrishnan 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, November 02, 2006 12:27 
  AM
  Subject: **SL-JUNK** [flexcoders] 
  Multi-select not happening!
  
  
  
  The multiSelect does not seem to beworking. 
  Any help?
  
  Thanks
  =
  ?xml 
  version="1.0"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
  width="500"height="200" borderStyle="solid" 
  creationComplete="initApp();"mx:Script![CDATA[private 
  function initApp():void {srclist.dataProvider = 
  ['Reading', 'Television', 
  'Movies'];destlist.dataProvider 
  =[];}]]/mx:Scriptmx:HBoxmx:VBoxmx:Label 
  text="Available Activities"/mx:List id="srclist" 
  height="100" 
  allowMultipleSelection="true"dragEnabled="true"//mx:VBoxmx:VBoxmx:Label 
  text="Activities I Like"/mx:List id="destlist" 
  height="100" 
  dropEnabled="true"//mx:VBox/mx:HBox/mx:Application
  
  
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






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

  




__,_._,___



[flexcoders] Multi-select not happening!

2006-11-01 Thread Sreejith Unnikrishnan





The multiSelect does not seem to working. Any 
help?

Thanks
=
?xml version="1.0"?mx:Application 
xmlns:mx="http://www.adobe.com/2006/mxml" 
width="500"height="200" borderStyle="solid" 
creationComplete="initApp();"mx:Script![CDATA[private 
function initApp():void {srclist.dataProvider = 
['Reading', 'Television', 'Movies'];destlist.dataProvider 
=[];}]]/mx:Scriptmx:HBoxmx:VBoxmx:Label 
text="Available Activities"/mx:List id="srclist" 
height="100" 
allowMultipleSelection="true"dragEnabled="true"//mx:VBoxmx:VBoxmx:Label 
text="Activities I Like"/mx:List id="destlist" 
height="100" 
dropEnabled="true"//mx:VBox/mx:HBox/mx:Application

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






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

  




__,_._,___



[flexcoders] Multi-select not happening!

2006-11-01 Thread Sreejith Unnikrishnan





The multiSelect does not seem to beworking. 
Any help?

Thanks
=
?xml version="1.0"?mx:Application 
xmlns:mx="http://www.adobe.com/2006/mxml" 
width="500"height="200" borderStyle="solid" 
creationComplete="initApp();"mx:Script![CDATA[private 
function initApp():void {srclist.dataProvider = 
['Reading', 'Television', 'Movies'];destlist.dataProvider 
=[];}]]/mx:Scriptmx:HBoxmx:VBoxmx:Label 
text="Available Activities"/mx:List id="srclist" 
height="100" 
allowMultipleSelection="true"dragEnabled="true"//mx:VBoxmx:VBoxmx:Label 
text="Activities I Like"/mx:List id="destlist" 
height="100" 
dropEnabled="true"//mx:VBox/mx:HBox/mx:Application

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






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

  




__,_._,___



[flexcoders] Issue with Embedded font in TabNavigator

2006-10-01 Thread Sreejith Unnikrishnan





Embedded fonts are not reflected in the tabs of the 
TabNavigator.
What might I be doing wrong?

It is reflected fine elsewhere though!

@font-face {src: 
url(myFont.ttf);fontFamily: "myFont";}TabNavigator { 
font-family: "myFont";font-size: 
14;}.myTabs {font-family: 
"myFont";font-size: 14;}

Regards
Sree
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






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

  




__,_._,___



RE: [flexcoders] Stroke color on lineSeries - bug?

2006-08-31 Thread Sreejith Unnikrishnan






Thanks guys.
Searched the forum later and saw this post by 
Ely.

"You're using Beta 2? You need to set lineStroke, not 
stroke. The stroke property affects the color of the points on the line, not the 
line itself.

There's a bug in beta2 where the legend is currently 
rendering the stroke color, not the lineStroke color. So for now, set 
both. It will be fixed in the next drop.

Ely."


  - Original Message - 
  From: 
  Matt Horn 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, August 31, 2006 1:48 
  AM
  Subject: **SL-JUNK** RE: [flexcoders] 
  Stroke color on lineSeries - bug?
  
  
  For LineSeries, you use the stroke style property to define a style 
  forthe chart item's renderer. You use the lineStroke property to define 
  thestroke of the actual line segments. This is documented 
  here:"Defining strokes for LineSeries and AreaSeries"http://livedocs.macromedia.com/flex/2/docs/1262.html 
  hth,matt hornflex docs -Original 
  Message- From: [EMAIL PROTECTED]ups.com 
   [mailto:[EMAIL PROTECTED]ups.com] 
  On Behalf Of Sam Shrefler Sent: Wednesday, August 30, 2006 3:20 
  PM To: [EMAIL PROTECTED]ups.com 
  Subject: Re: [flexcoders] Stroke color on lineSeries - bug?  
  Sree:  I'm not sure if its a bug, an error in the documents, 
  or none  of the abover...  If you need to change teh 
  stroke color, I've successfully  used the following... 
   mx:LineSeries  mx:lineStroke 
  mx:Stroke color="0x33" weight="3"/ 
  /mx:lineStroke /mx:LineSeries   Hope 
  that helps  Sam  On 8/30/06, Sreejith 
  Unnikrishnan [EMAIL PROTECTED]com 
   mailto:[EMAIL PROTECTED]com  wrote: 
Applying the stroke color on lineSeries does not seem 
   to have any effect. Even in the examples provided by Adobe, 
  chart explorer  the colors though specified, dont work! 
   Is this a known bug, if it is one?  Regards 
  Sree 
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



[flexcoders] Stroke color on lineSeries - bug?

2006-08-30 Thread Sreejith Unnikrishnan





Applying the stroke color on lineSeries does not 
seem to have any effect.
Even in the examples provided by Adobe, chart 
explorer the colors though specified, dont work!

Is this a known bug, if it is one?

Regards
Sree
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



Re: **SL-JUNK** [flexcoders] disable I-beam in textArea, this should be an EASY ONE!

2006-07-24 Thread Sreejith Unnikrishnan





editable=false


  - Original Message - 
  From: 
  JClouz 
  To: flexcoders@yahoogroups.com 
  Sent: Monday, July 24, 2006 9:30 AM
  Subject: **SL-JUNK** [flexcoders] disable 
  I-beam in textArea, this should be an EASY ONE!
  
  
  
  I have textAreas that I don't want to be 
  selectable/display an I-beam on mouseOver. For the life of me I can't 
  figure out how to get rid of the i-beam on the mouseover over a 
  textArea. textArea doesn't have a 'selectable' attribute the way text 
  does. Any quick help? Thanks so much.
  
  Jamie
  MKCNSC, inc.
  
__._,_.___





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








   



  




  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



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

2006-07-20 Thread Sreejith Unnikrishnan





Let me try and put it as simple as 
possible.

Every request you make to a "data" server will 
require the "data" provider to provide explicit permission to access their data. 
This is done using a crossdomain.xml file that resides in the root of the "data" 
server.

For example, the following is the URL to access the 
MXNA feed.

http://weblogs.macromedia.com/mxna/xml/rss.cfm?query=byCategorylanguages=1categoryId=5

How can you check of you can access the data from 
this feed?
Type in http://weblogs.macromedia.com/crossdomain.xml

The result would be as below:
cross-domain-policy 
allow-access-from 
domain="*"//cross-domain-policy

Note that the "allow-access-from-domain" is 
specified as "*". This means "anybody" can access it.

Now, lets look at another example.
The following is the RSS feed for CNN Money 
Economy
http://rss.cnn.com/rss/money_news_economy.rss

Now, if you access http://rss.cnn.com/crossdomain.xml, 
you will find a list of URLs. ONLY these URLs can access data from that 
particular feed.

In your case, type in http://www.wopos.com/crossdomain.xml.
I see the result in Chinese(?), but I could see 
that the no crossdomain.xml policy file exists on the server.
This means you do not have explicit permission to 
access that webService.

So, for 2 reasons you would get the "'Security 
error accessing url'" error.

1. No crossdomain.xml policy file exists on the 
"data" server.
2. The crossdomain.xml does not permit you to 
access that data.

I hopemy understanding is 
correctandit clears your confusion.

Regards
Sree





  - Original Message - 
  From: 
  flexava 
  
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, July 20, 2006 3:56 
  PM
  Subject: [flexcoders] Confusion about 
  'Security error accessing url'
  
  
  I'm using flex builder to create a small flex project to learn how to 
  call web service in flex,but I encountered a problem really confusing 
  me.I created a new file called wstest.mxml and here's its 
  content:?xml version="1.0" 
  encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
  layout="vertical"mx:Script![CDATA[import 
  mx.controls.Alert;import mx.rpc.Fault;import 
  mx.rpc.events.FaultEvent;private function onFault(event : 
  FaultEvent) : void{var f : Fault = 
  event.fault;Alert.show(f.faultString,"Error");}private 
  function list() : void{ 
  adminService.getWeather.send();}]]/mx:Scriptmx:WebService 
  id="adminService" service="Weather" port="WeatherSoap" wsdl="http://www.wopos.com/webservice/weather.asmx?wsdl" 
  showBusyCursor="true"fault="onFault(event)"mx:operation 
  name="getWeather"mx:requestmCityÉϺ£/mCity/mx:request/mx:operation/mx:WebServicemx:Label 
  id="lbl" 
  text="{adminService.getWeather.lastResult}"/mx:Button 
  label="Call Web Service" 
  click="list()"//mx:ApplicationAfter building 
  finished,I ran the generated wstest.swf in the directory called bin,the 
  output directory of the flex project,everything is ok.But when I put the 
  swf file in another position, say, c:/. Then when I ran the swf file an 
  error message was returned saying 'Security error accessing url'. I can't 
  understand why this happened. It seems the swf file can only run under the 
  bin directory. Any one can help? Thanks!
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



Re: **SL-JUNK** Re: [flexcoders] Adobe Resources

2006-07-17 Thread Sreejith Unnikrishnan





Or download all the docs in the ZIP format 
available.


  - Original Message - 
  From: 
  Darron 
  J. Schall 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, July 18, 2006 12:30 
  AM
  Subject: **SL-JUNK** Re: [flexcoders] 
  Adobe Resources
  
  
  When the Flex 2 product line was released, the livedocs pages that were on 
  labs were migrated to the official livedocs site. Because there was such 
  a long beta period, you'll find that a lot of web sites linked to the labs 
  livedocs, and now those links are no longer valid.You can correct the 
  documentation by hand with a little bit of URL-rewriting. For example, 
  http://livedocs.macromedia.com/labs/1/flex/langref/index.html...becomes...http://livedocs.macromedia.com/flex/2/langref/index.htmlAll 
  of the livedocs links may not be as straightforward as the above to get them 
  working, but hopefully you get the idea. It would've been nice if the 
  URLs would automatically rewrite themselves to point to the new documentation 
  to avoid the numerous 404 errors that you may be 
  seeing-dflexnewbie06 wrote: 
  

I just need to say it seems that every page I need to access on the 
Adobe livedocs is missing...this is very frustrating. Sorry folks, 
needed to see if others are experiencing this also.
  
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



Re: [flexcoders] States within List

2006-06-22 Thread Sreejith Unnikrishnan





Thanks Jason,

I think I am looking for a way to set the 
itemFocusIn and itemFocusOut to make stateChange on the 
VBox!

Sree


  - Original Message - 
  From: 
  Jason Szeto 

  To: flexcoders@yahoogroups.com 
  Sent: Thursday, June 22, 2006 1:01 
  AM
  Subject: RE: [flexcoders] States within 
  List
  
  
  
  
  Sree,
  
   
  You can create an ItemRenderer based on any UIComponent and add your states 
  into that. Then assign that ItemRenderer to your List. I have started working 
  on an example. This is not complete because it doesn’t handle selecting an 
  item. But it should be a good starting point. 
  
  DynamicListItemRenderer.mxml:
  
  ?xml 
  version="1.0" encoding="utf-8"?
  mx:VBox 
  xmlns:mx="http://www.adobe.com/2006/mxml" borderStyle="solid" 
  backgroundColor="0xFF" 
   
  verticalGap="-2" cornerRadius="4" 
  borderColor="0x00"
   
  rollOver="currentState='expanded'" 
  rollOut="currentState=''"
   
  
   
  
   
  mx:transitions
   
  mx:Transition fromState="*" toState="*"
   
  mx:Resize target="{this}" 
  duration="300"/ 
  
   
  /mx:Transition
   
  /mx:transitions
   
  
   
  mx:states
   
  mx:State name="expanded"
   
  mx:AddChild creationPolicy="all"
   
  mx:Label text="{data.desc}"/
   
  /mx:AddChild
   
  /mx:State
   
  /mx:states
   
  
   
  mx:Label text="{data.label}"/
   
  
  /mx:VBox
  
  
  Main.mxml:
  
  ?xml 
  version="1.0" encoding="utf-8"?
  mx:Application 
  xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" width="600" height="500" 
  preinitialize="initList()"
   
  mx:Script
   
  ![CDATA[
   
  import mx.collections.ArrayCollection;
   
  
   
  [Bindable]
   
  public var 
  dataList:ArrayCollection; 
  
   
  
   
  public function initList():void
   
  {
   
  dataList = new ArrayCollection([{label:"One", desc:"The 
  US won the game on a last second 
  goal"},
   
  {label:"Two", desc:"The pressure was too much to 
  overcome"},
   
  {label:"Four", desc:"Look for exciting matchups"}]);
   
  }
   
  
   
  ]]
   
  /mx:Script
  
   
  mx:List id="mainList" itemRenderer="DynamicListItemRenderer" 
  variableRowHeight="true" 
   
  width="100%" height="300" 
  dataProvider="{dataList}"/
  /mx:Application
  
  
  
  
  
  From: 
  flexcoders@yahoogroups.com 
  [mailto:flexcoders@yahoogroups.com] On Behalf Of Sreejith 
  UnnikrishnanSent: Wednesday, 
  June 21, 2006 12:23 AMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] States within 
  List
  
  
  
  
  
  Is it possible to create states 
  within a List that changes height on select?
  
  
  
  Basically, I need to switch 
  between a simple and advanced view in a list only on 
  select.
  
  
  
  I tried using a Repeater in a 
  VBox, but navigating up and down using arrow keys is not possible(?) when 
  using a repeater.
  
  
  
  Any guidance is 
  appreciated.
  
  
  
  Thanks
  
  Sree
  
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



[flexcoders] States within List

2006-06-21 Thread Sreejith Unnikrishnan





Is it possible to create states within a List that 
changes height on select?

Basically, I need to switch between a simple and 
advanced view in a list only on select.

I tried using a Repeater in a VBox, but navigating 
up and down using arrow keys is not possible(?) when using a 
repeater.

Any guidance is appreciated.

Thanks
Sree
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



Re: [flexcoders] Re: Getting rid of rectangle on axis (FB2.3 charts)

2006-06-20 Thread Sreejith Unnikrishnan





mx:verticalAxisRenderermx:AxisRenderermx:axisStrokemx:Stroke 
color="#33" weight="1" 
//mx:axisStroke/mx:AxisRenderer/mx:verticalAxisRenderer




  - Original Message - 
  From: 
  sp0rarb3jd3r 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, June 20, 2006 1:54 
PM
  Subject: [flexcoders] Re: Getting rid of 
  rectangle on axis (FB2.3 charts)
  
  
  On the axis there is a different coloured underlying rectangle 
  (tocontrast the individual individual tick lines, I think). I would 
  likefor there to be only one straight line.To exemplify: http://www.itu.dk/people/urlgrey/example1.gif.Y! 
   Do you mean the axis itself? I'm not sure what rectangle 
  you're referring to.  E.   
    From: [EMAIL PROTECTED]ups.com 
  [mailto:[EMAIL PROTECTED]ups.com] 
  On Behalf Of sp0rarb3jd3r Sent: Monday, June 19, 2006 6:13 
  AM To: [EMAIL PROTECTED]ups.com 
  Subject: [flexcoders] Getting rid of rectangle on axis (FB2.3 charts) 
 Is there anyway to get rid of the little rectangle* 
  that forms around the vertical axis on the linecharts. I can't 
  seem to find the style that turns it off. If that is possible, 
  mind.  Y!  *It's the bit that is there to 
  ensure you spot the tick-lines.
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



[flexcoders] Slider TrackHighlight Bug

2006-05-31 Thread Sreejith Unnikrishnan





The TrackHighLight for a vertical slider seems to 
have a bug.

The higlight is not between the "center" of the 
thumbs. They seem to start and endjust after the thumb width. See 
screenshot below.



Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Removing track on slider

2006-05-30 Thread Sreejith Unnikrishnan





Not entirely. I have tried that, you will still see 
the inset borders of the track!

  - Original Message - 
  From: 
  Joan Tan 
  To: flexcoders@yahoogroups.com 
  Sent: Wednesday, May 31, 2006 6:32 
  AM
  Subject: RE: [flexcoders] Removing track 
  on slider
  
  
  You can try setting trackColors to the colors of your background so 
  that it appears that there is no track.
  
  Joan
  
  
  
  
  
  From: 
  flexcoders@yahoogroups.com 
  [mailto:flexcoders@yahoogroups.com] 
  On Behalf Of Sreejith 
  UnnikrishnanSent: Monday, 
  May 29, 2006 4:43 AMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Removing track on 
  slider
  
  
  Is it possible to remove the track 
  completely from a slider. I mean, I want just the sliders 
  !
  
  
  
  Thanks
  
  Sree
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Removing track on slider

2006-05-29 Thread Sreejith Unnikrishnan





Is it possible to remove the track completely from 
a slider. I mean, I want just the sliders !

Thanks
Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Reducing Initial Startup time in Flex 1.5

2006-05-22 Thread Sreejith Unnikrishnan





Use a creationPolicy on the container.
You could use "queued" if you want the rest of the 
app to load in the background or "none" if you want to load when explicitly 
requested.

- Original Message - 

  From: 
  Tom Chiverton 
  To: flexcoders@yahoogroups.com 
  Sent: Monday, May 22, 2006 4:44 PM
  Subject: Re: [flexcoders] Reducing 
  Initial Startup time in Flex 1.5
  On Friday 19 May 2006 08:08, web_manager_2004 wrote: 
  How can we reduce initial startup time of a flex application ? Suppose 
  we have a large application , and we want to reduce application 
  startup time. Is it possible that we are able to devide application 
  into multiple SWF files and (Initially ) only those SWF files are 
  downloaded on client which are initialy required ?Lookup runtime 
  shared libaries (RSL) in the docs.-- Tom 
  ChivertonThis 
  email is sent for and on behalf of Halliwells LLP.Halliwells LLP is a 
  limited liability partnership registered in England and Wales under registered 
  number OC307980 whose registered office address is at St James's Court Brown 
  Street Manchester M2 2JF. A list of members is available for inspection 
  at the registered office. Any reference to a partner in relation to Halliwells 
  LLP means a member of Halliwells LLP. Regulated by the Law 
  Society.CONFIDENTIALITYThis email is intended only for the use 
  of the addressee named above and may be confidential or legally 
  privileged. If you are not the addressee you must not read it and must 
  not use any information contained in nor copy it nor inform any person other 
  than Halliwells LLP or the addressee of its existence or contents. If 
  you have received this email in error please delete it and notify Halliwells 
  LLP IT Department on 0870 365 8008.For more information about 
  Halliwells LLP visit www.halliwells.com.We are pleased to announce 
  that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth 
  Company 
  Awards





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Number of records in a Datagrid

2006-05-16 Thread Sreejith Unnikrishnan





From a usability point of view, it would 
notbe a good ideato display 15,000 records.

Would you try this instead ...

  Fetch all the data, use lazy loader if necessary 
  and store it as say 'fetchedData'
  Create an ArrayCollection 'filteredData'from 
  the fetchedData, that contains about 100 records sorted in say alphabetical 
  order
  Every time you click sort or you want to filter, 
  act on 'fetchedData', get the first 100 records and repopulate 
  'filteredData'
  If you want to include paging send a paramater 
  that says get the next 100.
Sree

  - Original Message - 
  From: 
  David 
  Harris 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, May 16, 2006 4:31 AM
  Subject: Re: [flexcoders] Number of 
  records in a Datagrid
  Hi Kelly,thanks for your suggestion, but paging results 
  makes any client-sidefiltering pointless.no point filtering results 
  only on the 1000 or so that you have, andhitting the DB and doing server 
  filtering runs in to the 2 secondreturn...which makes experience less 
  seemless than I would like.On the labs.adobe.com, in the Showcase is a 
  very clever "BrightPointDashboard" application that is filtering 6 
  records client side,and you can view ALL the records in a datagrid. There 
  is a little bitof performance degragation if you scroll the grid very 
  quickly, butthe grid still works very well.Check it out, it's very 
  kool! (well done Thomas!)CheersOn 5/16/06, Kelly @ Dekayd 
  Media Inc. [EMAIL PROTECTED] wrote: Why are you 
  not considering paging the result set? 15,000 records 
  are way too many to be useful for display and are certainly 
  going to cause performance issues. This is just 
  my opinion. 
  --Kelly -Original 
  Message- From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of David 
  Harris Sent: Monday, May 15, 2006 3:07 PM To: 
  flexcoders@yahoogroups.com Subject: [flexcoders] Number of 
  records in a Datagrid Hi, Does 
  anyone have an idea of how many records in a datagrid are to 
  many? I have a situation when the Flex2 SWF loads, the 
  it hits the DB and retrives records. If I am 
  retriving 100 records it takes about 2 seconds. If I am 
  retriving 15000 records it takes more than 3 mins, even though 
  the CFC is completing the call to the DB and returning the records 
  in 2 secs. I am running all this locally on my 
  system, so network speed issues are not a 
  consideration. Anyone else had issues with large 
  queries? Cheers, 
  David -- Flexcoders 
  Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  Yahoo! Groups 
  Links 
  -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
   YAHOO! GROUPS 
  LINKS Visit your group "flexcoders" on the 
  web. To unsubscribe from this group, send an email 
  to: [EMAIL PROTECTED] 
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
  Service. 





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] no reply to my issue

2006-05-16 Thread Sreejith Unnikrishnan





Maybe nobody responded since this was nota 
flex issue. Dont be depressed :-)

What you should try to do is try some _javascript_ in 
the HTML page that loads the SWF to do this.

To get started:

window.open(URL_of_the_MXML_FILE,window_handle,"toolbar=no,location=no,status=no,menubar=no,scrollbars=no");



  - Original Message - 
  From: 
  vemula 
  rao 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, May 16, 2006 11:32 
AM
  Subject: [flexcoders] no reply to my 
  issue
  Hello 
  Friends, 
  I didnt got any reply from any of u in this group. i feel very depressed for 
  tat. Atlest after cing this mail plz try to help me in my situation.My 
  issue is 
  : 
  Am having a mxml file which upon running tat application should hide the 
  toolbar,menubar,statusbar,addressbar in the browser when loaded.I tried with 
  navigateToURL method but it is loading in a new window and done with the 
  functionality,but i want it to be done in the same page.Looking for 
  response.Plz try to solve my 
  issue.Regards,Nag.[EMAIL PROTECTED]
  
  
  Why was V. Sehwag warned by the BCCI? Share your knowledge on Yahoo! 
  Answers IndiaSend instant messages to your online friends - NOW 






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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: **SL-JUNK** [flexcoders] Re: Running Dreamweaver Flex builder at the same time

2006-05-14 Thread Sreejith Unnikrishnan





But you could use Flex Builder to do your 
Dreamweaver stuff as well. I may be wrong, but all that you got in dreamweaver 
is available in Flex Builder as well.

Sree

  - Original Message - 
  From: 
  oiland_barry 
  To: flexcoders@yahoogroups.com 
  Sent: Sunday, May 14, 2006 6:29 PM
  Subject: **SL-JUNK** [flexcoders] Re: 
  Running Dreamweaver  Flex builder at the same time
  Yeah im talking about 1.5, so theres no way at all to get both 
  of themrunning, i tried running it under a different username in win XP, 
  butno joy!Thats a shame if i cant do it, i was going to move to 
  flex 2.0, butdecided not to cos i was having too many migration problems, 
  butperhaps i should have made the move :(Oh well, thanks 
  anywaysBarry--- In flexcoders@yahoogroups.com, João Fernandes 
  [EMAIL PROTECTED]wrote: Are you talking about Flex 
  Builder 1.5?  Flex Builder 1.5 is based on DW so you won't be 
  able to have bothrunning.  João Fernandes  
   -Original Message- From: flexcoders@yahoogroups.com 
  on behalf of oiland_barry Sent: Sun 14-May-06 1:49 PM To: 
  flexcoders@yahoogroups.com Subject: [flexcoders] Running Dreamweaver 
   Flex builder at the sametime  Hi all, 
   i was wondering if anybody knows how to run both flex builder 
  and dreamweaver at the same time on one machine.  If i 
  have flex builder open and i open the dreamweaver shortcut, it just 
  seems to point to the instance of flex builder already running. 
   Any help would be great, im sure there is a way round this, i 
  just havent figured it out.  Barry  
-- Flexcoders 
  Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
  Search Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.com 
   SPONSORED LINKS  Web site 
  design developmenthttp://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ 
  Computer software developmenthttp://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw 
  Software design and developmenthttp://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ 
   Macromedia flexhttp://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw 
  Software development best practicehttp://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw 
  YAHOO! 
  GROUPS LINKS 
  * Visit your group "flexcodershttp://groups.yahoo.com/group/flexcoders 
  " on the web.
  * To unsubscribe from this group, send an email 
  to:  
  [EMAIL PROTECTED]mailto:[EMAIL PROTECTED] 
  
  * Your use of Yahoo! Groups is subject to the 
  Yahoo! Terms ofService http://docs.yahoo.com/info/terms/ 
  .
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] DateTimeAxis question for Charts

2006-05-11 Thread Sreejith Unnikrishnan





What u r looking for is perhaps 
the"interpolateValues" property on the lineSeries.
Its a boolean that if set to true draws a continous 
line by interpolating the missing value and if set to false will break the line 
at the missing location.

Sree

  - Original Message - 
  From: 
  Sachin 
  Dharmapurikar 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, May 11, 2006 11:25 
  AM
  Subject: [flexcoders] DateTimeAxis 
  question for Charts
  
  
  Hello 
  everybody,
  
  I am trying to get a timeline 
  chart. For this my requirement use case is as follows 
  –
  
  Input data – 
  
  
  Date  
  Count
  5/1/06 10:00 
  500
  5/1/06 17:00 
  232
  5/2/06 19:00 
  400
  5/4/06 13:00 
  158
  5/8/06 16:00 
  168
  5/9/06 14:00 
  175
  5/9/06 11:00 
  236
  
  
  I get above data from a database 
  query. I send this data to flex client using XML. I want a chart which shows 
  hourly chart for the week. Now as you can see for many hours there is no data 
  available.
  
  Still, I want flex should show 
  that those hours are having zero data. If I use date time axis, it displays 
  the tool tips for the items for which the count is available. If the count is 
  not available then it displays nothing. 
  
  I can fill the gaps by Java code, 
  but you can see there will be around 24 x 7 hours entries out of which most 
  will carry zero count. It will not only increase the XML size but the number 
  of elements to process. Can I avoid this?
  
  Can anybody 
  help?
  
  Regards,
  Sachin





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Beta 3: All roads lead to Beta 2?

2006-05-09 Thread Sreejith Unnikrishnan





Is this how it is?

  Charting2-win_B3_05-08.exe
  FDS2-win_B2_Install_03-16.exe
  FlexBuilder2_B2_03-16.exe
  Player_B2_Uninstaller_03-20.exe
  Player8.5_B2_AX_03-20.exe
  Player8.5_B2_PI_03-20.exe
All the files except the charting exe refers to a 
16 and 20th March ...!



  - Original Message - 
  From: 
  Manish Jethani 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, May 09, 2006 4:06 PM
  Subject: Re: [flexcoders] Beta 3: All 
  roads lead to Beta 2?
  On 5/9/06, greenfishinwater [EMAIL PROTECTED] 
  wrote: I just tried to download Beta 3 of Flex and all the download 
  pages refer to beta 2, I even downloaded the flex builder windows exe, 
  and it is exactly the same size as beta 2.I just downloaded 
  Beta 3 and it's working 
  fine.





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Error: faultCode - do not understand

2006-05-04 Thread Sreejith Unnikrishnan





Anybody seen this before and what does it 
mean?

Error: faultCode:Client.CouldNotDecode 
faultString:'Default decoder could not decode result' 
faultDetail:'null'

Thanks
Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Re: How does one build a ComboBox with a Data Grid as the drop down?

2006-05-03 Thread Sreejith Unnikrishnan





Beta 3? Out?

  - Original Message - 
  From: 
  bhaq1972 
  
  To: flexcoders@yahoogroups.com 
  Sent: Wednesday, May 03, 2006 1:15 
  PM
  Subject: [flexcoders] Re: How does one 
  build a ComboBox with a Data Grid as the drop down?
  i got my hands on flex2 beta3 and dropdownFactory works 
  fine.heres a simple example for anyone whos 
  interestedmx:ComboBox id="cb" labelField="fname" 
  dropdownWidth="{cb.width*2}" 
   mx:dataProvider 
mx:Object 
  fname="one" 
  lname="1"/ 
  mx:Object fname="two" 
  lname="2"/ 
  mx:Object fname="three" 
  lname="3"/ 
  mx:Object fname="four" 
  lname="4"/ 
  mx:Object fname="five" lname="5"/ 
   /mx:dataProvider 
   
  mx:dropdownFactory 

  mx:Component  
mx:DataGrid 
  showHeaders="false"  

   mx:columns 


   mx:Array 



  mx:DataGridColumn dataField="fname"/ 



  mx:DataGridColumn dataField="lname"/ 


   /mx:Array 


  /mx:columns  

  /mx:DataGrid  
   /mx:Component 
   
  /mx:dropdownFactory 
  /mx:ComboBox--- In flexcoders@yahoogroups.com, "Matt 
  Chotin" [EMAIL PROTECTED] wrote: Make sure you override both 
  the getter and the setter, I think overriding just one of them won't 
  take hold.   -Original Message- From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On 
  Behalf Of Manish Jethani Sent: Tuesday, May 02, 2006 3:40 AM 
  To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: How does 
  one build a ComboBox with a Data Grid as the drop down? 
   On 5/2/06, raghuramab [EMAIL PROTECTED] wrote:   
  I already tried that. Including trying to assign the property in 
  AS  code instead of MXML. In either case, I get a flex 
  compiler error  saying "Unrecognized combobox property - 
  dropdownFactory". I am  using Flex 2.0. Beta 2.  
  Sorry about that: it's coming in Beta 3 ;)  For now, I think 
  you should go with Matt's suggestion, which is to override the 
  'dropdown' getter  Manish   -- 
  Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
   Yahoo! Groups Links





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] ItemRenderer Problem

2006-05-03 Thread Sreejith Unnikrishnan





I am using a ItemRenderer to change the color of 
text in a dataGridColumn based on a range.
The problem is that when I change the ranges, the 
itemRenderer does not change the color of the text and so the dataGrid soes not 
update with the new colors.

What am I doing wrong?

The dataGrid is bound to a 
ListCollectionView.

Thanks
Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: **SL-JUNK** [flexcoders] how to read gutter size of chart?

2006-04-30 Thread Sreejith Unnikrishnan





ComputedGutters.left, right, top, and so on 


  - Original Message - 
  From: 
  shemeshkale 
  To: flexcoders@yahoogroups.com 
  Sent: Sunday, April 30, 2006 2:41 
AM
  Subject: **SL-JUNK** [flexcoders] how to 
  read gutter size of chart?
  in charts (flex 1.5) - if not expicilty writing gutter size 
  flexcalculate it alone.how can i read this value?it is actually a 
  style and if i dont write it (like gutterLeft="30")flex retrives me 
  'Undifiend'.how do i find the gutter size that flex calculate by 
  itself?





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Out of memory error

2006-04-17 Thread Sreejith Unnikrishnan





Can someone please explain to a non-geek how to 
implement this advice.



Thanks
Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Out of memory error

2006-04-17 Thread Sreejith Unnikrishnan





Would editing the "C:\Program 
Files\Adobe\Flex Builder 2 Beta 2\FlexBuilder.ini" be 
enough?

  - Original Message - 
  From: 
  Sreejith 
  Unnikrishnan 
  To: flexcoders@yahoogroups.com 
  Sent: Monday, April 17, 2006 5:22 
PM
  Subject: **SL-JUNK** [flexcoders] Out of 
  memory error
  
  Can someone please explain to a non-geek how to 
  implement this advice.
  
  
  
  Thanks
  Sree





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: **SL-JUNK** [flexcoders] All the bunch of idiots at Adobe, please note!

2006-04-17 Thread Sreejith Unnikrishnan





What was the purpose of this mail?

 I mean this is 
total lack of professionalism 

  - Original Message - 
  From: 
  t_msreddy 
  
  To: flexcoders@yahoogroups.com 
  Sent: Monday, April 17, 2006 9:14 
PM
  Subject: **SL-JUNK** [flexcoders] All the 
  bunch of idiots at Adobe, please note!
  I wanted to share this aweful story to this 
  group.Over months we have been trying to get a Flex expert from Adobe 
  to do a code review of our application as a part of our partnership 
  building process. They agreed to do it in person and finally on the 
  day, they sent out an email saying they cannot come and will do this 
  over breeze presentation. This was not ok for us but we had no other 
  option and we oked it. BTW the guys were Brian O'Connor, Adobe 
  Consulting, John Bennet, Architect.Finally during the 
  presentation, we went through the agenda for the meeting and basically we 
  wanted to get some useful tips for the problem we were having in flex app 
  and things that we could not implement. Over the presentation, they were 
  treating themselves as gods and us as no good developers. And at times it 
  went like "OK we got it, next... next", I was very offended while 
  driving the presentation. At one point I was showing them a slide with 
  cairngorm and i said "we are using viewhelpers and value objects and ..", 
  one of the guys said quickly "viewhelpers are not values objects". 
  They were very disrespectful all over the meeting. Also he mentioned that 
  Cairngorm is not the bible. So he thinks we dont know this?I mean 
  this is total lack of professionalism by Adobe guys. They should treat the 
  flex developer community with respect and show some sensitivity when they 
  talk to people and treat them as experts rather than 
  "dont-know-even-this-guys".On top of that they did not give one single 
  useful tip for us. They were blabbering like inexperienced 
  developers.All the bunch of idiots at Adobe, please note this 
  aweful story





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] DataGrid bugs

2006-04-05 Thread Sreejith Unnikrishnan





Adobe,
I have noticed a few bugs with the 
datagrid.

  Bug 1If the headerHeight is set to '0', the 
  headerText overlaps the first row content. [I assume this was already on the 
  Flex BugBase]
  Bug 2If you have a scrollbar on the datagrid, 
  try scrolling down and then resize the datagrid (typically in a VdividedBox 
  situtation), empty rows appear in the datagridNote that this does not 
  happen though if you have not scrolled down.
  Bug 3Continuing with the above scenario, the 
  mouse-overs become inconsistent.
  Bug 4Even if you do not have a scrollBar, if 
  you scale the datagrid horizontally, the mouse-overs become inconsistent, 
  typically the first few rows do not respond to mouseovers 
visually.
You may use the code below to reproduce the 
bugs.

Regards
Sree



Code:

?xml version="1.0" 
encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
xmlns="*" layout="vertical"mx:HDividedBox width="100%" 
height="100%"mx:VDividedBox width="50%" 
height="100%"mx:HBox width="100%" height="50%" 
/mx:HBox width="100%" 
height="50%" 
mx:DataGrid id="myGrid" width="100%" height="100%" 
headerHeight="0" 
mx:dataProvider 
mx:Array 
id="arr" 
mx:Object Artist=" Kapil" Album="All Time Favourites" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="Classic Songs" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="All Time Favourites" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="Classic Songs" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="All Time Favourites" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="Classic Songs" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="All Time Favourites" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="Classic Songs" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="All Time Favourites" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="Classic Songs" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="All Time Favourites" 
Price="10"/ 
mx:Object Artist=" Kapil" Album="Classic Songs" 
Price="10"/ 
/mx:Array 
/mx:dataProvider 
/mx:DataGrid/mx:HBox/mx:VDividedBoxmx:HBox 
width="50%" height="100%" //mx:HDividedBox
/mx:Application





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Rotating VSlider

2006-04-02 Thread Sreejith Unnikrishnan





Is it possible to rotate the VSlider so that the 
thumbs face to the right than to the default left?

Thanks
Sree





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Where art thou Margins?

2006-03-25 Thread Sreejith Unnikrishnan





Obviously you missed the padding-top and padding 
bottom.

:-)

  - Original Message - 
  From: 
  Brendan 
  Meutzner 
  To: flexcoders@yahoogroups.com 
  Sent: Saturday, March 25, 2006 12:30 
  PM
  Subject: [flexcoders] Where art thou 
  Margins?
  Hi,Can't find anything to replace the 
  marginTop/marginBottom styles... it appears that paddingLeft/paddingRight will 
  satisfy horizontal requirements, but what about vertical? I'm obviously 
  missing something...Thanks,Brendan





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] TabNavigator Display Issue [Flex 2 Beta 2]

2006-03-23 Thread Sreejith Unnikrishnan






I remember this was reported as a bug in beta 1 and 
was supposed to be fixed in beta 2!

  - Original Message - 
  From: 
  João 
  Fernandes 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, March 23, 2006 2:56 
  PM
  Subject: RE: [flexcoders] TabNavigator 
  Display Issue [Flex 2 Beta 2]
  Harris,Try to increase your tabWidth style.If you 
  remove it you'll see that there is no problem with your labels. João 
  Fernandes-Original Message-From: flexcoders@yahoogroups.com on 
  behalf of Harris ReynoldsSent: Thu 23-Mar-06 3:30 AMTo: flexcoders@yahoogroups.comSubject: 
  [flexcoders] TabNavigator Display Issue [Flex 2 Beta 2]I have the very 
  simple Flex script that is listed below. When the script is compiled 
  and displayed the first tab is only rendering:Brow...After 
  selecting the 2nd tab the whole word 'Broswer' displays. However, 
  after selecting the 1st tab again the whole word 'Browser' is displayed, 
  but now the end of the 'r' is shaved off.The "first impression" when 
  looking at this is YUCK! The same file looks great in Flex 
  1.5. Is there a way to make the tab labels look good at the outset 
  using 2.0? Also... is there a way to have characters with overhangs 
  (like a lowercase 'r') render properly when 
  selected?thanks,~harris?xml version="1.0" 
  encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
  xmlns="*" mx:Panel title="Blah Manager" width="525" 
  height="250" 
   mx:TabNavigator id="tabNavigator" 
  width="500" height="200" 
  tabWidth="120" 
   mx:Canvas id="browserCanvas" 
  label="Browser" 
   
  /mx:Canvas 
   mx:Canvas id="editorCanvas" 
  label="Editor" 
   /mx:Canvas 
   
  /mx:TabNavigator 
  /mx:Panel/mx:Application--Flexcoders 
  Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  Yahoo! Groups Links






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





  




  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] [Flex 1.5] Update ColumnData with new data

2006-03-14 Thread Sreejith Unnikrishnan





Hi,

Need some help here.

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

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

What would be the most efficient way to achieve 
this?

Maybe Ishould tryto generically find 
the "newValue" of a cell and then assign it by 
rowIndex-columnIndex?

Thanks
Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Case of the Mondays

2006-02-20 Thread Sreejith Unnikrishnan





Couple of ways. But always you need to creat a new 
project.

Create a new project. Right CLick the root of the 
existing project and say copy. Click on the new project and say 
paste.
Or
Create new project. And say import  Existimg 
Eclipse Project.

Sree

  - Original Message - 
  From: 
  Jonathan Miranda 
  To: flexcoders@yahoogroups.com 
  Sent: Monday, February 20, 2006 9:57 
  PM
  Subject: RE: [flexcoders] Case of the 
  Mondays
  
  
  Actual this brings up 
  something. Is there a way to change the directory of a project? Let’s say the 
  project used to be on //MyBox/blah and is now on //MyOtherBox/blah ….seems I 
  can only delete the project and make another. Shouldn’t there be a way to 
  repoint the project to somewhere else?
  
  _
  Jonathan 
  Miranda
  Flexible 
  Master of the Web
  "In the game of chess, it's important to 
  never let your opponent see your pieces."
  
  
  From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan MirandaSent: Monday, February 20, 2006 9:04 
  AMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Case of the 
  Mondays
  
  It’d help if the IT 
  team had the servers up J But ya that fixed 
  it, thanks Jester.
  
  _
  Jonathan 
  Miranda
  Flexible 
  Master of the Web
  "In the game of chess, it's important to 
  never let your opponent see your pieces."
  
  
  From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXLSent: Monday, February 20, 2006 8:47 
  AMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Case of the 
  Mondays
  
  
  I always ignore it and do a 
  Project  Clean and it goes away.
  
  
  
  - Original Message - 
  
  
  From: Jonathan Miranda 
  
  
  To: flexcoders@yahoogroups.com 
  
  
  Sent: Monday, 
  February 20, 2006 10:35 AM
  
  Subject: 
  [flexcoders] Case of the Mondays
  
  
  So I open up Flex and my project 
  to get the following:An internal build error has occurred. 
  Please check the Error Log.After looking around, not having any luck 
  finding this thing. Someone point me to this?
  _
  Jonathan 
  Miranda
  Flexible Master 
  of the Web
  "In the game of 
  chess, it's important to never let your opponent see your 
  pieces."
  
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] RE: Paint cell of dataGrid in different color

2006-02-13 Thread Sreejith Unnikrishnan





I guess you meant the cell.
You can use a cellRenderer to do that. The 
cellRenderer can define the display color of the cell.

Sree

  - Original Message - 
  From: 
  Deepa 
  Subramaniam 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, February 14, 2006 12:43 
  AM
  Subject: [flexcoders] RE: Paint cell of 
  dataGrid in different color
  Hi - This question has come up many times on this list. 
  Below is the cut paste from a previous email. Should get you on the 
  right track.-deepaChanging the 
  background color of a Datagrid Row in FlexI have heard this question 
  many times and I don't think it isdocumented. If you want to change the 
  color of an entire row within aDatagrid in Flex use the following 
  codedg.setPropertiesAt(2, {backgroundColor:0xFF});Where dg is 
  your datagrid and the first parameter is the row of numberyou want to 
  change-Original Message-From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] OnBehalf Of 
  Robson Thanael PoffoSent: Monday, February 13, 2006 8:01 AMTo: 
  flexcoders@yahoogroups.comSubject: Paint cell of dataGrid in different 
  colorhi people,I like to know how i can paint one cell of the 
  dataGrid in differentcolor.I receive the data of the dataGrid in one 
  array and pass to the datagridby binding.Thanks,Robson 
  Thanael 
  Poffo





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Application Background

2006-02-08 Thread Sreejith Unnikrishnan
Title: Application Background





I vaguely remember seeing an "opaqueBackground" 
property that can be applied to the stage!
Setting it to false may let the HTML container see 
through!

If it works, please us know :-)

Sree

  - Original Message - 
  From: 
  Mehdi, Agha 
  
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, February 09, 2006 1:27 
  AM
  Subject: [flexcoders] Application 
  Background
  
  Hi all,
  Is there any way to make 
  the application background transparent so that it always gets the background 
  of whatever html container it sits on?
  Thanks
  Agha Mehdi
  IDT - eBusiness Program 
  Manager
  Work: 
  408.284.8239
  Cell : 
  209.275.0482
  Fax : 
  408.284.2766
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Application Background

2006-02-08 Thread Sreejith Unnikrishnan
Title: Application Background





It does work on Firefox and IE.

mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml" 
xmlns="*" backgroundColor="#FF" 
backgroundAlpha="0"
.

Then in the generated HTML, you have to set 

Add the following parameter to the OBJECT 
tag:
param name="wmode" value="transparent"
Add the following parameter to the EMBED tag: wmode="transparent"
And ofcourse the body css in the HTML has to be changed.

  - Original Message - 
  From: 
  JesterXL 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, February 09, 2006 1:41 
  AM
  Subject: Re: [flexcoders] Application 
  Background
  
  setStyle("backgroundColor", 
  0xFF);
  setStyle("backgroundAlpha", 0);
  
  And then set the wmode attribute in HTML 
  object/embed to "transparent". Doesn't work on all 
browsers.
  
  - Original Message - 
  From: Mehdi, Agha 
  
  To: flexcoders@yahoogroups.com 
  Sent: Wednesday, February 08, 2006 2:57 PM
  Subject: [flexcoders] Application Background
  
  Hi all,
  Is there any way to make 
  the application background transparent so that it always gets the background 
  of whatever html container it sits on?
  Thanks
  Agha Mehdi
  IDT - eBusiness Program 
  Manager
  Work: 
  408.284.8239
  Cell : 
  209.275.0482
  Fax : 
  408.284.2766
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: Security risk found in message [flexcoders] Re: SetEventHandler Limitations? Contact TAVANT IS Team

2006-02-07 Thread Sreejith Unnikrishnan





Pim, for greater good, please check if your system 
is infected with the W32 virus!
This should hold good for all of us on a public 
mailing system!

Sree

  - Original Message - 
  From: 
  pim 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, February 07, 2006 9:47 
  AM
  Subject: Security risk found in message 
  "[flexcoders] Re: SetEventHandler Limitations?"Symantec AntiVirus found a security risk in an 
  attachment from "pim" [EMAIL PROTECTED].Attachment: 
  Video_part.mimThreat: [EMAIL PROTECTED]Action taken: 
  Delete succeededFile status: Deleted--Flexcoders 
  Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] pageTitle bu g?

2006-02-07 Thread Sreejith Unnikrishnan





Hmm ... I am not seeing anything. :-)
Isnt it supposed to display the stringon the 
title bar of the browser? It doesnt :(

Yes, I am using FlexBuilder 2.0

Sree

  - Original Message - 
  From: 
  Abdul 
  Qabiz 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, February 07, 2006 10:51 
  AM
  Subject: Re: [flexcoders] pageTitle bu 
  g?
  What is the unexpected thing, you are seeing?Are you 
  using FlexBuilder 2?-abdul
  On 2/6/06, Sreejith 
  Unnikrishnan  [EMAIL PROTECTED] 
  wrote:
  
Hmm ... looks like specifying the pageTitle on 
the Application tag does not have the expected 
result!--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 

SPONSORED 
LINKS 

  
  
Web site design development 
Computer software development 
Software design and development 
  
Macromedia flex 
Software development best practice 
  


YAHOO! GROUPS LINKS 

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








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] TabNavigator Tab Align - Bug?

2006-02-07 Thread Sreejith Unnikrishnan





The TabNavigator does not seem to respect the 
horizontalAlign style.

Tried following sample to align tabs to the 
right.

?xml version="1.0" 
encoding="utf-8"?mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml" 
xmlns="*" layout="vertical"mx:TabNavigator width="100%" 
height="100%" horizontalAlign="right"mx:HBox label="Tab 
1" /mx:HBox label="Tab 2" 
/mx:HBox label="Tab 3" 
//mx:TabNavigator/mx:Application

Sree






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] TabNavigator Tab Align - Bug?

2006-02-07 Thread Sreejith Unnikrishnan





Yes, 2.0.

  - Original Message - 
  From: 
  Manish Jethani 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, February 07, 2006 4:43 
  PM
  Subject: Re: [flexcoders] TabNavigator 
  Tab Align - Bug?
  On 2/7/06, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote: The 
  TabNavigator does not seem to respect the horizontalAlign 
  style. Tried following sample to align tabs to the 
  right.[snip]2.0? Sounds like a bug.





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] pageTitle bu g?

2006-02-07 Thread Sreejith Unnikrishnan





It does create the HTML title tag. But the 
value is the file-name minus the extension.

Sree

  - Original Message - 
  From: 
  Abdul 
  Qabiz 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, February 07, 2006 7:12 
  PM
  Subject: Re: [flexcoders] pageTitle bu 
  g?
  Ok, check out the html file it generates. Does it have 
  title / tag in it with the expected value.I think, when 
  you build it should ideally create html file with same title...If might 
  be a known issue, still send your feedback. -abdul
  On 2/7/06, Sreejith 
  Unnikrishnan [EMAIL PROTECTED] 
  wrote:
  
Hmm ... I am not seeing anything. 
:-)
Isnt it supposed to display the stringon 
the title bar of the browser? It doesnt :(

Yes, I am using FlexBuilder 2.0

Sree


  - 
  Original Message - 
  From: 
  Abdul Qabiz 
  To: 
  flexcoders@yahoogroups.com 
  Sent: 
  Tuesday, February 07, 2006 10:51 AM
  Subject: 
  Re: [flexcoders] pageTitle bu g?
  What is the unexpected thing, you are seeing?Are 
  you using FlexBuilder 2?-abdul
  On 2/6/06, Sreejith 
  Unnikrishnan  [EMAIL PROTECTED] 
  wrote: 
  
Hmm ... looks like specifying the pageTitle 
on the Application tag does not have the expected 
result!--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 

SPONSORED 
LINKS 

  
  
Web site design development 
Computer software development 
Software design and development 
  
Macromedia flex 
Software development best practice 
  


YAHOO! GROUPS LINKS 

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


--Flexcoders Mailing 
  ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  
  SPONSORED 
  LINKS 
  


  Web site design development 
  Computer software development 
  Software design and development 

  Macromedia flex 
  Software development best practice 

  
  
  YAHOO! GROUPS LINKS 
  
Visit your group "flexcoders" on the web. 
To unsubscribe from this group, send an email 
to: [EMAIL PROTECTED] 

Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service . 
  
  
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Horizontal DataGrids

2006-02-07 Thread Sreejith Unnikrishnan





public function horizontalDataGrid() {
 if (1.5) {
  refer to http://www.richinternetapps.com/archives/000101.html
  } else 
{
  
 refer to property columnCount and set it to 1
  
}
  use 
cellRenderer to give the header look'n'feel for the first column
 }
}

Sree
- Original Message - 

  From: 
  Jonathan Miranda 
  To: flexcoders@yahoogroups.com 
  Sent: Wednesday, February 08, 2006 2:18 
  AM
  Subject: [flexcoders] Horizontal 
  DataGrids
  
  
  There any easy way to make a 
  datagrid with headers on the left and data being listed in columns and not 
  rows?
  
  _
  Jonathan 
  Miranda
  Flexible Master 
  of the Web
  "In the game of 
  chess, it's important to never let your opponent see your 
  pieces."
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Macromedia Flex 2.0 Explorer

2006-02-06 Thread Sreejith Unnikrishnan





:-) i thought so, since the regular apps that I 
developed with 2.0 seem to work OK.

I have a feeling it has something to do with thes 
script calls that are made in the tree.

The script appends swf to the link. For example, 
the link to DateChooser on the tree is 
_javascript_:loadFlexApp('complib/DateChooserDemo').

The script appends .swf to the URl. But the swf 
does not exist in the samples folder, since the mxmls are not compiled. And if I 
am not wrong, the mxmls do not compile on instanatiation anymore with 
2.0!

I have a feeling the samples would work if we 
compile all the mxml files.

Sree

  - Original Message - 
  From: 
  Nick Weekes 
  
  To: flexcoders@yahoogroups.com 
  Sent: Monday, February 06, 2006 1:57 
  PM
  Subject: RE: [flexcoders] Macromedia Flex 
  2.0 Explorer
  
  hmm...ignore my last post...Ive got 
  the same problem and a re-install hasn't fixed it, so maybe there is a problem 
  with the sample source.
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Nick 
  WeekesSent: 06 February 2006 07:51To: flexcoders@yahoogroups.comSubject: 
  RE: [flexcoders] Macromedia Flex 2.0 Explorer
  
  Sree,
  
  I think the problem may be that you 
  have updated the flash plugin with a version other than 8.5.It 
  happens to me quite regularly, giving me the same behaviour that youve listed 
  here when viewing the samples.
  
  Easiest solution is to re-install the 
  beta.
  
  Cheers,
  
  Nick
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Sreejith 
  UnnikrishnanSent: 06 February 2006 07:32To: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Macromedia Flex 
  2.0 Explorer
  
  I am not sure if this is something to do with 
  just me!
  
  But I none of the samples load if I try to run 
  the applications offline, ie from the following URL.
  
  C:\Program Files\Adobe\Flex Builder 2 Beta 1\Flex 
  Framework 2\samples\explorer\explorer.html
  
  It keeps looking for 
  samples/explorer/vs.html.
  
  Regards
  Sree
  
- Original Message - 
From: 
Matt Chotin 

To: flexcoders@yahoogroups.com 

Sent: Monday, February 06, 2006 12:37 
PM
Subject: RE: [flexcoders] Macromedia 
Flex 2.0 Explorer


There is a shorter 
URL for this but it turns into: http://flexapps.macromedia.com/flex/flex2demo_b1/flexexplorer_b1/explorer.html.

It should have been 
shipped with the beta too.





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Sreejith 
UnnikrishnanSent: Sunday, 
February 05, 2006 10:50 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Macromedia Flex 
2.0 Explorer


Looks like the "Macromedia Flex 
2.0 Explorer" that came with the Alpha does not run anymore with the new 
Flash Player?



Is there going to be an updated 
version available any time soon?



Regards

Sree






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] pageTitle bu g?

2006-02-06 Thread Sreejith Unnikrishnan





Hmm ... looks like specifying the pageTitle on the 
Application tag does not have the expected result!





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Macromedia Flex 2.0 Explorer

2006-02-05 Thread Sreejith Unnikrishnan





Looks like the "Macromedia Flex 2.0 Explorer" that 
came with the Alpha does not run anymore with the new Flash Player?

Is there going to be an updated version available 
any time soon?

Regards
Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Macromedia Flex 2.0 Explorer

2006-02-05 Thread Sreejith Unnikrishnan





Thanks Matt.
Now that I re-checked, it is indeed available in 
the Flex Framework 2 folder.

Regards
Sree


  - Original Message - 
  From: 
  Matt Chotin 
  
  To: flexcoders@yahoogroups.com 
  Sent: Monday, February 06, 2006 12:37 
  PM
  Subject: RE: [flexcoders] Macromedia Flex 
  2.0 Explorer
  
  
  There is a shorter 
  URL for this but it turns into: http://flexapps.macromedia.com/flex/flex2demo_b1/flexexplorer_b1/explorer.html.
  
  It should have been 
  shipped with the beta too.
  
  
  
  
  
  From: 
  flexcoders@yahoogroups.com 
  [mailto:flexcoders@yahoogroups.com] 
  On Behalf Of Sreejith 
  UnnikrishnanSent: Sunday, 
  February 05, 2006 10:50 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Macromedia Flex 2.0 
  Explorer
  
  
  Looks like the "Macromedia Flex 
  2.0 Explorer" that came with the Alpha does not run anymore with the new Flash 
  Player?
  
  
  
  Is there going to be an updated 
  version available any time soon?
  
  
  
  Regards
  
  Sree
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Macromedia Flex 2.0 Explorer

2006-02-05 Thread Sreejith Unnikrishnan





I am not sure if this is something to do with just 
me!

But I none of the samples load if I try to run the 
applications offline, ie from the following URL.

C:\Program Files\Adobe\Flex Builder 2 Beta 1\Flex 
Framework 2\samples\explorer\explorer.html

It keeps looking for 
samples/explorer/vs.html.

Regards
Sree

  - Original Message - 
  From: 
  Matt Chotin 
  
  To: flexcoders@yahoogroups.com 
  Sent: Monday, February 06, 2006 12:37 
  PM
  Subject: RE: [flexcoders] Macromedia Flex 
  2.0 Explorer
  
  
  There is a shorter 
  URL for this but it turns into: http://flexapps.macromedia.com/flex/flex2demo_b1/flexexplorer_b1/explorer.html.
  
  It should have been 
  shipped with the beta too.
  
  
  
  
  
  From: 
  flexcoders@yahoogroups.com 
  [mailto:flexcoders@yahoogroups.com] 
  On Behalf Of Sreejith 
  UnnikrishnanSent: Sunday, 
  February 05, 2006 10:50 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Macromedia Flex 2.0 
  Explorer
  
  
  Looks like the "Macromedia Flex 
  2.0 Explorer" that came with the Alpha does not run anymore with the new Flash 
  Player?
  
  
  
  Is there going to be an updated 
  version available any time soon?
  
  
  
  Regards
  
  Sree
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Re: Resizing Panel child components when ControlBar is resized

2006-02-01 Thread Sreejith Unnikrishnan





Both the issues are related to some kind of 
'refresh' - the datagrid not stretching height-wise and controlbar not resizing 
with panel resize!

I have started noticing this with the 8.5 player. I 
am saying this because the same apps that I developed earlier shows this 
'no-resize' problem on the 8.5 player.

Maybe and a big maybe, there's a bug in the 
player.

Sree

  - Original Message - 
  From: 
  Manish Jethani 
  To: flexcoders@yahoogroups.com 
  Sent: Wednesday, February 01, 2006 3:52 
  AM
  Subject: Re: [flexcoders] Re: Resizing 
  Panel child components when ControlBar is resized
  On 2/1/06, douglowder [EMAIL PROTECTED] 
  wrote: What I want, but haven't been able to get working, is for 
  the rest of the panel to expand to fill the empty space when the 
  control bar is collapsed, and to shrink so that nothing is obscured 
  when the control bar is expanded. That currently does not 
  happen.Exactly this works for me. Maybe it's because I'm on a 
  developmentbuild of Flex 1.5 :-/ (Could someone else 
  confirm?) Also, try hiding and then showing the advanced 
  options. Now when the browser window is resized, the advanced 
  options area no longer resizes to the available width. It's as 
  if it has lost its 100% width setting.I don't see this 
  behaviour either. The Advanced Options area isalways the width of 
  the Panel (even after resizing the browserwindow).





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Active X vs Plugin

2006-02-01 Thread Sreejith Unnikrishnan





Again, whats the difference between the Active X 
and Plugin versions of Flash Player.
When should you use either of them and for 
what?

Regards
Sree





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Document ZIP link does not work!

2006-02-01 Thread Sreejith Unnikrishnan





A ZIP file containing all Flex 2 Beta 1 documentation is available from the 
web site. The 
documentation set is as follows:

The link does not work!





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Active X vs Plugin

2006-02-01 Thread Sreejith Unnikrishnan





Thanks Matt.

  - Original Message - 
  From: 
  Matt Horn 
  To: flexcoders@yahoogroups.com 
  Sent: Wednesday, February 01, 2006 6:20 
  PM
  Subject: RE: [flexcoders] Active X vs 
  Plugin
  
  The Active X version is for IE, the Plugin is for 
  Netscape browsers.
  


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Sreejith 
UnnikrishnanSent: Wednesday, February 01, 2006 3:36 
AMTo: flexcoders@yahoogroups.comSubject: 
[flexcoders] Active X vs Plugin

Again, whats the difference between the Active 
X and Plugin versions of Flash Player.
When should you use either of them and for 
what?

Regards
Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Downgrade Flash Player?

2006-02-01 Thread Sreejith Unnikrishnan





Hmm ... what should I do.

I installed the Beta. On the samples home page it 
says.


Flash Player 8.5 Alpha 3 (build 211) is required to 
view the Beta 1 samples; the version installed in this browser is:

WIN 8,5,0,212
Please update your flash player to 
8,5,0,211


Should I downgrade my player???

Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] View Source in Firefox 1.5?

2006-02-01 Thread Sreejith Unnikrishnan





The popup blocker automatically blocks the 
view-source URL.
Clicking on allow does let you see the source 
though!

Sree

  - Original Message - 
  From: 
  Manish Jethani 
  To: Flexcoders 
  Sent: Wednesday, February 01, 2006 11:56 
  PM
  Subject: [flexcoders] View Source in 
  Firefox 1.5?
  Hi folks,Looking for feedback. Does View 
  Source work for you in Firefox 1.5? Last I checked, Firefox 1.5 blocked 
  the source browser window fromopening up.Manish





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] View Source in Firefox 1.5?

2006-02-01 Thread Sreejith Unnikrishnan





Adding to it,'viewSourceURL' does not come up 
in the 'code-completion' of Flex Builder!

  - Original Message - 
  From: 
  Manish Jethani 
  To: Flexcoders 
  Sent: Wednesday, February 01, 2006 11:56 
  PM
  Subject: [flexcoders] View Source in 
  Firefox 1.5?
  Hi folks,Looking for feedback. Does View 
  Source work for you in Firefox 1.5? Last I checked, Firefox 1.5 blocked 
  the source browser window fromopening up.Manish





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] DataGrid Bug?

2006-02-01 Thread Sreejith Unnikrishnan





I just noticed a bug with the 
datagrid:

The issues are as follows:

1. dataGrid headerHeight=0, does not hide the header. INstead the firstRow is 
overlapped on the header.2. If you scroll down and then up, the some rows 
including the second, blanks out!
I have an example posted at the following URL:
http://www.indesg.com/archives/2006/02/datagrid_bug_01_1.html

Sree





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] DataGrid Bug?

2006-02-01 Thread Sreejith Unnikrishnan





More interesting stuff!

  If you click on the columns even if you cannot see 
  the header, you can still sort!
  If you click on the column, keep the mouse down 
  and drag to your left or right. You can see the column selected with an 
  alpha!

Sree

  
  
  
  
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On 
  Behalf Of Sreejith UnnikrishnanSent: Wednesday, February 01, 2006 3:34 
  PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] DataGrid 
  Bug?
  
  
  I just noticed a bug with the 
  datagrid:
  
  
  
  The issues are as 
  follows:
  
  1. 
  dataGrid headerHeight=0, does not hide the header. INstead the firstRow is 
  overlapped on the header.2. If you scroll down and then up, the some rows 
  including the second, blanks out!
  I have an 
  example posted at the following URL:
  http://www.indesg.com/archives/2006/02/datagrid_bug_01_1.html
  
  Sree
  





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Re: DividedBox question - divider position

2006-01-31 Thread Sreejith Unnikrishnan





I believe what he meant was to specify the 
minHeight explicitly.

You can calculate it programatically as well. On 
creation complete calculate the height of the individual components and set and 
reset them.

This defenitely looks interesting. I am trying it 
out. I'll post the code IF i am sucessful.

Sree

  - Original Message - 
  From: 
  jgraham_us 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, January 31, 2006 9:23 
  PM
  Subject: [flexcoders] Re: DividedBox 
  question - divider position
  I tried explicitMinHeight, it doesn't appear to be a valid 
  property and if I set it, for example panel["explicitMinHeight"], it 
  doesn't have any effect when I resize the dividedbox container. 
  Anyone know another way to do this?--- In flexcoders@yahoogroups.com, 
  "jgraham_us" [EMAIL PROTECTED]... 
  wrote: Is there an easy way to set a minimum position for 
  a divider in a  DividedBox? For example. I have three 
  panels in a VDividedBox when I  drag divider 0 up I want it to 
  stop and not size past the headerHeight  of the panel, in essence 
  not cover the panel header up.   I assume this can be 
  done by overriding the DividedBox, but was  wondering if there was an 
  easier way.  I have tried setting the minHeight on the panel 
  but that appears to  have no effect.  
  Thanks





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Live Docs

2006-01-31 Thread Sreejith Unnikrishnan





It was down! Looks like it is up now.

  - Original Message - 
  From: 
  Rich Tretola 
  
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, January 31, 2006 9:53 
  PM
  Subject: [flexcoders] Live Docs
  Anyone from MM or Adobe please take a look at 
  livedocs. I am gettingan error at:http://livedocs.macromedia.com/flex/15/asdocs_en/500unable 
  to create new native threadjava.lang.OutOfMemoryError: unable to 
  create new native thread at 
  java.lang.Thread.start(Native Method) at 
  sun.net.www.http.KeepAliveCache$1.run(Unknown 
  Source) at 
  java.security.AccessController.doPrivileged(Native 
  Method) at 
  sun.net.www.http.KeepAliveCache.put(Unknown 
  Source) at 
  sun.net.www.http.HttpClient.putInKeepAliveCache(Unknown 
  Source) at 
  sun.net.www.http.HttpClient.finished(Unknown 
  Source) at 
  sun.net.www.http.ChunkedInputStream.closeUnderlying(Unknown 
  Source) at 
  sun.net.www.http.ChunkedInputStream.processRaw(Unknown 
  Source) at 
  sun.net.www.http.ChunkedInputStream.readAheadNonBlocking(Unknown 
  Source) at 
  sun.net.www.http.ChunkedInputStream.readAhead(Unknown 
  Source) at 
  sun.net.www.http.ChunkedInputStream.available(Unknown 
  Source) at 
  java.io.FilterInputStream.available(Unknown 
  Source) at 
  sun.nio.cs.StreamDecoder$CharsetSD.inReady(Unknown 
  Source) at 
  sun.nio.cs.StreamDecoder$CharsetSD.implRead(Unknown 
  Source) at 
  sun.nio.cs.StreamDecoder.read(Unknown 
  Source) at 
  java.io.InputStreamReader.read(Unknown 
  Source) at 
  java.io.BufferedReader.fill(Unknown Source) 
  at java.io.BufferedReader.read(Unknown 
  Source) at 
  com.macromedia.livedocs.util.ImportFile.acquireString(ImportFile.java:66) 
  at 
  com.macromedia.livedocs.filters.PageDecorator.doFilter(PageDecorator.java:185) 
  at 
  jrun.servlet.FilterChain.doFilter(FilterChain.java:94) 
  at 
  com.macromedia.livedocs.filters.URLFilter.doFilter(URLFilter.java:208) 
  at 
  jrun.servlet.FilterChain.doFilter(FilterChain.java:94) 
  at 
  jrun.servlet.FilterChain.service(FilterChain.java:101) 
  at 
  jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91) 
  at 
  jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) 
  at 
  jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:259) 
  at 
  jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541) 
  at 
  jrun.servlet.http.WebService.invokeRunnable(WebService.java:172) 
  at 
  jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320) 
  at 
  jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428) 
  at 
  jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266) 
  at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)Rich





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Format Document in Flex Builder 2.0

2006-01-28 Thread Sreejith Unnikrishnan





Is "Format Document" available in Flex Builder 
2.0?
Somehow I do not see it in the right-click context 
menu!

This is a nice-to-have-feature in regular 
Eclipse.

If not, should this be a feature 
request?






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Stand-alone scrollbar possible?

2006-01-25 Thread Sreejith Unnikrishnan





Rather strange requirement that I 
have.

Is it possible to have a stand-alone 
scrollbar?
Basically, I need to implement a scrollbar that 
controls the scroll in another UI component.

Any suggestion is welcome.

Regards
Sree





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Stand-alone scrollbar possible?

2006-01-25 Thread Sreejith Unnikrishnan





Thanks Deepa, I 
noticed that your answer was wrt 2.0.
My requirement was for 1.5. Or, are these 
components available in 1.5?

Sree

  - Original Message - 
  From: 
  Deepa 
  Subramaniam 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, January 26, 2006 12:43 
  AM
  Subject: RE: [flexcoders] Stand-alone 
  scrollbar possible?
  Hi -We provide the HScrollBar and VScrollBar 
  components for you to instantiate as standalone scrollbars. Here's an example 
  of a vertical scrollbar that controls the scrolling in a horizontal scroll 
  bar. mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml" 
  mx:VScrollBar id="v" height="200" scroll="h.scrollPosition = 
  v.scrollPosition" maxPos="200" minPos="0" 
  / mx:HScrollBar id="h" 
  width="200" maxPos="200" minPos="0"//mx:ApplicationIn 
  your case you'd instantiate a standalone scrollbar and write a handler for its 
  scroll event that controls the scrolling in the other UI component this 
  scrollbar is managing.HTH,deepa__Find 
  Me:  2701 - 601 Townsend 415.832.7668 
  [EMAIL PROTECTED] -Original Message-From: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
  Sreejith UnnikrishnanSent: Wednesday, January 25, 2006 3:19 AMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Stand-alone scrollbar 
  possible?Rather strange requirement that I have.Is it 
  possible to have a stand-alone scrollbar?Basically, I need to implement a 
  scrollbar that controls the scroll in another UI component.Any 
  suggestion is 
  welcome.RegardsSree--Flexcoders Mailing 
  ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  SPONSORED LINKS Web site design development Computer 
  software development Software design and development Macromedia flex 
  Software development best practice YAHOO! GROUPS LINKS 
  * Visit your group "flexcoders" on the web. * 
  To unsubscribe from this group, send an email 
  to:[EMAIL PROTECTED] * Your 
  use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Sourcing an image using a variable in URL (Flex 2)

2006-01-20 Thread Sreejith Unnikrishnan





Try constructing the entire URL in script and 
assign it to the image!

var imgSource:String = "http://www.mySite.com/pictures/"+photoID+".jpg"

mx:Image id="myImage"source="{imgSource}"/

Sree

  - Original Message - 
  From: 
  yaagcur 
  To: flexcoders@yahoogroups.com 
  Sent: Saturday, January 21, 2006 12:07 
  AM
  Subject: [flexcoders] Sourcing an image 
  using a variable in URL (Flex 2)
  I have a 
  linemx:Image id="myImage" source="http://www.mySite.com/pictures/1234.jpg"/which 
  I want to generalise using a variable photoID to something 
  likemx:Image id="myImage"source="http://www.mySite.com/pictures/"+photoID+".jpg"/This 
  produces a compile error as the " appears before end of URL. Itried the 
  quot; option but just get the broken image icon as a resultAny 
  ideas what correct dode is , please





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Re: How to add labelFunc when dynamically creating a DataGrid

2006-01-13 Thread Sreejith Unnikrishnan






Kevin,

Just replace the piece of code where you try to assign the labeFunction
with this.
The rest should be OK.

column.labelFunction =
Delegate.create(this, displayText);

Regards
Sree

Refer to:

Kevin Ewok wrote:

Brendan-
 Thanks for your response. That makes sense but I'm still in the dark
about how to assign a Function to the 'labelFunc' attribute
dynamically when I create the Datagrid. All I will have is the name of
the function, such as "displaySpecificText", so where is the method
actually implemented?? Like in your code, for "return
column.labelFunction(item);" ...where is that set?
  
Thanks again!
  
--- In flexcoders@yahoogroups.com, "Brendan Meutzner"
[EMAIL PROTECTED]
wrote:

 Hey Kevin,
 
 If I understand correctly, how would this work...
 
 //CellrendererClass.as/mxml
 
 public var listOwner:DataGrid;
 public var getCellIndex:Function;
 public var item:Object;
 public function setValue(str:String, item:Object, sel:String):Void
  
 {
 var position:Object = getCellIndex();
 var column:DataGridColumn =
 DataGridColumn(listOwner.getColumnAt(position.columnIndex));
   
 if(column.labelFunction != null)
 {
 return column.labelFunction(item);
 }
 this.item = item;
 }
 
 
 By obtaining a reference for the current column within the
 cellrenderer, you can call the labelFunction within the setValue
method.
 
 Does this help?
 
 
 Brendan
 
 
 
 --- In flexcoders@yahoogroups.com, "Kevin Ewok"
[EMAIL PROTECTED] wrote:
 
  Hello all.
  
  I have a form where a user enters criteria and chooses from a
list box
  the columns they want to see in their search results (in the
form of a
  datagrid). The List of columns is linked to mx:model
in a XML file.
  
  I am able to generate the datagrid successfully along with
cell
  renderers, but I am not sure how to dynamically add a
"labelFunc" b/c
  there are several columns where I need to process the value
before
  displaying.
  
  My code looks like this:
  
  // Code to create Datagrid
  // Loop through the 'column' objects defined in my xml Model
and 
  // call createDataGridColumn method.
  
  /* create column */
  function createDataGridColumn(column : Object) :
DataGridColumn 
  {
   var _dgc:DataGridColumn = new
DataGridColumn(column.name);
   _dgc.headerText = column.headerText;
   _dgc.width = column.width; 
   if(column.labelFunction != undefined)
   { 
_dgc.labelFunction = column.labelFunction;
//_dgc.labelFunction = "displayText";
  
   }
   return _dgc;
  }
  
  THE QUESTION OF THE HOUR is that the _dgc.labelFunction line
within
  the if statement is assigned the text of the method name, for
example,
  in the commented line below. So where do I place the
implementation
  of this method???
  
  The following attempts by me didn't work:
  1.) I tried extending the DataGridColumn class and
implementing the
  method there. 
  2.) Implement the method in the class of the code above.
  3.) Implement the method in the calling class of the code
above.
  
  Thanks in advance for any help!
  3.
 

  
  
  
  
  








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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] VBox scrollbar bug ?

2006-01-12 Thread Sreejith Unnikrishnan






Try setting minWidth="0" and
minHeight="0" to the VBox

Sree

superabe superabe wrote:

  Update on this, setting fixed widths and heights on the parent
VBox resolved the issue.
  That will do fine for now :)
  
  - superabe
  

  On 1/12/06, superabe superabe [EMAIL PROTECTED] wrote:
  
No luck, same behaviour. :(

Works for Canvas, does not work for VBox


- superabe




On 1/12/06, Paul BH [EMAIL PROTECTED]
wrote:

what
happens if you call super.createChildren() at the beginning of the
createChildren method?
  
  
  On 1/12/06, superabe superabe  [EMAIL PROTECTED]
   wrote: 
  

Hello list,
This sounds like a really basic thing so I can't believe
this is a bug, so probably am doing something wrong.

I have a custom AS container(extends off VBox)in which I
create a large number of child controls by overriding the
createChildren method.
The component is used in Main.mxml file inside a VBox
which is set to 100% height and width like so (pseudo):

application width=980 height=695 margin=10
 vbox width=100% height=100%
 myContainer/
 /vbox
/application

The issue is when the scrollbars show up on the
Application, rather than on the VBox where I would expect it to ! 
If I replace the parent vbox with a canvas scrollbars show
up around the canvas as it should

My component code is:

MyContainer.as

class _test.MyContainer extends VBox{
function MyContainer(){
 }

public function createChildren():Void{
 for(var i:Number=0;i100;i++){
 this.createChild(Button,undefined,{label:"a_"+ i});
 }
}
}

Anybody faced this before or know what I am doing wrong?
TIA
- superabe



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



SPONSORED
LINKS 

  

  
Web site design development 
  
Computer software development 
  
Software design and development 


  
Macromedia flex 
  
Software development best practice 

  



YAHOO!
GROUPS LINKS 


  Visit your group "flexcoders"
on the web.

   To unsubscribe from this group,
send an email to:
 [EMAIL PROTECTED]

   Your use of Yahoo! Groups is
subject to the Yahoo! Terms
of Service.
  




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

  

Web site design development 

Computer software development 

Software design and development 
  
  

Macromedia flex 

Software development best practice 
  

  
  
  
  YAHOO!
GROUPS LINKS 
  
  
Visit your group "flexcoders"
on the web.

 To unsubscribe from this group,
send an email to:
 [EMAIL PROTECTED]

 Your use of Yahoo! Groups is
subject to the Yahoo! Terms
of Service.

  
  
  
  




  
  
  








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





  




  
  
  YAHOO! GROUPS LINKS



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



  














Re: [flexcoders] Bar Chart with Dates

2005-12-21 Thread Sreejith Unnikrishnan






Thanks Sreenivas, but isnt that a Flex 2.0 enhancement. I could not
really find that in the 1.5 docs. I could be wrong.

Regards
Sree

Sreenivas R wrote:

  You can use the DateTimeAxis for the horizontal axis and provide
the start and end date fields as minField and xField properties.
  
  -Sreenivas

  On 12/20/05, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote:
  Hi, Can someone help me with a way to
display a bar chart with floating bars depicting say the start date and
end date (similar to a project planner) such that the length of the bar
is the duration!

The startDate and endDate are available as Date objects.

The question is related to using Date values. I can do it with numbers.
The question is more related to what is the best practice.

Regards
Sree



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 



YAHOO!
GROUPS LINKS 


  Visit your group "flexcoders"
on the web.

   To unsubscribe from this group,
send an email to:

[EMAIL PROTECTED]

   Your use of Yahoo! Groups is
subject to the Yahoo! Terms
of Service.
  




  
  
  









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













[flexcoders] Bar Chart with Dates

2005-12-20 Thread Sreejith Unnikrishnan






Hi, Can someone help me with a way
to display a bar chart with floating bars depicting say the start date
and end date (similar to a project planner) such that the length of the
bar is the duration!
The startDate and endDate are available as Date objects.

The question is related to using Date values. I can do it with numbers.
The question is more related to what is the best practice.

Regards
Sree







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





  




  
  
  YAHOO! GROUPS LINKS



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



  














Re: [flexcoders] Re: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread Sreejith Unnikrishnan
Open the livedocs ..
http://livedocs.macromedia.com/flex/15/asdocs_en/

Click on DataGrid
Scroll Down to the end of the page
Look at the second sample ...

I bet you didnt bother to check the docs first!


yaagcur wrote:

 Really?
 I just checked my application
 editable=false clicking gets no action
 editable=true  clicking performs as required

 --- In flexcoders@yahoogroups.com, Joan Tan [EMAIL PROTECTED] wrote:
 
  Its not required for editable=true to get cellPress events.
 
  
 
  - Joan
 




 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/u8TY5A/tzNLAA/yQLSAA/nhFolB/TM
~- 

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

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Re: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread Sreejith Unnikrishnan






Yaagcur, sorry I
missed the '2.0'.

Joan, I dont think the code works for us. I tried the code that u sent.

Even after correcting some fatal errors that the builder throws up, the
cellPress event does not work. And it does work with 'editable' enabled.

It is possible that you are testing against a later build that we do
not have the luxury of.

Regards
Sree

Joan Tan wrote:

I tried the following simple dataGrid that is not editable and the
cellPress event is triggered. Are you seeing something different? If so,
please send the code along.
  
?xml version="1.0" encoding="iso-8859-1"?
mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml"
creationComplete="initDG()"
  
mx:Script
![CDATA[
 function initDG()
 {
 myDataGrid1.dataProvider =
 [
 { Artist:'Pavement', Album:'Slanted and Enchanted' },
 { Artist:'Pavement', Album:'Crooked Rain, Crooked Rain'},
 { Artist:'Pavement', Album:'Wowee Zowee' },
 { Artist:'Pavement', Album:'Brighten the Corners' },
 { Artist:'Pavement', Album:'Terror Twilight'},
 { Artist:'Other', Album:'Other'}
 ];
 ti1.text = "";
 }
  
 private function doTest(event):void
 {
 ti1.text= event.type + " event Triggered";
 }
  
]]
/mx:Script
  
mx:DataGrid id="myDataGrid1" cellPress="doTest(event)"/
mx:TextInput id="ti1" /
/mx:Application
  
-Original Message-
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of yaagcur
Sent: Tuesday, December 20, 2005 3:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Why is editable="true" necessary to allow
cellPress events (2.0)
  
Well not those docs certainly as I'm talking flex 2 (see title)
  
This appears more relevant
  http://livedocs.macromedia.com/labs/1/flex/wwhelp/wwhimpl/js/html/wwhelp
.htm?href="">
  
  
--- In flexcoders@yahoogroups.com, Sreejith Unnikrishnan
[EMAIL PROTECTED]
wrote:

 Open the livedocs ..
 http://livedocs.macromedia.com/flex/15/asdocs_en/
 
 Click on DataGrid
 Scroll Down to the end of the page
 Look at the second sample ...
 
 I bet you didnt bother to check the docs first!
 
 
 yaagcur wrote:
 
  Really?
  I just checked my application
  editable="false" clicking gets no action
  editable="true" clicking performs as required
 
  --- In flexcoders@yahoogroups.com, "Joan Tan"
[EMAIL PROTECTED] wrote:
  
   Its not required for editable="true" to get cellPress
events.
  
   
  
   - Joan
  

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









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Building a dynamic flowchart in FLEX

2005-12-16 Thread Sreejith Unnikrishnan






First I would like to know if this is even possible in FLEX
Yes!

if so what kind of container would hold such objects
A Canvas, it could hold objects with x,y positions defined dynamically

and second if anyone has seen anything similar to this to give me an
idea of what I am up against. 
http://www.bridgewerx.com/products/testdrive.htm
Click on the "click here to start the test drive".

Sree


rgwilson26 wrote:

I am working on a project where I would like to build a flow chart that
  
is built on data input by the user. For example, when the user inputs a
  
flow of events via input boxes FLEX will create a flowchart boxes that 
will be connected to eachother. I would also like each box to be 
dynamic and able to be moved anywhere on the screen by the user 
(similar to functionality of visio or other diagramming software). 
  
First I would like to know if this is even possible in FLEX (if so what
  
kind of container would hold such objects), and second if anyone has 
seen anything similar to this to give me an idea of what I am up 
against. 
  
Thanks for your suggestions.
  
  
  
  









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Local data access in Flex

2005-12-14 Thread Sreejith Unnikrishnan






Correction. For XML, check out "Embedding static XML document".

Sree

PS: When you say offline, are u saying u do not run the app off a
server or is it that you do not access data over the server?
In the first case, Nick is right, you cannot do it in 1.5, it is
possible in 2.0.


Sreejith Unnikrishnan wrote:

  
  
Check the samples that come with Flex 1.5.
For XML read, check XML over HTTP
For offline access, check "Occassionaly Connected Client."
  
Sree
  
weeksie31 wrote:
  Hi all,

I need to evaluate the ability of a flex app to read from xml files 
stored locally (local disk/network).

Is this at all possible? Anyone know of any blog entries etc that 
discuss offline flex usage?

Thanks,

Nick





  









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Re: Local data access in Flex

2005-12-14 Thread Sreejith Unnikrishnan






Nick,

Yes, you can take the XML embed approach.
Yes, you can create a projector. You have to be just careful about the
dependant resources including the XML.
You might have some issues. I have not been able to move the exe to a
different folder and succesfully run it.

Tip: right-click and select play from the contect menu. For some reason
it does not initialize on its own!

Check out the \Flex Builder 2 Alpha 1\samples\flexstore\flexstore.swf
This uses a \Flex Builder 2 Alpha 1\samples\flexstore\data\catlog.xml
file.

You will have a better idea how this works!

Sree

weeksie31 wrote:

Sree,
  
By offline I mean the data is not on the web server running the flex 
app.
  
Is it still possible to use the embedding xml approach, with remote 
flex app and local data? 
  
PS The flex app doesn't have to execute on a web server for my 
requirements, is it possible to run v2.0 as a local flash projector 
type app?
  
Cheers,
  
Nick
  
  
  
  









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Drag Box around a container

2005-12-14 Thread Sreejith Unnikrishnan






Depends on what the container is:
If you are using a canvas or other absolute position container, the
top-left corner of the box is the box.x and box.y values.

It can get tricky if you are using any other container such as HBox,
Form etc.

Brian McPheeters wrote:

  
  I am trying to
figure out the drag/drop controls so I can let the user move the Box
control or something similiar around a container. I have the drag/drop
portions working but I am unable to figure out the correct coordinates
to give to the Box.move() method. I guess what I am looking for is the
top left of where the Box was dragged to. Any suggestions on how to go
about doing this? I have seen similar messages about this but the links
they reference are now dead http://www.mail-archive.com/flexcoders@yahoogroups.com/msg03724.html.
  
  Thanks
  Brian









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Drag Box around a container

2005-12-14 Thread Sreejith Unnikrishnan






Here is a working sample for you!

?xml
version="1.0" encoding="utf-8"?
mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml"
xmlns="*" mouseMove="doMouseMove()"
mx:Script
 ![CDATA[
  private var bIsDown:Boolean = false;
 private var lastX:Number;
 private var lastY:Number;

 private function doMouseDown() {
 bIsDown = true;
 lastX = mouseX;
 lastY = mouseY;
 }

 private function doMouseUp() {
 bIsDown = false;
 }

 private function doMouseMove() {
 if (bIsDown) {
 var deltaX:Number = mouseX - lastX;
 var deltaY:Number = mouseY - lastY;

 selector.x += deltaX;
 selector.y += deltaY;

 lastX = mouseX;
 lastY = mouseY;
 }
 }
 ]]
/mx:Script
 
 mx:Box id="selector" width="200" height="200"
backgroundColor="#FFCC00" mouseDown="doMouseDown()"
mouseUp="doMouseUp()"
  mx:Text text="{selector.x}" /
  mx:Text text="{selector.y}" /
 /mx:Box
/mx:Application

Just change the xmlns if u want to use Flex 1.5!

Regards
Sree

Brian McPheeters wrote:

  
  
  box.x and
box.y will give me the new top-left corner that the box was dragged to?
>From my testing it seemed to just give me the starting x,y the object
was at.
  
  Brian
  
  
  
  From: flexcoders@yahoogroups.com
on behalf of Sreejith Unnikrishnan
  Sent: Wed 12/14/2005 10:22 AM
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] Drag Box around a container
  
  
  Depends on what the container is:
If you are using a canvas or other absolute position container, the
top-left corner of the box is the box.x and box.y values.
  
It can get tricky if you are using any other container such as HBox,
Form etc.
  
Brian McPheeters wrote:
  
I am trying to
figure out the drag/drop controls so I can let the user move the Box
control or something similiar around a container. I have the drag/drop
portions working but I am unable to figure out the correct coordinates
to give to the Box.move() method. I guess what I am looking for is the
top left of where the Box was dragged to. Any suggestions on how to go
about doing this? I have seen similar messages about this but the links
they reference are now dead http://www.mail-archive.com/flexcoders@yahoogroups.com/msg03724.html.

Thanks
Brian
  
  
  
  
  --
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
  
  
  
  
  YAHOO!
GROUPS LINKS 
  
  
 Visit your group "flexcoders" on the
web.

  To unsubscribe from this group,
send an email to:
[EMAIL PROTECTED]

  Your use of Yahoo! Groups is
subject to the Yahoo!
Terms of Service.

  
  
  
  
  
  









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Themes (was TemplateMonster.com)

2005-12-09 Thread Sreejith Unnikrishnan






Hi Matt,
Is this swc file available for download?
The 1.5 swcs are not compatible with 2.0, is it?

Sree

Matt Horn wrote:

  
  
  The Halo theme is now a separate
SWC that you can apply (to get that old-school Flex look). Might be a
good place to start looking at what goes into themes. I haven't looked
at it myself yet, since some of the theme implementation details are
still up in the air.
  
  matt horn
  flex docs
  
  

 From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of Tariq Ahmed
Sent: Friday, December 09, 2005 12:47 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Themes (was TemplateMonster.com)


On the topic of themes... I never really looked into themes since that
wasn't a priority. But was thinking it'd be great to start making an
open library of themes for Flex2.

Has anyone produced graphical skins or an entire theme that includes
skins for Flex2?

Has the process changed from 1.5 to 2? In 1.5 from my understanding you
basically modified HaloTheme.fla and exported it to a swc. I was
reading in 2.0 that you use compc to accomplish it, unfortunately page
567 of the app dev guide has been completed yet which covers 9 slicing.

Thx!

John C. Bland II wrote:
That's an interesting comment. Is that where the majority
of templates are done, honestly?
  
Guess it boils down to, you get what you pay for (regardless of who
develops it). 
  
  On 12/8/05, Robert Thompson [EMAIL PROTECTED]
wrote:
  
That's because these are primarily Macintosh developers
from England.
  
  


  








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





  




  
  
  YAHOO! GROUPS LINKS



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



  













[flexcoders] Flex2: PanelAlpha and BorderStyle would not work together

2005-12-08 Thread Sreejith Unnikrishnan






I noticed that the Panel background
color changes to opaque white if you specify a borderStyle.
The transparency is maintained if you specify any other attribute. As
soon as you specify the borderStyle, it could be solid, inset or
outset, the transparency seems to go awry!

A bug? OR am I missing something here ...
I loved the way the Panel looked in F1.5 :-(

Sree







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





  




  
  
  YAHOO! GROUPS LINKS



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



  













[flexcoders] Flex Builder - Plugin Version Problem

2005-12-07 Thread Sreejith Unnikrishnan






After I installed the plugin version
of Zorn on Eclipse, I get the following error:

Unable to create this part due to an internal error. Reason for the
failure: An unexpected exception was thrown.

The complete error is as follows:

java.lang.NullPointerException
 at zorn.editors.mxml.MXMLEditor.createPages(MXMLEditor.java:186)
 at
org.eclipse.ui.part.MultiPageEditorPart.createPartControl(MultiPageEditorPart.java:241)
 at
org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:585)
 at
org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:365)
 at
org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:552)
 at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:283)
 at
org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:126)
 at
org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:268)
 at
org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
 at
org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:391)
 at
org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1102)
 at
org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:1051)
 at org.eclipse.ui.internal.PartStack.showPart(PartStack.java:1256)
 at org.eclipse.ui.internal.PartStack.add(PartStack.java:442)
 at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:109)
 at
org.eclipse.ui.internal.EditorSashContainer.addEditor(EditorSashContainer.java:60)
 at
org.eclipse.ui.internal.EditorAreaHelper.addToLayout(EditorAreaHelper.java:212)
 at
org.eclipse.ui.internal.EditorAreaHelper.addEditor(EditorAreaHelper.java:202)
 at
org.eclipse.ui.internal.EditorManager.createEditorTab(EditorManager.java:753)
 at
org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:665)
 at
org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:628)
 at
org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2323)
 at
org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2258)
 at
org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:2250)
 at
org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2236)
 at
org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
 at
org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2231)
 at
org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2204)
 at org.eclipse.ui.ide.IDE.openEditor(IDE.java:401)
 at
zorn.project.ui.FlexProjectPlugin.openEditor(FlexProjectPlugin.java:198)
 at
zorn.project.ui.FlexProjectPlugin.access$2(FlexProjectPlugin.java:193)
 at
zorn.project.ui.FlexProjectPlugin$1.runInUIThread(FlexProjectPlugin.java:136)
 at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:93)
 at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
 at
org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
 at
org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3057)
 at
org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2716)
 at
org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699)
 at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663)
 at
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367)
 at
org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143)

Windows 2000, Eclipse 3.1

Any trouble-shooting tips?







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Flex Builder - Plugin Version Problem

2005-12-07 Thread Sreejith Unnikrishnan






Thanks DK,

I did find this statement.
"Flex Builder 2 in the plug-in configuration is not compatible
with the
Web Standard Tools (WST) plug-in. WST users can use Flex Builder 2 in
the stand-alone configuration."

But I followed the instructions on Darron Schall's  Dimitrios
instructions to get MXML coding in Eclipse and this required the
installation of Web Tools Platform of which WST is a sub project.
Is there anybody who can elaborate on how one can configure an Eclipse
IDE for Flex 2. I need to code JAVA as well.

It sounds a little strange :-), (used to saying Macromedia!) but
anybody from Adobe who can suggest a typical configuration procedure.

Regards
Sree

Douglas Knudsen wrote:

  see http://labs.macromedia.com/technologies/flexbuilder2/
  this issue is discussed there. Zorn is incompatible with some
eclipse plugins.
  
  DK
  

  On 12/7/05, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote:
  After I installed the plugin version of
Zorn on Eclipse, I get the following error:


Unable to create this part due to an internal error. Reason for the
failure: An unexpected exception was thrown.

The complete error is as follows:

java.lang.NullPointerException
 at zorn.editors.mxml.MXMLEditor.createPages
(MXMLEditor.java:186)
 at
org.eclipse.ui.part.MultiPageEditorPart.createPartControl(MultiPageEditorPart.java:241)
 at
org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:585)
 at
org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:365)
 at
org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:552)
 at org.eclipse.ui.internal.PartPane.setVisible
(PartPane.java:283)
 at
org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:126)
 at
org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java
:268)
 at
org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
 at
org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java
:391)
 at
org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1102)
 at
org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:1051)
 at org.eclipse.ui.internal.PartStack.showPart
(PartStack.java:1256)
 at org.eclipse.ui.internal.PartStack.add(PartStack.java:442)
 at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:109)
 at org.eclipse.ui.internal.EditorSashContainer.addEditor
(EditorSashContainer.java:60)
 at
org.eclipse.ui.internal.EditorAreaHelper.addToLayout(EditorAreaHelper.java:212)
 at
org.eclipse.ui.internal.EditorAreaHelper.addEditor(EditorAreaHelper.java:202)
 at org.eclipse.ui.internal.EditorManager.createEditorTab
(EditorManager.java:753)
 at
org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:665)
 at
org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:628)
 at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched
(WorkbenchPage.java:2323)
 at
org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2258)
 at
org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:2250)
 at org.eclipse.ui.internal.WorkbenchPage$9.run
(WorkbenchPage.java:2236)
 at
org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
 at
org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2231)
 at org.eclipse.ui.internal.WorkbenchPage.openEditor
(WorkbenchPage.java:2204)
 at org.eclipse.ui.ide.IDE.openEditor(IDE.java:401)
 at
zorn.project.ui.FlexProjectPlugin.openEditor(FlexProjectPlugin.java:198)
 at
zorn.project.ui.FlexProjectPlugin.access$2(FlexProjectPlugin.java
:193)
 at
zorn.project.ui.FlexProjectPlugin$1.runInUIThread(FlexProjectPlugin.java:136)
 at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:93)
 at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java
:35)
 at
org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
 at
org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3057)
 at org.eclipse.swt.widgets.Display.readAndDispatch
(Display.java:2716)
 at
org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699)
 at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663)
 at org.eclipse.ui.internal.Workbench.createAndRunWorkbench
(Workbench.java:367)
 at
org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143)

Windows 2000, Eclipse 3.1

Any trouble-shooting tips?


--
Flexcoders Mailing List

FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED
LINKS 

  

  
Web site design development 
  
Computer software development 
  
Software design and development 


  
Macromedia flex 
  
Software development bes

Re: [flexcoders] Disabling toolbar of IE/ RIAs and the Refresh button- a potential usability problem

2005-12-06 Thread Sreejith Unnikrishnan






Sandip,
here is link to how u can detect the refresh button.
http://www.codeproject.com/internet/detecting_the_ie_refresh.asp
You are on your own from here :-). I am sure nobody on this forum is
really interested in this. This has nothing to do with Flex.

Having said that, there is something that I was thinking on this topic.

In the wide web world, an internet application that is aimed at the
normal user (unordained in the RIA world), it is possible that the user
clicks on the refresh button to reload some data, the same way he/she
is used to in the HTML world.
Then there IS a problem. And I know this is not a Flex problem. This is
a problem with ANY RIA.

It might be raked up somebody like Jacob Nielsen who once famously said
and I quote
"About 99% of the time, the presence of Flash on a website
constitutes a
usability disease. Although there are rare occurrences of good Flash
design (it even adds value on occasion), the use of Flash typically
lowers usability. In most cases, we would be better off if these
multimedia objects were removed.
Flash tends to degrade websites for three reasons: it
encourages design abuse, it breaks with the Web's fundamental
interaction principles, and it distracts attention from the site's core
value."
http://www.useit.com/alertbox/20001029.html
(that I discarded it to the same folder that contains the article that
said Frames are
kludges that break important parts of the Web and Why Frames Suck is
the truth for I cannot imagine the LiveDocs without frames!)

... that then resulted in Flash Usability Article from Macromedia that
said Flash 99% good ...
http://www.macromedia.com/devnet/flash/articles/flash99good.html

At the end of all the agreement is that technologies such as Flash are
moving the user OUT of the restrictions and constraints of a browser -
whatever browser that is. I would even like to see a RIA browser that
does not have the REFRESH, BACK,FORWARD buttons in them!

For the current problem, I think the best solution is to provide a
eye-catching icon next to a datagrid or any container that invites the
user to click if needs to refresh the data and I think Flex handles it
wuite beautifully. Infact that is the strength and foundation of an RIA
technology!

Sree


Nick Weekes wrote:

  
  
  Sandip,
  
  Forget about browser
specifics like the refresh button, listen for events broadcast by your
flex app instead, to give you an indication of whats going on. 
  
  For example, the initialize event could be used to determine if your
application/component has started, or if the refresh button has been
pressed and forced the app to begin re-loading itself.
  
  Im really new to Flex
myself, and Im sure some of the veterans of the list have better
approaches to this...
  
  Cheers,
  
  Nick
  
  
  From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of Sandip Patil
  Sent: 06 December 2005 12:06
  To: flexcoders@yahoogroups.com
  Subject: RE: [flexcoders] Disabling toolbar of IE
  
  
  Hi Neek,
  
  I agree with you that I will use session etc.
  In fact I did navigation well upto end of my application
i.e.depending upon username  password.
  But let me clear my doubt again.
  Sorry,it might be wrong thinking by meagain.
  How I will understand that IE's refresh button is clicked.Once I
come to know this then its easy for me to navigate.
  
  Sandip
  
  Nick Weekes [EMAIL PROTECTED] wrote:
  

Sandip,

Firstly,
let me agree with Sree in his useful comments to you yesterday, there
is a possibility that you are going about this in too much of an html
way rather than flex way. Disabling anything like buttons/toolbars is
going to really annoy your users, as its their choice whether or not
they are there, not yours.

I gather
you are trying to avoid the user reloading the app from the beginning,
well why not store a session variables/cookies etc that maintains
state/navigation or whatever, then if the user does hit refresh you can
query your session vars and navigate accordingly from within your flex
app.

Cheers,

Nick



 From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of sandip_patil01
Sent: 06 December 2005 08:41
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Disabling toolbar of IE


Hi All,

I tried various ways to handle back  refresh button but its not 
working.
So anybody know how to disable toolbar of IE in Flex.So that user will 
not able to hit Back/refresh button of IE.

S P







  
  
  
  Yahoo!
DSL Something to write home about. Just $16.99/mo. or less
  
  Yahoo!
DSL Something to write home about. Just $16.99/mo. or less








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





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group 

Re: [flexcoders] (Article) ArrayList Vs LinkedHashSet - Performance issue

2005-12-06 Thread Sreejith Unnikrishnan






Hello???

Girish Ahankari wrote:

Hi All
 
I have added some more Java internals Questions to the
existing link @ http://agirish.50webs.com
  
 
 
 Have a look and clear your interviews...
 
 All the best
 Girish
  
  
  
__ 
Yahoo! DSL  Something to write home about. 
Just $16.99/mo. or less. 
dsl.yahoo.com 
  
  









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Re: embeded link text in a label tag

2005-12-06 Thread Sreejith Unnikrishnan






 mx:HBox
  mx:Label id="trainingQuestion8" text="If equipment was
involved ,
   see the" /
  mx:Link label="Environment and Equipment"
   click="viewstackID.selectedIndex = X" /
  mx:Label text="questions." /
  mx:Spacer width="100%" /
 /mx:HBox

Just tinker
around to prevent the text from wrapping!

Sree


rgwilson26 wrote:

Thanks Rob for the comment...I probably haven't been clear enough. I 
know how to navigate a viewstack, but my problem is that I only want 
certain text in a label to be linked. For example;
  
mx:Label id="myLabel" text="In this section, click here to see all 
questions. "/
  
I only want "here" to be linked to a designated viewstack.
I can use an onclick event but it will highlight the entire label 
text. I am looking for a way to differentiate text to be linked 
inside a label tag.
  
  
--- In flexcoders@yahoogroups.com, "Rob Davis" [EMAIL PROTECTED]
wrote:

 You should have said it was in a viewstack in the first place.
I'm 
not
 sure about in Flex 1.5, but in 2 you simply need
 "[viewstackID].selectedIndex = X" where X is the index # of the 
layer
 you want to show.
 
 Also, AFAIK you can't just make part of a label a link, you'd have
  
to
 either do all or nothing, or else make those 3 words a separate 
label.
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On
 Behalf Of rgwilson26
 Sent: Tuesday, December 06, 2005 7:36 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: embeded link text in a label tag
 
 Actually, the link is currently in a viewstack, and I want the
link 
to
 navigate to a different page in my viewstack. That seems like a
lot 
of
 code for a simple link. Thanks for your help though. I will 
continue my
 search.
 
 --- In flexcoders@yahoogroups.com, "fowleryj"
[EMAIL PROTECTED] wrote:
 
  Are you looking to pop up a new window for the Environment
and 
  Equipment section? If so, you could use the mouseDown
attribute:
  
  mx:Label id="trainingQuestion8" text="If equipment was
involved,
 see
  the Environment and Equipment questions."
  mouseDown="mx.managers.PopUpManager.createPopUp(_root,
  com.tjctechnology.registry.desktop.view.ExternalPartyFinder,
true,
  {deferred: true})"
mouseOver="trainingQuestion8.setStyle('color',
  '#FF')" mouseOut="trainingQuestion8.setStyle
 ('color', '#00')"/
  
  Or embed a method in the mouseDown attribute that would do 
something 
  similar.
  
  --- In flexcoders@yahoogroups.com, "rgwilson26"
[EMAIL PROTECTED]
 wrote:
  
   I would like to know how to set text in a label to
linked text.
   
   
   I want the words "Environment and Equipment" linked to a
section
 in my 
   application.
   
   ***
   
   mx:Label id="trainingQuestion8" text="If equipment
was 
involved,
 see 
   the Environment and Equipment questions."/
   
   ***
   
   thanks
 
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
~--
 Fair play? Video games influencing politics. Click and talk back!
 http://us.click.yahoo.com/2jUsvC/tzNLAA/TtwFAA/nhFolB/TM


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

  
  
  
  
  









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Restricting refresh button of browser

2005-12-05 Thread Sreejith Unnikrishnan






Why would you want to do that?

Anyways, I hope u meant that u wanted to refresh the current view and
that means refreshing some data?
Why would'nt you just add a "refresh" icon that would fetch the data
and refresh the view?

sandip_patil01 wrote:

Hi All,
  
let say I am in middel of my application  if I refresh the page
with 
browser refresh button the entire application is loading again.
But I want only the current page to be refreshed on which I clicked 
browsers refresh button.
Any suggetion ?
  
Sandip P.
  
  
  
  
  
  
  









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] How to put button inside DataGridColoumn

2005-12-05 Thread Sreejith Unnikrishnan






You should use a cellRenderer.
The Flex Samples come with examples of cellRenderers.
Or you can refer to the following URL
http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentationfile=0531.htm#wp146885


jagabcdeff wrote:

Hi All,
  
Is there any possibility to put button inside mx:DataGridColumn
  
I tried with following code 
  
mx:DataGrid id=""
 mx:columns
 mx:Array
 mx:DataGridColumn headerText="Name" columnName="Name" /
 mx:DataGridColumn headerText="Address" 
columnName="Address" /
 mx:DataGridColumn columnName="active" headerText="Active" 
textAlign="center" 
  mx:Button label="View" /
 /mx:DataGridColumn
  
 /mx:Array
 
 /mx:columns
 /mx:DataGrid
  
but i got error like
Don't know how to parse 
element "http://www.macromedia.com/2003/mxml:Button"
  
Let me know Whether above code is correct or not ? if not 
how to do this..?
any help is appreciate,
  
thanks,
Jagadeesh
  
  
  
  
  
  
  
  
  









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] To Moderator

2005-12-05 Thread Sreejith Unnikrishnan






There defenitely seems to be a problem with delivery of messages.
For example, some mails arrive earlier than a mail with a later
time-stamp (a lot of that happened today as well!)

With that experience, I believe it has NOTHIN to do with Yahoo.
I tend to believe that it has to do with each one's mail server.

'X' might send his mail at 1000 and then his mail server sends it to
Yahoo at 1010 and it gets into my mailbox at 1010 (should have been
1000)
'Y' might send his mail at 1005 and then his mail server sends it to
Yahoo at 1005 and it gets into my mailbox at 1005

So even though X sent his mail earlier, I receive Y's mail first!

Hmm ... I had fun writing that! Been a tiring day at work!

:-)
Sree

Steven Webster wrote:

  
  

  
  All,
  
  First posts are moderated only;
thereafter, your emails go straight to the list and should appear
almost immediately.
  
  If for some reason, all your
posts appear moderated, drop us a note off-list, as sometimes Yahoo!
mark individuals as "moderate all posts".
  
  Steven
  
  --
  Steven
Webster
  Practice
Director (Rich Internet Applications)
  Macromedia
Consulting EMEA
  
  Office:
+ 44 (0) 131 338 6108
  Mobile:
+44 (0) 7917 428 947
  
  
  

 From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of Matt Chotin
Sent: 03 December 2005 20:55
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] To Moderator



The
moderators only approve the first message you send (though there have
been times where for some reason the moderators have to approve each
message, they usually let the person know though and try to work it
out). I have a different problem where I sometimes see people
responding to questions that never got to me in the first place. As
long as someone responded though it doesnt bother me too much J

Matt



 
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ralf Rottmann
Sent: Friday,
December 02, 2005 5:13 PM
To: flexcoders@yahoogroups.com
Subject: RE:
[flexcoders] To Moderator


Somewhere I read that this list is moderated.
This might be the
explanation for "varying distribution
patterns". I am based in Germany
and experience a much better
performance at night time. Maybe Mr./Mrs.
Moderator are from the US? :-)


Ralf Rottmann 
-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
Behalf Of Tracy Spratt
Sent: Samstag, 3. Dezember 2005 02:13
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] To Moderator

Interesting, I am accustomed to having
my posts displayed within a
minute or two. I wonder what is the
difference?

I use Outlook, BTW.

Tracy

-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
Behalf Of Ralf Rottmann
Sent: Thursday, December 01, 2005 8:13
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] To Moderator

I can replicate the issue however my
posts never got lost, so I never
had to resend. But yes, sometimes it
takes quite long until a post gets
distributed to the list. I don't know
about the inner workings of
Yahoolists but maybe posts get flushed
out like 10 times a day instead
of instant delivery.

So this might not be a bug but "by
design". I would appreciate instant
distribution, too.



---
-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On
Behalf Of JIGNESH M. DODIYA
Sent: Donnerstag, 1. Dezember 2005
12:55
To: flexcoders@yahoogroups.com
Subject: [flexcoders] To Moderator

Hellow Mr. Moderator,

I just want to describe you my
problem..Hope u can help me.

Its seen often that whenever I post my
problem in the Flexcoder as 
new post, i have seen that I get the
Email in my list very late, And 
many times I have faced the problem
that I have to send same post 
for 2-3 time to get it posted in
Flexcoder...Such problems just 
discourage me to post on Flexcoder.

I have verified all the posibilities
if I am doing something wrong 
to post, but its fair method.

So, hope you can do something where's
actually I face problem.

Your effert will highly appreciated.

Regards,

JIgnesh











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

Yahoo! Groups Links












--
Flexcoders Mailing List
FAQ: 

Re: [flexcoders] Adobe's Acquisition of Macromedia Expected to Close on December 3, 2005

2005-12-05 Thread Sreejith Unnikrishnan






And its funny if u have the old CSS (formerly Adobe) cached on your m/c
... really screws up the layout ... especially the banner eating into
the menu bar!

Sree

Douglas Knudsen wrote:

well, they could have come up with a better Flash ad on the home page!
Horrible!
  http://www.macromedia.com/
  
DK
  
On 12/2/05, Zach Stepek [EMAIL PROTECTED] wrote:
 No more motorcycles? Doesn't that detract directly from the pink
hair,
 pierced body parts culture that Macromedia was so well known for
during
 the early years of Flash? Maybe this merger will affect more than
I
 thought... ;-)

 - Zach Stepek







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







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









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Livedocs for Flex 2.0

2005-12-05 Thread Sreejith Unnikrishnan






http://livedocs.macromedia.com/labs/1/flex/langref/index.html

Ralf Rottmann wrote:

  
  
  
  
  By the way, is there a
link to the Flex 2.0 Live docs
anywhere?
  
  Ralf Rottmann
  
  









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Livedocs for Flex 2.0

2005-12-05 Thread Sreejith Unnikrishnan






Ralph, all the documents are available in PDF and HTML format at
labs.macromedia.com the same place where u downloaded ur Flex2 alpha.

Ralf Rottmann wrote:

  
  


  
  
  Thanks to
all of you. I wonder whether
there is a pdf version of it but chances are we gotta build a
livedocs2pdf
component with Flex 2.0 J
  
  
  
  Ralf Rottmann | Director
Sales Marketing | VoicInt Telecommunications
GmbH
m:+49-(0)170-914-5495 | f: +49-(0)231-557402-99 | e: [EMAIL PROTECTED]
---
  
  
  
  
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Hansen
  Sent: Montag, 5.
Dezember 2005
16:41
  To: flexcoders@yahoogroups.com
  Subject: Re:
[flexcoders] Livedocs
for Flex 2.0
  
  
  i use
this:
  
  http://www.google.com/search?num=100hl=enlr=safe=offq=site%3Ahttp%3A%2F%2Flivedocs.macromedia.com%2Flabs%2F1%2FflexbtnG=Search
  
  
cheers
-micahel
  
  
  
  On
12/5/05, Ralf
Rottmann [EMAIL PROTECTED]
wrote:
  
  By
the way, is there a link to the Flex 2.0 Live docs anywhere?
  
  Ralf Rottmann 
  
  
  
  
  --
  Flexcoders Mailing List
  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
  
  
  
  
  
  SPONSORED
LINKS 
  
  

  

Web site design development 


Computer software development 


Software design and development


  
  

Macromedia flex 


Software development best practice





  

  
  
  
  
  YAHOO!
GROUPS LINKS
  
  
  
Visit your group
"flexcoders"
on the web.

To unsubscribe
from this group, send an email to:
 [EMAIL PROTECTED]

Your use of
Yahoo! Groups is subject to the Yahoo! Terms
of Service.
  
  
  
  
  
  
  

  
  








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Re: Closing via Menu VS via Shortcut Key

2005-12-05 Thread Sreejith Unnikrishnan






That _javascript_ would not work. You cannot close the main window even
in normal HTML as far as I know.
Try doing a trace ... I am sure the function is being called, but it
will not work. The browsers by default will not allow you to do this.
This is a security feature AFAIK.

Try:

html
body
a href="" class="moz-txt-link-rfc2396E" href="_javascript_:self.close();">"_javascript_:self.close();"Close this window/a
/body
/html

Sree

fowleryj wrote:

I've also noticed that replacing the "getURL" line with a function
call results in the function not being called:
  
Instead of
 if(currentKeyPressed == 99 
lastKeyPressedControl) {
 mx.controls.Alert.show('CTRL + c');
 getURL("_javascript_:self.close();");
 }
  
I now have
 if(currentKeyPressed == 99 
lastKeyPressedControl) {
 mx.controls.Alert.show('CTRL + c');
 closeWin();
 }
  
And closeWin() looks like this:
public function closeWin() {
 mx.controls.Alert.show("closeWin");
 getURL("_javascript_:self.close();");
}
  
The "closeWin" popup is never fired. Any ideas? Is anyone else
successfully closing a window via a shortcut key combination?
  
--- In flexcoders@yahoogroups.com, "fowleryj" [EMAIL PROTECTED]
wrote:

 Hello all,
 
 I'm able to close a popup window in my application via the
menuChangeHandler, like so:
 
 private function menuChangeHandler(event) {
 if(event.menuItem.attributes.data == "Close") {
 getURL("_javascript_:self.close();");
 }
 }
 
 However, when I try to close the window via a shortcut key, I get
the message box I'm invoking, but the window itself doesn't close
(note that even before I put the message box code in, the window
didn't close, so that's not preventing the window from closing):
 
 var lastKeyPressedControl:Boolean = false;
 var currentKeyPressed;
 public function initKeyListener() {
 var keyListener = new Object();
 keyListener. { 
 currentKeyPressed = Key.getAscii();
 if(currentKeyPressed == 99 
lastKeyPressedControl) {
 mx.controls.Alert.show('CTRL + c');
 getURL("_javascript_:self.close();");
 }
 lastKeyPressedControl = Key.isDown(Key.CONTROL);
 }
 Key.addListener(keyListener); 
 }
 
 Other shortcut keys I've checked for are recognized and their
actions carried out... why does this one not work properly?
 
 Thanks in advance.
  
  
  
  
  
  









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Re: Closing via Menu VS via Shortcut Key

2005-12-05 Thread Sreejith Unnikrishnan






Maybe I am still confused, but if you have popped up "browser" windows
that has to be closed why would u need a script to close via Shortcut
Key?
Would'nt the regular CTRL+W be enough? Just curious!

But, if u r talking about Flex popups, you would need a script. But
again, why would u need _javascript_ to do that ..

Ok, agreed. I am all confused! Maybe I am missing something here ...

fowleryj wrote:

Thanks for the reply, Sree. Also, just to clarify, the window whose
code I have posted is not the "main" window... the application is very
large, so we've designed it such that the main page can open new
browser windows when necessary. This window I am concerned with has
been opened by the "main" window via the following code:
  
getURL('_javascript_:void(window.open("http://url
removed", null,
"status=1"));');
  
I am able to close the window via the MenuBar using the
getURL("_javascript_:self.close();"); code, but I would like the user to
have the option of closing the window with a shortcut key. It's
confusing to me why code that works as a menu option won't work as a
shortcut key.
  
  
  
  









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





  




  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] Flex 2.0 Alpha: dispatchEvent(Event) method in ActionScript class

2005-12-03 Thread Sreejith Unnikrishnan






Try flash.events.EventDispatcher



Ralf Rottmann wrote:

  Re: [flexcoders] Flex 2.0 Alpha: dispatchEvent(Event) method
in ActionScript class

  Thanks.
Part of the problem is that there is no EventDispatcher class.
importing mx.events.* does not help. The popup typeahead in Eclipse
does not bring it up either.
  
Is extending Sprite an option even though the class does nothing
graphical?
  
Regards
RR
--
mobile: +49-(0)170-914-5495
email: [EMAIL PROTECTED]
  
  
  
  
-Original Message-
From: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Fri Dec 02 20:15:47 2005
Subject: Re: [flexcoders] Flex 2.0 Alpha: dispatchEvent(Event) method
in ActionScript class
  
your class has to either extend EventDispatcher or if you are already
inheriting from something else and cant put EventDispatcher in the class
heirarchy you will have to implement the IEventDispatcher interface
yourself.
  
thanks,
  
Martin
  
  
Ralf Rottmann wrote:
 Hi there,



 I get a compile time Access of undefined property dispatchEvent
error
 in a .as class file. I have imported flash.events.*; and
mx.events.*;

 dispatchEvent is available in MXML files but I want to fire an
event
 from an ActionScript class.



 Please help!



 Ralf Rottmann

--
Martin Wood
  
  http://relivethefuture.com/choronzon
  
  
 Yahoo! Groups Sponsor
~--
Most low income households are not online. Help bridge the digital
divide today!
  http://us.click.yahoo.com/I258zB/QnQLAA/TtwFAA/nhFolB/TM
~-
  
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links
  
* To visit your group on the web, go to:
 http://groups.yahoo.com/group/flexcoders/
  
* To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
  
* Your use of Yahoo! Groups is subject to:
 http://docs.yahoo.com/info/terms/
  
  
  
  
  
  









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  













Re: [flexcoders] More questions regarding PopUp Windows in Flex 2.0

2005-12-03 Thread Sreejith Unnikrishnan

 quick answer on the titleBar transparency
 set the panelAlpha style property to 100

Should be a bug! But any non-zero value for panelAlpha renders the 
transparency to 100. Even 9 would work! :-)

Sree



 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/vlQLAA/TtwFAA/nhFolB/TM
~- 

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

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




  1   2   >