[flexcoders] FlexSession is Invalid error

2008-04-11 Thread Dima Ulich
Hi Everybody,


I have a flex application that uses messaging. The application handles 
mysql database manipulations which can be a very lengthy process. After about 1 
hour I keep receiving FlexSession is invalid exception. The whole process 
fails. I set rtmp channel idle timeout to 120 minutes. By the way session times 
out even during message activities. Does anyone know how to handle this. I was 
trying to google on FlexSession error but I wasn't able to find anything 
helpful. 



Dmitriy



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Re: [flexcoders] Preventing PopupManager to make popups over the MenuBar?

2007-03-15 Thread Dima Ulich
You could try move popups below the MenuBar. Something like this 
PopUpManager. addPopUp( window, parent, modal, 
PopUpManagerChildLi st.PARENT) ;
window.y = MenuBar.heigth;

or you could center your popup on the screen

PopUpManager.centerPopUp(window);

I hope that helps


- Original Message 
From: Danko Kozar [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, March 15, 2007 11:01:46 AM
Subject: [flexcoders] Preventing PopupManager to make popups over the MenuBar?

I've got the MenuBar on the top of the screen. And I'd like to force 
opened windows to go BELOW it, not over it.

I've been using PopUpManager. addPopUp( ) to make popups:

PopUpManager. addPopUp( window, parent, modal, 
PopUpManagerChildLi st.PARENT) ;

I tried everything, like setting parent to some display object that 
doesn't overlap with menubar on top. But it seems that addPopUp() 
places every new window on the top application level..

What am I doing wrong?





 

Don't get soaked.  Take a quick peek at the forecast
with the Yahoo! Search weather shortcut.
http://tools.search.yahoo.com/shortcuts/#loc_weather

[flexcoders] (unknown)

2007-01-23 Thread Dima Ulich
Hello, 
 
I'm using Renaun's RemoteObject to access amfphp. I have a script written 
in php to handle certain operations. It might take a long time to execute the 
operation. The problem I have is that when I run the script from flex 
application everything works fine, php script does what it suppose to do. But 
it seems like if it takes more than one hour to finish the operation 
NetConnection returns NetStatus.Call.Failed error. I wonder if there is a way 
to prevent that and have the process continue. Is it a bug? 
 
Street


 

Sucker-punch spam with award-winning protection. 
Try the free Yahoo! Mail Beta.
http://advision.webevents.yahoo.com/mailbeta/features_spam.html

Re: [flexcoders] Skipping editable Datagrid cells when tabbing

2006-12-13 Thread Dima Ulich
I think the best way in your case is listen to ITEM_EDIT_BEGINNING event. It 
will let you know what cell you are currently on and then you can skip it or 
let it go on editing

Dmitriy


- Original Message 
From: bsdensmore [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, December 14, 2006 1:53:07 AM
Subject: [flexcoders] Skipping editable Datagrid cells when tabbing

Does anyone know of a good way to skip over an editable cell in a
datagrid while tabbing?

I thought I could have an event listener that takes a KEY_UP trigger
on the event and look to see if the keycode was equal to 9 which is
the tab key and look to see which column they were in, and if they
were in the wrong column move them to the correct column.

trapping the key event works fine but I can't figure out how to tell
if they are in a specific column and then send them to the correct column.

Anyone have any ideas?

Thanks,
Ben





 

Need a quick answer? Get one in minutes from people who know.
Ask your question on www.Answers.yahoo.com

Re: [flexcoders] Listen to changes of a bindable variable

2006-10-17 Thread Dima Ulich
Use Paul William's solution.
It helps me alot.

check it here http://weblogs.macromedia.com/paulw/
hope it helps

Street
- Original Message From: Jonas Windey [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Tuesday, October 17, 2006 4:39:01 PMSubject: [flexcoders] Listen to changes of a bindable variable



Hi,

We’re using the riawave pattern (lightweight version of cairngorm), and I’m trying to listen to changes to our ModelLocator.

When I use a textfield that contains a direct reference to our model, everything is working fine:

mycomp text=” {model.currentUser.name}” / ..

Now I need to have a function that gets triggered when our model changes

We tried something like model.addEventListener(FlexEvent.DATA_CHANGE); but that gave no success.
Anyone know which event is being dispatched when a binded variable changes? Or is it not accessible?

The only other solution I see is using a getter and setter for every variable in our modellocator, and in the setter we could dispatch an event, but I want a cleaner solution.

Thanks for the tips!







Jonas Windey
Web Developer
T. +32 3 216 86 47

Pixco Interactive Division
T. +32 3 216 86 40
F. +32 3 216 86 49

http://www.pixco.com
 


[flexcoders] To Moderator

2006-10-08 Thread Dima Ulich


Hello Moderator,
 
 My name is Ulich Dmitriy. I have just noticed that some of my private messages were accedently sent public. They start with "READ THIS". Please remove them from the public list. 

Dmitriy
__._,_.___





--
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] FlashPlayer security puzzle

2006-10-01 Thread Dima Ulich


That's what I did. Sorry that didn't post about it. I should note that you guys did a great job documenting Flex, it seems like there are answers for almost everything.
Dima
- Original Message From: Matt Chotin [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Sunday, October 1, 2006 5:47:43 AMSubject: RE: [flexcoders] FlashPlayer security puzzle



If you debug your server you’ll see that the first request coming from the player is something like policy-file-request/. You need to react to that by returning the crossdomain xml syntax that allows access to the domain where the SWF was served from (or *). This would look like the same crossdomain as we document for the xml file.

HTH,
Matt





From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of Tracy SprattSent: Tuesday, September 26, 2006 8:32 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] FlashPlayer security puzzle





Do you know about the crossdomain. xml security policy file?

Tracy





From: [EMAIL PROTECTED] ups.com [mailto: [EMAIL PROTECTED] ups.com ] On Behalf Of Dima UlichSent: Tuesday, September 26, 2006 7:57 AMTo: [EMAIL PROTECTED] ups.comSubject: [flexcoders] FlashPlayer security puzzle





Hello FlexCoders,
 
 I've been struggling with flash security matters for some time now. I have a php socket server, which is used both by php server and Flex Application. My php application does some heavy work and sends feedback to socket server so a user could know what's happening in a moment. My flex application works just fine when I started from FlexBuilder (default location) anditis inlocalTrusted sandbox. As soon as I place it to my webserver my application can't connect to my socket server. I have tried different ways to make it work with no luck. 
 Does anybody know how can I connect to socket server when flex application is online? 
Thanks beforehand,
Dima 

 

__._,_.___





--
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] FlexUnit usage examples

2006-09-28 Thread Dima Ulich


Hi everybody,
 Does anyone have an example of using FlexUnit with async requests made to the server? Is there a way of testing existing flex application? How do you usually test yours?

Thanks
Dima
__._,_.___





--
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] DataGrid refresh problem

2006-07-31 Thread Dima Ulich


Everything should work fine.
Can you sendthe code to look at?

- Original Message From: ddanone2 [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Monday, July 31, 2006 5:45:40 PMSubject: [flexcoders] DataGrid refresh problem

Let me explain the situation:I have a main mxml, on load it instances a Localconnection to permitothers swf's establish a connection with it and receive data.I load one SWF (child) on main.mxml, it instances two Localconnection,one to connect to the main mxml and another to allow receiving datafrom main.The child has a DataGrid with a dataProvider.When child loads, ask to parent one parameter via Localconnection,then creates an HTTPService to request data to a PHP script, when itreceive the data renews the dataProvider content to refresh the DataGrid.Well, this works perfectly the first time, but subsequent times theDataGrid doesn't is refreshed, i've chequed the dataProvider has thenew data provided by the PHP script.Is there any other way to refresh the DataGrid to show the new datathat dataProvider has?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








   






  
  
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 AMFPHP and VOs

2006-07-23 Thread Dima Ulich


could you share the code with me too,
I couldn't map vos either
thank in advance
Dmitriy
- Original Message From: Andrea Varga [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Sunday, July 23, 2006 9:00:04 PMSubject: Re: [flexcoders] Flex AMFPHP and VOs

I just sent a private mail to you with the code.Oriol Gual wrote: I'd love to get some code :D 2006/7/22, Andrea Varga [EMAIL PROTECTED] t.com  mailto:[EMAIL PROTECTED] t.com: Hi, I've managed to make it work once, in both directions, also with Renaun's RemoteObjectAMF0. As I remember, I had to change something in the AMFPHP code to make it work from PHP to Flex, but maybe I did something wrong, and it should have been worked without those changes. I can send you some code if you still need them. Andi Oriol Gual wrote:  Well, it wasn't PHP 4, it was my fault. But, I still receive a plain  Object, not
 an object of my class. I'm using Renaun's solution to  connect to amfphp, what are you using?   Thanks. -- Flexcoders Mailing List FAQ: http://groups. yahoo.com/ group/flexcoders /files/flexcoder sFAQ.txt http://groups. yahoo.com/ group/flexcoders /files/flexcoder sFAQ.txt Search Archives: http://www.mail- archive.com/ flexcoders% 40yahoogroups. com Yahoo! Groups Links mailto:flexcoders-unsubscr [EMAIL PROTECTED] com -- Andrea VargaManaging Partner / Project ManagerCertified Macromedia Flash MX 2004 Developer-- Spin Development SrlTel: +44 207 043 1304Fax: +44 207 681 1376Skype ID: vargaandreaMon-Fri : 8 AM - 5 PM GMT+2Saturday: 8 AM - 4 PM GMT+2 (Support only) - - - --- 

__._,_.___





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

2006-07-20 Thread Dima Ulich




Hello, 

My name is Dmitriy. I think I can share what I've been working on during last couple of years. I work for Christian University in Russia. The school hired me to make a website for them and to write a program to automate students' registration, grades and etc. 
 The school didn't have much money to use commercially based solutions. So we decided to go RIA. We used MySQL, PHP an Apache hosted on FreeBSD to build a backed for our application. First version of a client was built using HTML and _javascript_.
But 8 months ago I saw Flex on Macromedia Website and Idecidedto go for it and do everything Idid in html with Flex. I started using it in it's Alpha state. So it was a risk for me to do it. But it I did. 
 Now I'm on my way to finish the first part of the school application whichis built using Flex 2  Cairngorm 2andhas following features:

Academic Programs Management
Semester/Sessions module
Classes Management
Teachers Management
Students Management
I even was able to build an interactive semesterschedule builder 

The RIA is really helpful here. We were able to automate the a lot's of processes which used to require lot's of hand work. 

I think Flex is a great platform. I wasn't been able to try FDS yet, since the school RIA still has the same PHP backend. I only used Remoting (AMFPHP) instead of XML or http queries. But I hope I will do it in the future. 

Another thing I had developed was a Flex based Bulletin Board. It's online and is used for secure staffcommunication.

I think these are the projects I can share about.

I would like to thank all the Adobe guys who spent these couple of years building such a greate tool as Flex. With Flex we don't have so many boundaries any more, we have much freedom to build things that were impossible before. 

Ulich Dmitriy

__._,_.___





--
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] ApplicationControlBar and dragManager bug?

2006-07-20 Thread Dima Ulich


Hello,

Did anyone see that before? I found it this morning. If you hava an applicationControlBar docked and have a list control which can accept drop operations, you will find that there is an offset for a dragManager. 
Try the example. Try to drag the 3 item to the top most position and you will see the red cross telling you can't drop there, and if you drag the item underneath the list element, you will see that you still can drop to canvas.
I guess it happens when you have ApplicationContollerBar docked. It seems like offsetHeight = ApplicationControlBar.height.

Just wonder if anyone can confirm that.
-

?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:services="com.business.*" xmlns:control="com.control.*" xmlns:ns1="com.comp.*" backgroundGradientColors="[#ff, #ff]"
mx:List x="40" y="58" width="148" dropEnabled="true" dragEnabled="true"mx:dataProvidermx:Stringtest1/mx:Stringmx:Stringtest2/mx:Stringmx:Stringtest3/mx:String/mx:dataProvider/mx:List
mx:ApplicationControlBar x="68" y="10" dock="true"mx:Button label="Button"//mx:ApplicationControlBar/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
  
  
  

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] AMFPHP netconnection problem

2006-06-30 Thread Dima Ulich
After installing flex 2.0 release I found that amfphp
results don't work correctly.

this two function suppose to work on netconnection
result, but the don't

public function AppendToGatewayUrl(s:String):void 
{
currentSid = s;
}

   public function RequestPersistentHeader( s : Object
) : void
{

rConnection.addHeader(s.name,s.mustUnderstand,s.data);
}



is this a bug,
does anyone know how to handle that?


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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




[flexcoders] AMFPHP problems

2006-06-21 Thread Dima Ulich
Hi everybody,

I just uploaded one project to the internet and
have faced the 
Malformed AMF message, connection may have dropped 
problem. Does anyone know what could cause the
problem. I just can't get it to work.

Thanks
Dima

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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





Re: [flexcoders] Save a BitMap to the server as a jpg? flex2

2006-06-01 Thread Dima Ulich



Would you send one to me too please
Thanks in advance

--- Luís Gustavo Sanabio [EMAIL PROTECTED] wrote:

 I sent the JPEGEncoder.as to your email.
 
 2006/5/31, Luís Gustavo Sanabio [EMAIL PROTECTED]:
 
  I have a BitMapData to JPG algoritm for FLEX 2.
 It's made in AS3. Do you
  want it?
  Sorry my English
 
  Gustavo Sanábio
 
 
 
  2006/5/31, Tim Scollick [EMAIL PROTECTED]:
 
   If .png is an option instead of .jpg, you could
 compress it on the
   client using this:
  

http://www.kaourantin.net/2005/10/png-encoder-in-as3.html.
  
   I'm sure you could make jpegs on the client--I'm
 just not sure how!
  
   You send the new byteArray to a server page as
 the .data field in a
   URLRequest. A word of warning though--last time
 that I checked that png
   encoder, it was for Flex2 Beta2 so there are a
 few small changes to make it
   work. I got it working with PNG and it's pretty
 solid with 640 x 480
   images.
  
   Unfortunately all of my code is at home, so I
 can't share any working
   code until this evening. Let me know if you
 need more details.
  
   Regards,
  
  
  
  
   Tim
  
   On 5/30/06, rigidcode [EMAIL PROTECTED] 
 wrote:
  
   
If I create a BitMap (or BitMapData) in Flex,
 how can I save it to the
server as a jpg? thank you.
   
rc
   
   
   
   
   
   
--
   
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][EMAIL PROTECTED]
   
Your use of Yahoo! Groups is subject to the
 Yahoo! Terms of
 Servicehttp://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

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


Re: [flexcoders] NumericStepper with floats

2006-05-27 Thread Dima Ulich



NumericStepper in my application works just fine
here is the code:

mx:NumericStepper x=60 y=4 height=20 width=57
textAlign=center stepSize=0.5/

You can set any stepSize you want;


--- mcantrell138 [EMAIL PROTECTED] wrote:

 Is it possible to use the NumericStepper with
 floats? It's rounding my
 numbers to integers.
 
 
 
 
 


__
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Possible player bug (kills the browser) f2b3 ie 6.0

2006-05-21 Thread Dima Ulich



In my application I'm using 2 dateFields and I need to
set selectableRange for one field based on dates
entred in the other one. In priveous beta everything
worked fine but in b3 it started to kill my browser. 

So I made another application to test it
Here it is, try to run the following code in your
browser. The problem occurs when you first set the
date in the top field and then change that date to a
date before.
___
?xml version=1.0 encoding=utf-8?
mx:Application
xmlns:mx=http://www.adobe.com/2006/mxml xmlns=*
backgroundColor=#C6D0DE 
mx:Script
 ![CDATA[
  
  private function setEdate():void
  {
   var date:Date = new Date(sDate.selectedDate);
   
   eDate.selectableRange={rangeStart: new Date(2006,
7, 1),
 rangeEnd: new Date(date.getFullYear(),
date.getMonth()+3, date.getDate()+7)};

  }
  
 ]]
/mx:Script

 mx:DateField id=sDate change=setEdate()/
 mx:DateField id=eDate/


/mx:Application


On my computer it kills the browser so the system
suggests to disable flash player. 
I have tried on different computers with same luck.
So I guess it'a bug.

Dima Ulich

__
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flash Player crashes the browser b3

2006-05-09 Thread Dima Ulich



I had in b2 and now I have it in b3 player 9.0

When I close my application it causes the browser
error (Memory cannot be read ...) 

Did anyone had the same problem.

__
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] PopUpManager and DragManager problem

2006-04-27 Thread Dima Ulich



Hello everybody,

 In my application I want to drag an item from a
datagrid and drop it into another datagrid inside a
popup window. I got stuck with implementing it.
 The problem is when I move my popup, the datagrid
inside doesn't dispatch dragEnter event anymore, but
if I drag mouse to the area where popup appear (left
top corner of the window) my datagrid dispatches the
event even though it's floating in another side of the
screen.
 May be I'm missing something, may be it's a beta
bug, I don't now. Just wanted to see if anyone had the
same problems and found a workaround for this.
Dima

__
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












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

2006-04-26 Thread Dima Ulich



Hello,

 Could you send me one too? 

Dima

--- [EMAIL PROTECTED] wrote:

 I have a very (very) simple sample app that I use
 to illustrate how to get
 the ball rolling with Cairngorm2 that I can send to
 you. It includes
 documentation on how to add your own dispatchEvent
 in step-by-step
 instructions. I'm not knocking the Cairngorm2
 'Login' example, but I think
 that a 'hold-your-hand' example is helpful for those
 getting familiar with
 patterns.
 
 
 

---
 This e-mail message (including attachments, if any)
 is intended for the use
 of the individual or entity to which it is addressed
 and may contain
 information that is privileged, proprietary ,
 confidential and exempt from
 disclosure. If you are not the intended recipient,
 you are notified that
 any dissemination, distribution or copying of this
 communication is
 strictly prohibited. If you have received this
 communication in error,
 please notify the sender and erase this e-mail
 message immediately.

---
 
 
 


__
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] DateField problem

2006-04-12 Thread Dima Ulich
Hi everybody,

In my application I'm trying to set date range for
dateField programatically and does it only ones, when
I try to change it later dateField doesn't do it
right. It only restricts months but not dates. Usually
when you set a date range you would see disabled
dates, in my case in doens't disable dates. For
example: 
I have a DateField

mx:DateField height=20 id=sDate /

//I set default date range on creation complete
private function setDateRange():void
{
  sDate.selectableRange={rangeStart: new Date(2006, 7,
1), rangeEnd: new Date(26, 11, 31)}

}
//here I try to update rangeStart on other event
//I pass the date object to this function 
//and it works right only once (I get the right dates
disabled)
//next time I call this function it disables months
but not dates
private function updateDateRange(dt:Date):void
{
 sDate.endDate.selectableRange.rangeStart = dt;

}

  I wonder it anyone else had such a problem. May be
I'm doing something wrong here. 

Dima



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

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

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

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




RE: [flexcoders] Flash player bug -- character set

2006-04-07 Thread Dima Ulich
Well, that's a bummer. I hope they will find a way to
handle the issue in the future.
Anyway thanks for your help Matt.
Dima

--- Matt Chotin [EMAIL PROTECTED] wrote:

 OK, I checked with the Player team and it is a known
 issue,
 unfortunately it won't be fixed right now.  Here are
 the relevant notes
 (FOL means Fact of Life):
 
 For security reasons, we don't allow the player to
 query the keyboard
 unless we know we have focus, in order to prevent
 key snooping of other
 apps. On Windows, running in windowless mode, we
 don't have an HWND,
 which makes it impossible to test whether or not we
 have focus. We can
 test to see if our parent has focus, but our parent
 may contain an
 arbitrary number of children, and we can't allow the
 player to snoop on
 its siblings. So, for now, this bug is FOL. 
 
 Matt
 
 
 -Original Message-
 From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Dima Ulich
 Sent: Thursday, April 06, 2006 10:54 PM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] Flash player bug --
 character set
 
 I'm using IE 6.0 sp1 
 I haven't tried it in FireFox though.
 Dima
 
 --- Matt Chotin [EMAIL PROTECTED] wrote:
 
  What web browser are you using?  In searching the
  Player bugbase
  apparently Firefox doesn't pass all the key events
  through that you'd
  think it should.
  
  Matt
  
  -Original Message-
  From: flexcoders@yahoogroups.com
  [mailto:[EMAIL PROTECTED] On
  Behalf Of Dima Ulich
  Sent: Thursday, April 06, 2006 12:51 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Flash player bug --
 character
  set
  
  Hi everybody,
  
   I'm building flex 2.0 b2 application which has
  russian language interface. In my application I
 need
  to set wmode = transparent. When I do that I can't
  enter russian characters into any input control. I
  only can copy and paste. I had that problem in
  previous beta too, but couldn't figure out what
 was
  causing the problem. Now I figured that it happens
  only if I set wmode param transparent. 
  I guess it's a bug, but not sure though. 
  Did anyone else ever get such a problem? Is there
 a
  way to work it around? 
  
  Dima Ulich
  
  __
  Do You Yahoo!?
  Tired of spam?  Yahoo! Mail has the best spam
  protection around 
  http://mail.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
  
  
  
   
  
  
  
 
 
 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam
 protection around 
 http://mail.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
 
 
 
  
 
 
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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] Flash player bug -- character set

2006-04-06 Thread Dima Ulich
Hi everybody,

 I'm building flex 2.0 b2 application which has
russian language interface. In my application I need
to set wmode = transparent. When I do that I can't
enter russian characters into any input control. I
only can copy and paste. I had that problem in
previous beta too, but couldn't figure out what was
causing the problem. Now I figured that it happens
only if I set wmode param transparent. 
I guess it's a bug, but not sure though. 
Did anyone else ever get such a problem? Is there a
way to work it around? 

Dima Ulich

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

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

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

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




RE: [flexcoders] Flash player bug -- character set

2006-04-06 Thread Dima Ulich
I'm using IE 6.0 sp1 
I haven't tried it in FireFox though.
Dima

--- Matt Chotin [EMAIL PROTECTED] wrote:

 What web browser are you using?  In searching the
 Player bugbase
 apparently Firefox doesn't pass all the key events
 through that you'd
 think it should.
 
 Matt
 
 -Original Message-
 From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Dima Ulich
 Sent: Thursday, April 06, 2006 12:51 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Flash player bug -- character
 set
 
 Hi everybody,
 
  I'm building flex 2.0 b2 application which has
 russian language interface. In my application I need
 to set wmode = transparent. When I do that I can't
 enter russian characters into any input control. I
 only can copy and paste. I had that problem in
 previous beta too, but couldn't figure out what was
 causing the problem. Now I figured that it happens
 only if I set wmode param transparent. 
 I guess it's a bug, but not sure though. 
 Did anyone else ever get such a problem? Is there a
 way to work it around? 
 
 Dima Ulich
 
 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam
 protection around 
 http://mail.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
 
 
 
  
 
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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] why is trace(1+0.9+0.7+0.3) = 2.8999999999999995

2006-03-27 Thread Dima Ulich
Hi All,

   I was working with number recently and noticed this
weird behaviour trace(1+0.9+0.7+0.3) returns
2.8995;
   Did anyone else ever seen such thing? Is it a bug?

Dima Ulich

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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] FB2 :: Flex printing

2006-03-23 Thread Dima Ulich
Hi

I have used the package you are pointing at. To
reproduce the bug try to print out a page with text
and bitmap image (do not embed image load it
dynamically).
 
When you use FlexPrintJob package, you'll get bitmap
quality printing which is not good at all for use in
reports.
  
When you use flash.print.PrintJob package you will get
vector printing, but you won't get the image printed. 

My question was would there be an option to print
images and text on one page in good vector printing
quality? 
Is there a way to set FlexPrintJob to print in vector
format?

Dima Ulich

--- David Mendels [EMAIL PROTECTED] wrote:

 Hi,
  
 a) Check out

http://livedocs.macromedia.com/labs/1/flex/langref/mx/print/package-deta
 il.html
 b) Please be specific and give us reproducible bugs
 so we can address as
 many issues as possible and/or log ECRs for future! 
  
 -David
 Adobe
 
 
 
 
   From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of
 Phil Marston
   Sent: Wednesday, March 22, 2006 9:26 AM
   To: flexcoders@yahoogroups.com
   Subject: Re: [flexcoders] FB2 :: Flex printing
   
   
   I haven't used this yet, but our University
 teaching apps would 
   certainly need good functionality here so hope
 there isn't a
 problem 
   like there's been with the implementation of
 printing in Flash
 in the past.
   
   As far back as a Flash 5 project we hit a bug in
 the Flash
 player to do 
   with printing nested movieClips - after months of
 trying to fix
 it 
   someone from Macromedia eventually let us know that
 it was a
 known issue 
   but they didn't think anyone would notice - as far
 as I'm aware
 it's 
   never been fixed.
   
   Compared to all the other features in Flash,
 printing always
 seems to be 
   a bit of a poor cousin sort of implementation. 
 Maybe with
 Adobe's print 
   heritage that will change . . . :-)
   
   Phil
   
   Dima Ulich wrote:
I would like to ask adobe team. 
Do you guys have any plans on making printing
 from
flex a bit easier? 
   
I think it is very important for RIAs to have
 very
flexible printing feateres so users and devs
 wouldn't
have problems creating different kind of reports.
 
For now it is not event possible to print bitmap
images aloing with vector graphics. 
To print images you need to have them embeded or
 use
printAsBitmap feature, but printAsBitmap makes
 all the
other things on page look nasty. It won't work
 for
good reports. 
In Flex Beta past and new version there was a
FlexPrintJob package it prints in bitmap format
 which
makes it impossible for use. And
 flash.print.printJob
package is pretty hard to use, and it doesn't
 solve
the problem.
   
Flexcoders, what do you think about printing in
 flex?
   
Ulich Dima
   
   
   
 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam
 protection
 around 
http://mail.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
   
   
   
 
   
   
  
   
   -- 
 

__
 
   Phil Marston 
   Learning Technologist
   Learning Technology Unit 
   Edward Wright G33, University of Aberdeen,
 Aberdeen, AB24 3QY,
 UK
   [EMAIL PROTECTED] Tel: +44(0)1224 273329 /
 +44(0)7798 723660 
   http://www.abdn.ac.uk/diss/ltu/
 

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

http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+

site+design+developmentw2=Computer+software+developmentw3=Software+des

ign+and+developmentw4=Macromedia+flexw5=Software+development+best+prac
 ticec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ  
 Computer software
 development

http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=We

b+site+design+developmentw2=Computer+software+developmentw3=Software+d

esign+and+developmentw4=Macromedia+flexw5=Software+development+best+pr
 acticec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw  
 Software design and
 development

http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=

Web+site+design+developmentw2=Computer+software

[flexcoders] FB2 :: Flex printing

2006-03-22 Thread Dima Ulich
I would like to ask adobe team. 
Do you guys have any plans on making printing from
flex a bit easier? 

I think it is very important for RIAs to have very
flexible printing feateres so users and devs wouldn't
have problems creating different kind of reports. 
For now it is not event possible to print bitmap
images aloing with vector graphics. 
To print images you need to have them embeded or use
printAsBitmap feature, but printAsBitmap makes all the
other things on page look nasty. It won't work for
good reports. 
In Flex Beta past and new version there was a
FlexPrintJob package it prints in bitmap format which
makes it impossible for use. And flash.print.printJob
package is pretty hard to use, and it doesn't solve
the problem.

Flexcoders, what do you think about printing in flex?

Ulich Dima


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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] FB2 :: doubleClick bug event doen't happen

2006-03-21 Thread Dima Ulich
All my doubleClicks don't work now
I have tried to create a new project to check if
something was wrong in my apps, id didn't work also. I
guess it might be player's bug!!???

Did anyone else faced the same problem??

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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] FB2 :: doubleClick bug event doen't happen

2006-03-21 Thread Dima Ulich
I did try to set this property to true both in mxml
and actionscript and it didn't help, 
debugging still shows that controls have the property
set to false

Dima

--- Joan Tan [EMAIL PROTECTED] wrote:

 You now need to set the doubleClickEnabled property
 to true to enable
 doubleClick events.
 
  
 
 Joan
 
  
 
 
 
 From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Dima Ulich
 Sent: Tuesday, March 21, 2006 4:16 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] FB2 :: doubleClick bug event
 doen't happen
 
  
 
 All my doubleClicks don't work now
 I have tried to create a new project to check if
 something was wrong in my apps, id didn't work also.
 I
 guess it might be player's bug!!???
 
 Did anyone else faced the same problem??
 
 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam
 protection around 
 http://mail.yahoo.com 
 
 
 --
 Flexcoders Mailing List
 FAQ:

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

http://www.mail-archive.com/flexcoders%40yahoogroups.com
 
 
 
 
 
 SPONSORED LINKS 
 
 Web site design development

http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+

site+design+developmentw2=Computer+software+developmentw3=Software+des

ign+and+developmentw4=Macromedia+flexw5=Software+development+best+prac
 ticec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ  
 
 Computer software development

http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=We

b+site+design+developmentw2=Computer+software+developmentw3=Software+d

esign+and+developmentw4=Macromedia+flexw5=Software+development+best+pr
 acticec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw  
 
 Software design and development

http://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 flex

http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+

developmentw2=Computer+software+developmentw3=Software+design+and+deve

lopmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=1
 66.sig=OO6nPIrz7_EpZI36cYzBjw  
 
 Software development best practice

http://groups.yahoo.com/gads?t=msk=Software+development+best+practice;

w1=Web+site+design+developmentw2=Computer+software+developmentw3=Softw

are+design+and+developmentw4=Macromedia+flexw5=Software+development+be
 st+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw  
 
  
 
  
 
 
 
 YAHOO! GROUPS LINKS 
 
  
 
 *  Visit your group flexcoders
 http://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 of
 Service http://docs.yahoo.com/info/terms/ . 
 
  
 
 
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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] ComboBox issue

2006-03-16 Thread Dima Ulich
Hi all,

  In my application I have a comboBox, when I click it
I get this error:

RangeError: Error #2006: The supplied index is out of
bounds.
at mx.managers::SystemManager/addChild()
at mx.managers::PopUpManager$/popUpWindow()
at mx.controls::ComboBox/getDropdown()
at mx.controls::ComboBox/displayDropdown()
at
mx.controls::ComboBox/downArrowButton_buttonDownHandler()
at flash.events::EventDispatcher/dispatchEvent()
at
mx.controls::Button/mx.controls:Button::buttonDown()
at mx.controls::Button/mouseDownHandler()
at flash.events::EventDispatcher/dispatchEvent()
at
mx.controls::ComboBase/textInput_mouseEventHandler()

I've tried list control instead and it worked okay. 
I set a breakpoint on creation complete event to see
what is going on there and I found several mistakes:
TypeError: Error #1009: null has no properties.
May be it has to do with the issue, I don't know.
If anyone has any ideas why would that happen, please
let me know.

Ulich Dima

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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] ComboBox issue

2006-03-16 Thread Dima Ulich
dataProvider is really simple, in fact I tried
different ways to give data to comboBox. 
The problem was there even when I tried this
mx:Object label=Test 1 id=1/
mx:Object label=Test 2 id=2/
mx:Object label=Test 3 id=3/

I just figured that the problem only happens when I
set topMost to true. I set it to false and everything
went just fine. I guess there is a bug in topMost
feature. In fact I was able to track the problem it
only happened after I used PopUpManager.removePopUp()
method. It seemed like it was breaking dataProvider
for ComboBox. If I wasn't removing the popup ComboBox
worked okay.

For now I just don't use topMost feature.

Ulich Dima

--- Joan Tan [EMAIL PROTECTED] wrote:

 Can you post the code for your ComboBox and what the
 dataProvider looks
 like?
 
  
 
 
 
 From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Dima Ulich
 Sent: Thursday, March 16, 2006 10:50 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] ComboBox issue
 
  
 
 Hi all,
 
   In my application I have a comboBox, when I click
 it
 I get this error:
 
 RangeError: Error #2006: The supplied index is out
 of
 bounds.
   at mx.managers::SystemManager/addChild()
   at mx.managers::PopUpManager$/popUpWindow()
   at mx.controls::ComboBox/getDropdown()
   at mx.controls::ComboBox/displayDropdown()
   at

mx.controls::ComboBox/downArrowButton_buttonDownHandler()
   at
 flash.events::EventDispatcher/dispatchEvent()
   at
 mx.controls::Button/mx.controls:Button::buttonDown()
   at mx.controls::Button/mouseDownHandler()
   at
 flash.events::EventDispatcher/dispatchEvent()
   at
 mx.controls::ComboBase/textInput_mouseEventHandler()
 
 I've tried list control instead and it worked okay. 
 I set a breakpoint on creation complete event to see
 what is going on there and I found several mistakes:
 TypeError: Error #1009: null has no properties.
 May be it has to do with the issue, I don't know.
 If anyone has any ideas why would that happen,
 please
 let me know.
 
 Ulich Dima
 
 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam
 protection around 
 http://mail.yahoo.com 
 
 
 --
 Flexcoders Mailing List
 FAQ:

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

http://www.mail-archive.com/flexcoders%40yahoogroups.com
 
 
 
 
 
 SPONSORED LINKS 
 
 Web site design development

http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+

site+design+developmentw2=Computer+software+developmentw3=Software+des

ign+and+developmentw4=Macromedia+flexw5=Software+development+best+prac
 ticec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ  
 
 Computer software development

http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=We

b+site+design+developmentw2=Computer+software+developmentw3=Software+d

esign+and+developmentw4=Macromedia+flexw5=Software+development+best+pr
 acticec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw  
 
 Software design and development

http://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 flex

http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+

developmentw2=Computer+software+developmentw3=Software+design+and+deve

lopmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=1
 66.sig=OO6nPIrz7_EpZI36cYzBjw  
 
 Software development best practice

http://groups.yahoo.com/gads?t=msk=Software+development+best+practice;

w1=Web+site+design+developmentw2=Computer+software+developmentw3=Softw

are+design+and+developmentw4=Macromedia+flexw5=Software+development+be
 st+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw  
 
  
 
  
 
 
 
 YAHOO! GROUPS LINKS 
 
  
 
 *  Visit your group flexcoders
 http://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 of
 Service http://docs.yahoo.com/info/terms/ . 
 
  
 
 
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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: a GridTree component for flex 2

2006-03-04 Thread Dima Ulich
I was thinking about something like that for my
projects, long to see the component released.
A good job,
Street

--- jeremy lu [EMAIL PROTECTED] wrote:

 the component will be released in swc format afer I
 finished the project and
 got time to refurbish the code, about a month later,
 will post again then.
 
 jeremy.
 
 On 3/4/06, thunderstumpgesatwork
 [EMAIL PROTECTED] wrote:
 
  Looks good! I've been thinking I'm going to need
 something like this too.
 
  Any plans to release this as a component at least?
 If so when?
 
  Thanks,
  Thunder
 
  --- In flexcoders@yahoogroups.com, dc
 [EMAIL PROTECTED] wrote:
  
   hi list,
  
   just made a GridTree component for next project,
 please take a look at
  
   -preview video
  

http://ria.richtechmedia.com/upload/GridTreeForFlex2/
  
   -blog entry (upper half written in English)
   http://ria.richtechmedia.com/?p=330
  
   any suggestions or ideas would be appreciated.
  
   btw, thanks to the flex team for making
 AS3/datagrid/cell renderer so
   fast that this could be achieved.
  
   jeremy lu.
  
 
 
 
 
 
 
  --
  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
 
 
 
 
 
 
 
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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] Flex2: DateField formatFunction bug

2006-02-27 Thread Dima Ulich
I don't know if it's a bug. I think it only happens if
you are not using English standart dates (MM/DD/).
To use different type of dates you need set a parsing
function here is an example:

//date parse function
private function pDate(data:String,inp:String):Date
{   
return
mx.controls.DateField.stringToDate(data,DD.MM.);
}
//date formatter
mx:DateFormatter id=df formatString=DD.MM. /

//inline usage
mx:DateField height=20 formattingFunction=fDate
parsingFunction=pDate /

it should solve you problem

Ulich Dmitriy
Termin

--- Alberto Albericio Salvador
[EMAIL PROTECTED] wrote:

 I found the same bug some weeks ago. I cant use the
 formattingFunction 
 and I hope it gets fixed soon
 
 Alberto Albericio Salvador
 Aura S.A. Seguros
 Departamento Informática
 
 
 
 Benoit Hediard escribió:
  I've encountered this annoying bug today.
  When using the formatFunction attribute of
 DateField, when the component
  looses its focus, it erases the date text field.
   
  To reproduce the problem, simply execute the
 following code from LiveDocs,
  select a date and move the focus to the other text
 input:
  mx:DateFormatter id=dfconv
 formatString=/MM/DD/
  mx:Script
  ![CDATA[
  private function formatDate(date:Date):String
  {
  return dfconv.format(date);
  } 
  ]]
  /mx:Script
 
  mx:DateField id=df
 formattingFunction=formatDate /
 
  mx:TextInput /
 
  There is a simple workaround, but it does not work
 all the time:
  mx:DateFormatter id=dfconv
 formatString=/MM/DD/
  mx:Script
  ![CDATA[
  private function formatDate(date:Date):String
  {
  return dfconv.format(date);
  }
 
  private function onChange():void {
  df.text = formatDate(df.selectedDate);
  }
  ]]
  /mx:Script
 
  mx:DateField id=df change=onChange() /
 
  mx:TextInput /
 
  Benoit Hediard
 
 
 
   
   
 
 
 
 
  --
  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
 
 
 
   
 
 
 
 

 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

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

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

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




[flexcoders] DataGrid styles

2006-01-18 Thread Dima Ulich
I'm trying to print dataGrid and I need to have solid
column and row lines. I set vGridLines and hGridLines
to true, but when I print it out i get lines you can
barely see. I spent lots of time to find a workaround
for that but I wasn't successfull. DataGrid doesn't
have a style definition to set height for vGridLines
or hGridLines. Does anyone know any way to set height
for those? 
Thanks

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.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

* 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] Printing options in Flex 2

2005-12-16 Thread Dima Ulich
Did anyone tried to use flex printing packages? When I
tried to print a report with bitmaps it didn't print
them. It only print bitmaps if they are embeded into
swf file. But I need to dynamically add images. 
Does anyone have any suggestion how to do it? I don't
know may be it's alpha version bug?


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 




 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/