RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-26 Thread Nini7016 Nini7016

Hello 

I tried your solution and it works very well :) :) :)

Thank yo very much :) :) :) 
  
_
Hotmail et MSN dans la poche? HOTMAIL et MSN sont dispo gratuitement sur votre 
téléphone!
http://www.messengersurvotremobile.com/?d=Hotmail

Re: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-26 Thread Oleg Sivokon
Ha, you're welcome :)


[flexcoders] Spark Panel width=0 but still showing

2010-04-26 Thread bhaq1972
I am setting the width of a Spark Panel to zero but I can still see it. 
Halo Panel does not have this problem.

Any ideas?

Thanks in Advance.

Here's a simple example

?xml version=1.0 encoding=utf-8?
s:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
  xmlns:s=library://ns.adobe.com/flex/spark
  xmlns:mx=library://ns.adobe.com/flex/mx
  minWidth=955 minHeight=600

  s:layout
s:VerticalLayout horizontalAlign=center paddingTop=20 paddingLeft=5 
paddingRight=5/
   /s:layout

   fx:Script
 ![CDATA[

public function changeWidth():void
{
   // change  menu Panel width
   var width1:int = 0.25 * MainPanel.width; 
   panelMenu.width = (panelMenu.width == 0) ? width1 : 0;
}
  ]]
   /fx:Script

   s:Button label=click click=changeWidth()/
   s:Panel id=MainPanel title=panel width=100% height=100% 
  mx:HDividedBox width=100% height=100% horizontalScrollPolicy=off
mx:ViewStack id=vsContainer width=75% height=100%/
   s:Panel id=panelMenu title=Topics width=25% height=100%
s:Label text=halo Panel ok. spark has an issue/
/s:Panel
   /mx:HDividedBox
/s:Panel  
/s:Application

-
Same test using Halo Panel
?xml version=1.0 encoding=utf-8?
s:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
  xmlns:s=library://ns.adobe.com/flex/spark
  xmlns:mx=library://ns.adobe.com/flex/mx
  minWidth=955 minHeight=600

  s:layout
s:VerticalLayout horizontalAlign=center paddingTop=20 paddingLeft=5 
paddingRight=5/
   /s:layout

   fx:Script
 ![CDATA[

public function changeWidth():void
{
   // change  menu Panel width
   var width1:int = 0.25 * MainPanel.width; 
   panelMenu.width = (panelMenu.width == 0) ? width1 : 0;
}
  ]]
   /fx:Script

   s:Button label=click click=changeWidth()/
   s:Panel id=MainPanel title=panel width=100% height=100% 
  mx:HDividedBox width=100% height=100% horizontalScrollPolicy=off
mx:ViewStack id=vsContainer width=75% height=100%/
   mx:Panel id=panelMenu title=Topics width=25% height=100%
s:Label text=halo Panel ok. spark has an issue/
/mx:Panel
   /mx:HDividedBox
/s:Panel  
/s:Application




Fw: [flexcoders] draw a line chart in such a way that if x-axis or y-axis are 0 (zero) it will not plot that point in line chart

2010-04-26 Thread Krunal Panchal
any update friedns
 
Regards,



Krunal Panchal | *panchal_...@yahoo.com



- Forwarded Message 
From: Krunal Panchal panchal_...@yahoo.com
To: Flex Coder flexcoders@yahoogroups.com
Sent: Sat, 24 April, 2010 10:38:12
Subject: [flexcoders] draw a line chart in such a way that if x-axis or y-axis 
are 0 (zero) it will not plot that point in line chart

  

 Hi All,

i want to draw a chart in such a way that if x-axis or y-axis are 0 (zero) it 
will not plot that point in line chart.

is that possible?

more details:
 
like i would like to draw a line chart for four month Jan-10, Feb-10, Mar-10 
and Apr-10

for that data would be 
Jan-10 :  34
Feb-10 : 25
Mar-10 : 00
Apr-10 :65

based on the above data, line chart will not plot the line for the month of 
Mar-10 and rest of thing is fine ( means for month of march-10, it will not 
plot the point on bottom of the x-axis also).

i had tried but unfortunately i am not able to solved it. 

Thanks in advance.

Regards,



Krunal Panchal  *panchal_kru@ yahoo.com


 


  

[flexcoders] How call to a function declared in MXML file from ActionScript class ?

2010-04-26 Thread Nini7016 Nini7016

Hello :)

I created a dataGrid in a file MXML like this : *

mx:Panel title= Handing Data height=100% width=100% 
  paddingTop=10 paddingLeft=10 paddingRight=10

!--mx:Label width=100% color=blue
 text=Select a row in the DataGrid control./--

mx:DataGrid id=dg name=dataGrid width=100%  editable=true 
resizableColumns=true 
mx:columns
mx:DataGridColumn dataField=variable headerText=Variable /
mx:DataGridColumn dataField=type headerText=Type /
mx:DataGridColumn dataField=value headerText=Value /
mx:DataGridColumn dataField=operation headerText=Operation 
/
/mx:columns
/mx:DataGrid

mx:HBox width=100% height=100%
mx:Button name=validate label=Validate 
click={retreiveData(4,bpmnDataComponent)} /
mx:Button name=cancel label=Cancel 
click={display(bpmnDataComponent)}/
mx:Button name=add label=Add Data  
click={fillDataGridData2(start)}/
/mx:HBox

/mx:Panel

 and i created a function called  retreiveDatalike this in the same Script :

   public function retreiveData(index : int , bpmnDataComponent : 
BpmnDataComponent): void
{  
var dp: ListCollectionView = dg.dataProvider as 
ListCollectionView;

if(dp==null){
//dg.dataProvider = handData;
}
else {
Alert.show(longueur de DP+dp.length.toString());
var Objec : Object = dp.getItemAt(index);
bpmnDataComponent.Variable = Objec.variable;
bpmnDataComponent.Value = Objec.value;
bpmnDataComponent.Type = Objec.type;

}


} 

And i called this function retreiveDatawhen i clik in the button validate 
in order to test if the function works well or not :) So it works well

My aim is to call this function retreiveData   from an actionScript but when i 
do this : 

private  function  upateData(event:Event):void {

var bpmnFigureData : BpmnFigureData = new  BpmnFigureData(); // 
BpmnFigureData : the name of the MXML FILE 
bpmnFigureData.width=300;
bpmnFigureData.height=300;
bpmnFigureData.retreiveData(1,this);
this.addChild(bpmnFigureData);


}

But unfortunatelley it didn't do what i asked ??

So my question how we can call function which be applicated in DATAGRID from an 
ActionScript Class ..???

Any help please :(:( :( :( 


Thank you very much 

  
_
Découvrez comment SURFER DISCRETEMENT sur un site de rencontres !
http://clk.atdmt.com/FRM/go/206608211/direct/01/

[flexcoders] Re: Spark Panel width=0 but still showing

2010-04-26 Thread bhaq1972
Sorted...

I need the property clipAndEnableScrolling=true
for the main panel to be set.

s:Panel id=MainPanel
 s:layout
s:VerticalLayout clipAndEnableScrolling=true
 /s:layout
/s:Panel









--- In flexcoders@yahoogroups.com, bhaq1972 mbha...@... wrote:

 I am setting the width of a Spark Panel to zero but I can still see it. 
 Halo Panel does not have this problem.
 
 Any ideas?
 
 Thanks in Advance.
 
 Here's a simple example
 
 ?xml version=1.0 encoding=utf-8?
 s:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
   xmlns:s=library://ns.adobe.com/flex/spark
   xmlns:mx=library://ns.adobe.com/flex/mx
   minWidth=955 minHeight=600
 
   s:layout
 s:VerticalLayout horizontalAlign=center paddingTop=20 
 paddingLeft=5 paddingRight=5/
/s:layout
 
fx:Script
  ![CDATA[
   
   public function changeWidth():void
   {
  // change  menu Panel width
  var width1:int = 0.25 * MainPanel.width; 
  panelMenu.width = (panelMenu.width == 0) ? width1 : 0;
   }
   ]]
/fx:Script
 
s:Button label=click click=changeWidth()/
s:Panel id=MainPanel title=panel width=100% height=100% 
   mx:HDividedBox width=100% height=100% horizontalScrollPolicy=off
   mx:ViewStack id=vsContainer width=75% height=100%/
  s:Panel id=panelMenu title=Topics width=25% height=100%
   s:Label text=halo Panel ok. spark has an issue/
   /s:Panel
/mx:HDividedBox
 /s:Panel
 /s:Application
 
 -
 Same test using Halo Panel
 ?xml version=1.0 encoding=utf-8?
 s:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
   xmlns:s=library://ns.adobe.com/flex/spark
   xmlns:mx=library://ns.adobe.com/flex/mx
   minWidth=955 minHeight=600
 
   s:layout
 s:VerticalLayout horizontalAlign=center paddingTop=20 
 paddingLeft=5 paddingRight=5/
/s:layout
 
fx:Script
  ![CDATA[
   
   public function changeWidth():void
   {
  // change  menu Panel width
  var width1:int = 0.25 * MainPanel.width; 
  panelMenu.width = (panelMenu.width == 0) ? width1 : 0;
   }
   ]]
/fx:Script
 
s:Button label=click click=changeWidth()/
s:Panel id=MainPanel title=panel width=100% height=100% 
   mx:HDividedBox width=100% height=100% horizontalScrollPolicy=off
   mx:ViewStack id=vsContainer width=75% height=100%/
  mx:Panel id=panelMenu title=Topics width=25% height=100%
   s:Label text=halo Panel ok. spark has an issue/
   /mx:Panel
/mx:HDividedBox
 /s:Panel
 /s:Application





Re: [flexcoders] How call to a function declared in MXML file from ActionScript class ?

2010-04-26 Thread Ganesh Suyampirakasam
create an object of that class and use that function make it function as public 
in that class.

then you may able to access it.

--- On Mon, 26/4/10, Nini7016 Nini7016 nahloulaha...@hotmail.com wrote:

From: Nini7016 Nini7016 nahloulaha...@hotmail.com
Subject: [flexcoders] How call to a function declared in MXML file from 
ActionScript class ?
To: flexcoders@yahoogroups.com
Date: Monday, 26 April, 2010, 10:10 AM







 



  



  
  
  


Hello :)

I created a dataGrid in a file MXML like this : *

    mx:Panel title= Handing Data height=100%  width=100% 
              paddingTop= 10 paddingLeft= 10 paddingRight= 10

        !--mx:Label width=100% color=blue
             text=Select a row in the DataGrid control./--

        mx:DataGrid id=dg name=dataGrid width=100%  editable=true 
resizableColumns= true 
            mx:columns
                mx:DataGridColumn dataField=variable  headerText= Variable 
/
                mx:DataGridColumn dataField=type headerText= Type /
                mx:DataGridColumn dataField=value headerText= Value /
                mx:DataGridColumn dataField=operatio n headerText= 
Operation /
            /mx:columns
        /mx:DataGrid

        mx:HBox width=100% height=100% 
            mx:Button name=validate label=Validate click={retreiveDat 
a(4,bpmnDataComp onent)} /
            mx:Button name=cancel label=Cancel click={display( 
bpmnDataComponen t)}/
            mx:Button name=add label=Add Data  click={fillDataGri 
dData2(start) }/        
        /mx:HBox

    /mx:Panel

 and i created a function called  retreiveData    like this in the same Script :
        
       public function retreiveData( index : int , bpmnDataComponent : 
BpmnDataComponent) : void
            {  
                var dp: ListCollectionView = dg.dataProvider as 
ListCollectionView;

                if(dp==null) {
                    //dg.dataProvider = handData;
                }
                else {
                    Alert.show( longueur de DP+dp.length. toString( ));
                    var Objec : Object = dp.getItemAt( index);
                    bpmnDataComponent. Variable = Objec.variable;
                    bpmnDataComponent. Value = Objec.value;
                    bpmnDataComponent. Type = Objec.type;
    
                }


            } 

And i called this function retreiveData    when i clik in the button validate 
in order to test if the function works well or not :) So it works well

My aim is to call this function retreiveData   from an actionScript but when i 
do this : 

    private  function  upateData(event: Event):void {
            
            var bpmnFigureData : BpmnFigureData = new  BpmnFigureData( ); // 
BpmnFigureData : the name of the MXML FILE 
            bpmnFigureData. width=300;
            bpmnFigureData. height=300;
            bpmnFigureData. retreiveData( 1,this);
            this.addChild( bpmnFigureData) ;
            
            
        }

But unfortunatelley it didn't do what i asked ??

So my question how we can call function which be applicated in DATAGRID from an 
ActionScript Class ..???

Any help please :(:( :( :( 


Thank you very much 
    
  
Envie de naviguer sur Internet sans laisser de trace? La solution avec Internet 
Explorer 8



 





 



  







[flexcoders] Re: How call to a function declared in MXML file from ActionScript class ?

2010-04-26 Thread Jeffry Houser
I'm not entirely sure, but I would have expected your code to throw an error.

 The function references an MXML DataGrid ( dg ) inside bpmnFigureData before 
bpmnFigureData is added as a child.  

 That means that createChildren hasn't been run yet and I would expect DG to be 
null.


--- In flexcoders@yahoogroups.com, Nini7016 Nini7016 nahloulaha...@... wrote:

 
 Hello :)
 
 I created a dataGrid in a file MXML like this : *
 
 mx:Panel title= Handing Data height=100% width=100% 
   paddingTop=10 paddingLeft=10 paddingRight=10
 
 !--mx:Label width=100% color=blue
  text=Select a row in the DataGrid control./--
 
 mx:DataGrid id=dg name=dataGrid width=100%  editable=true 
 resizableColumns=true 
 mx:columns
 mx:DataGridColumn dataField=variable headerText=Variable 
 /
 mx:DataGridColumn dataField=type headerText=Type /
 mx:DataGridColumn dataField=value headerText=Value /
 mx:DataGridColumn dataField=operation 
 headerText=Operation /
 /mx:columns
 /mx:DataGrid
 
 mx:HBox width=100% height=100%
 mx:Button name=validate label=Validate 
 click={retreiveData(4,bpmnDataComponent)} /
 mx:Button name=cancel label=Cancel 
 click={display(bpmnDataComponent)}/
 mx:Button name=add label=Add Data  
 click={fillDataGridData2(start)}/
 /mx:HBox
 
 /mx:Panel
 
  and i created a function called  retreiveDatalike this in the same 
 Script :
 
public function retreiveData(index : int , bpmnDataComponent : 
 BpmnDataComponent): void
 {  
 var dp: ListCollectionView = dg.dataProvider as 
 ListCollectionView;
 
 if(dp==null){
 //dg.dataProvider = handData;
 }
 else {
 Alert.show(longueur de DP+dp.length.toString());
 var Objec : Object = dp.getItemAt(index);
 bpmnDataComponent.Variable = Objec.variable;
 bpmnDataComponent.Value = Objec.value;
 bpmnDataComponent.Type = Objec.type;
 
 }
 
 
 } 
 
 And i called this function retreiveDatawhen i clik in the button validate 
 in order to test if the function works well or not :) So it works well
 
 My aim is to call this function retreiveData   from an actionScript but when 
 i do this : 
 
 private  function  upateData(event:Event):void {
 
 var bpmnFigureData : BpmnFigureData = new  BpmnFigureData(); // 
 BpmnFigureData : the name of the MXML FILE 
 bpmnFigureData.width=300;
 bpmnFigureData.height=300;
 bpmnFigureData.retreiveData(1,this);
 this.addChild(bpmnFigureData);
 
 
 }
 
 But unfortunatelley it didn't do what i asked ??
 
 So my question how we can call function which be applicated in DATAGRID from 
 an ActionScript Class ..???
 
 Any help please :(:( :( :( 
 
 
 Thank you very much 
 
 
 _
 Découvrez comment SURFER DISCRETEMENT sur un site de rencontres !
 http://clk.atdmt.com/FRM/go/206608211/direct/01/





[flexcoders] Re: How to compress Spark skins into swc/swf and use them in Flex 4?

2010-04-26 Thread djamsheds
For those interested, there are some ideas discussed on this:

http://forums.adobe.com/message/2016689#2016689

--- In flexcoders@yahoogroups.com, djamsheds djams...@... wrote:

 In Flex 3 our designer basically created all custom skins in AI and compiled 
 them into swf file, which I used in css file as:
 -
   .coolButton
   {
   upSkin: Embed(source=skins.swf, 
 symbol=button_upSkin);
   overSkin: Embed(source=skins.swf, 
 symbol=button_overSkin);
   downSkin: Embed(source=skins.swf, 
 symbol=button_downSkin);
   disabledSkin: Embed(source=skins.swf, 
 symbol=button_disabledSkin);
   }
 -
 
 Once the skin is changed, I (developer) just had to replace the (skins.swf). 
 
 Can I follow the same logic in Flex 4? I know it should be different in CSS 
 (skinClass = someClass) but I don't really know how the designer should 
 compile skins into swf or swc (using Catalyst?)... any idea on how to make a 
 skin library for spark components?





[flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread aceoohay
Sorry for not responding...

We chose flex because once we wrote the tools needed to make things easy we can 
knock out a form fairly quickly. We wanted a web based solution, we did not 
want to be tied to Apex, or any proprietary oracle product. 

One other consideration we had is that we don't always work with Oracle, some 
projects we do in SQL Server, and also MySQL. This helped make the decision to 
not use an Oracle, or Microsoft product.

--- In flexcoders@yahoogroups.com, Ivan ivan.ilija...@... wrote:

 
 
 --- In flexcoders@yahoogroups.com, aceoohay pauls@ wrote:
 
  We are doing a conversion of 200+ screens from Oracle Forms to Flex, and 
  have 4 developers working on the project.
  
  We are experiencing a variety of problems with flexbuilder when everyone is 
  using the same project. Where can I find some hints on how to manage a 
  project with multiple developers?
  
  Paul
 
 
 Perhaps this is not the main topic, but I was wondering how did you decide to 
 switch from Oracle Forms to Flex. 
 
 Currently my company is using Oracle Forms and we are planning to use Flex 
 for some bigger projects but we don't plan to migrate 200+ Forms to Flex.





[flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread aceoohay
We are still having the problem, but I have been too busy to check flexcoders. 
It sure would be nice if Yahoo groups would notify you of responses to threads 
you are members of.

We are not using a CVS, the project is on a network share, multiple developers 
have FB3 on their desktop, and the problems we are having generally include 
slow compiles and modules in the project not compiling after a chhange.

The last problem is the real pain, you make a change, compile and test, and the 
change doesn't seem to do anything. The most reliable way of resolving the 
issue is to remove the module from the project and re-add it.

Paul

--- In flexcoders@yahoogroups.com, Ivan ivan.ilija...@... wrote:

 Hello Paul. Can you give us some hints what kind of problems are you talking 
 about? Are you using Subversion, CVS or some other repository?
 
 --- In flexcoders@yahoogroups.com, aceoohay pauls@ wrote:
 
  We are doing a conversion of 200+ screens from Oracle Forms to Flex, and 
  have 4 developers working on the project.
  
  We are experiencing a variety of problems with flexbuilder when everyone is 
  using the same project. Where can I find some hints on how to manage a 
  project with multiple developers?
  
  Paul
 





[flexcoders] Modal windows and blur problem...

2010-04-26 Thread aceoohay
We are developing an application where security is important. I have set up a 
screen saver where if a mouse click or keystroke hasn't occured within n 
minutes it displays a modal box asking for the password and has a blur factor 
of 10. This works great, mostly.

The problem I have is if another modal box is already being displayed, it does 
not blur it.

The application has a main stage, with modules, and some modules can call modal 
windows. The screensaver runs at the application level.

Any ideas on how to blur everything including all modal windows.

Paul 



[flexcoders] Re: How to clear cached RSL programmatically?

2010-04-26 Thread handitan
Hi Alex,

Thx for your explanation.
Based on what you just said, my understanding is that the answer to the 
question that I put out on the scenario is RSL from Step 1 would be the one 
that's still got loaded.

And you mentioned before the solution is publish new ones.
When you said that, I assume that you meant that the RSL has to use the 
version-suffix filename i.e. RSL_ver1.2.swf.

Appreciate the help.

--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote:

 My point is that there may not be a way using the RSL loading mechanism we 
 provide, because once we roll out RSL.SWF, we never change it so the 
 framework doesn't support any way of updating it and not having caching 
 problems.
 
 
 On 4/23/10 12:40 PM, handitan handi@... wrote:
 
 
 
 
 
 
 Hi Alex or anyone,
 
 I just want to make sure whether I am clear in explaining the issue that I am 
 facing.
 Please let me know if my qs and or my scenario wasn't clear enough.
 
 Thx for reading.
 
 --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , 
 handitan handi.tan@ wrote:
 
  Hi Alex!
 
  Great to hear from you as always.
  I don't understand what do you mean by framework never revs RSLs? What's 
  revs?
 
  Proably it would be better for my understanding if I use this scenario:
  1. The following have been deployed:
  - Main_ver1.0.swf
  - Module_ver1.0.swf
  - RSL.swf
 
  2. Our clients have loaded and cached thosed in their browser.
 
  3. Then all those got update, now it becomes:
  - Main_ver1.1.swf
  - Module_ver1.1.swf
  - RSL.swf -- this got updated but it's still using the same filename.
 
  4. And they all got deployed.
 
  Now I know for sure our client will get the Main_ver1.1 and Module_ver1.1 
  without having them clear the browser-cache manually but which RSL are they 
  going to get?
  Is it going to be the one from Step 1 or from Step 3?
 
  Thank you!
 
 
  --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , 
  Alex Harui aharui@ wrote:
  
   I don't think there is support for that because the framework never revs 
   RSLs.  You can do what we do and publish new ones or use modules and load 
   into the main applicationdomain.
  
  
   On 4/22/10 9:15 AM, handitan handi.tan@ wrote:
  
  
  
  
  
  
   Hi all,
  
   I posted one of this question on a thread that's related to caching but 
   since it got hijacked by a totally different topic, I decided to create a 
   new thread. If you're going to talk different stuff, please make a new 
   thread.
  
   The issue that was raised because client doesn't load the newest and 
   greatest of your deployed app because it loads from the browser cache.
  
   To resolve this issue, please read this stackOverfow thread:
   http://stackoverflow.com/questions/300757/preventing-flex-application-caching-in-browser-multiple-modules
  
   Now that solution works for the main swf and module swfs but what about 
   RSL?
  
   How do you guarantee that the loaded RSL is the latest one?
  
   Thank you.
  
  
  
  
  
  
   --
   Alex Harui
   Flex SDK Team
   Adobe System, Inc.
   http://blogs.adobe.com/aharui
  
 
 
 
 
 
 
 
 --
 Alex Harui
 Flex SDK Team
 Adobe System, Inc.
 http://blogs.adobe.com/aharui





[flexcoders] Explicitly setting the height of a row in a DataGrid

2010-04-26 Thread Jay Proulx
Good morning all,

 

I have a custom DataGrid that handles an event from one of its item
renderers, adds a new component to listContent (and positions and sizes it),
then I want to increase the height of the associated row.

 

Right now I'm setting rowInfo[rowId].height, and calling invalidate*(); but
I'm not getting the desired reaction.  I can see that the rendering is all
happening correctly and I have all of the correct values, but the row won't
change size.

 

Any thoughts/examples?  I've been searching around but haven't found what
I'm looking for...

 

Jay Proulx

jason.pro...@pollensoft.com

http://blog.pollensoft.com

http://twitter.com/pollensoft

http://ca.linkedin.com/in/jayproulx

 

 

 



Re: [flexcoders] Modal windows and blur problem...

2010-04-26 Thread Tom Chiverton
On Monday 26 Apr 2010 16:07:27 you wrote:
 Any ideas on how to blur everything including all modal windows.

Add a new object the full width/height of the Stage ?

-- 
Helping to revolutionarily e-enable leading-edge virtual magnetic industry-
wide interfaces as part of the IT team of the year 2010, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
?partner? to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

Re: [flexcoders] How call to a function declared in MXML file from ActionScript class ?

2010-04-26 Thread Haykel BEN JEMIA
Where do you set the dataProvider of the DataGrid? What is the
bpmnDataComponent that you pass to the retreiveData() function?

Haykel Ben Jemia

Allmas
Web  RIA Development
http://www.allmas-tn.com




On Mon, Apr 26, 2010 at 11:10 AM, Nini7016 Nini7016 
nahloulaha...@hotmail.com wrote:



 Hello :)

 I created a dataGrid in a file MXML like this : *

 mx:Panel title= Handing Data height=100% width=100%
   paddingTop=10 paddingLeft=10 paddingRight=10

 !--mx:Label width=100% color=blue
  text=Select a row in the DataGrid control./--

 mx:DataGrid id=dg name=dataGrid width=100%  editable=true
 resizableColumns=true 
 mx:columns
 mx:DataGridColumn dataField=variable
 headerText=Variable /
 mx:DataGridColumn dataField=type headerText=Type /
 mx:DataGridColumn dataField=value headerText=Value /
 mx:DataGridColumn dataField=operation
 headerText=Operation /
 /mx:columns
 /mx:DataGrid

 mx:HBox width=100% height=100%
 mx:Button name=validate 
 label=Validate*click={retreiveData(4,bpmnDataComponent)}
 * /
 mx:Button name=cancel label=Cancel
 click={display(bpmnDataComponent)}/
 mx:Button name=add label=Add Data
 click={fillDataGridData2(start)}/
 /mx:HBox

 /mx:Panel

  and i created a function called  *retreiveData   * like this in the same
 Script :

public function retreiveData(index : int , bpmnDataComponent :
 BpmnDataComponent): void
 {
 var dp: ListCollectionView = dg.dataProvider as
 ListCollectionView;

 if(dp==null){
 //dg.dataProvider = handData;
 }
 else {
 Alert.show(longueur de DP+dp.length.toString());
 var Objec : Object = dp.getItemAt(index);
 bpmnDataComponent.Variable = Objec.variable;
 bpmnDataComponent.Value = Objec.value;
 bpmnDataComponent.Type = Objec.type;

 }


 }

 And i called this function *retreiveData   * when i clik in the button
 validate in order to test if the function works well or not :) So it
 works well

 My aim is to call this function *retreiveData   *from an actionScript but
 when i do this :

 private  function  upateData(event:Event):void {

 var bpmnFigureData : BpmnFigureData = new  BpmnFigureData(); //
 BpmnFigureData : the name of the MXML FILE
 bpmnFigureData.width=300;
 bpmnFigureData.height=300;
 bpmnFigureData.retreiveData(1,this);
 this.addChild(bpmnFigureData);


 }

 But unfortunatelley it didn't do what i asked ??

 So my question how we can call function which be applicated in DATAGRID
 from an ActionScript Class ..???

 Any help please :(:( :( :(


 Thank you very much


 --
 Envie de naviguer sur Internet sans laisser de trace? La solution avec
 Internet Explorer 8 http://clk.atdmt.com/FRM/go/207186970/direct/01/
 



[flexcoders] Retrieving And Copying My Data For My App via Php

2010-04-26 Thread James
All the data for my app is dynamic and is brought into my app via a http 
request to a php file which converts it into xml so flex can use the data. The 
thing is because of my weak knowledge of php I'm struggling to get some 
functions working in it. When I ask for help on a php forum full of php experts 
I either get laughed out the door or my question get ignored like the fat girl 
at the prom :-( So I'm wondering if any of you guys can help me out.

Here's my problem:-

I have a project which allows users to favourite links to websites and also 
allows my client to add in new links to websites and update their details. The 
table which contains all the links which my client has added is called links 
and contains the values linkid (primary key in this table and each linkid is 
unique as it auto-increments), categoryid, label, icon and url. I then have a 
table called userlinks containing the values userid (NOT primary and NOT unique 
as this table is intended not to have a primary key), linkid, categoryid, 
label, icon, url and favourited (default value for favourited is 'N'). When the 
user creates a new account it creates a new userid for that new account in my 
users table. '$param_userid' is what I've assigned this value to in my php code 
as the logged in user. What I want is for each time a user creates an account a 
copy of all of the records in all of the columns in the links table is copied 
into the corresponding columns in the userlinks table as well as the values of 
$param_userid (the logged in userid) and favourited ('N') being applied for 
each record. Can anyone help me out with the code for this? I'm very 
inexperienced at using php.  

I also then want a query which when a user logs in with an existing account all 
of the data from the links table is copied over in the same way except this 
time it overwrites any records which the user with the logged in userid has, 
based on linkid and also inserts any new records which may have been added to 
the links table  that they haven't had since they created their account (again 
with the logged in user id '$param_userid' and 'N' for favourited values added 
for each record).

I hope this makes sense and I'd be very grateful if anyone could help me with 
these 2 queries.



[flexcoders] Re: Modal windows and blur problem...

2010-04-26 Thread aceoohay
Tom:

How would I go about that? The two issues I see are;

1) Determine the width  height of the stage.

2) Create an object with a background that does the blur. I currently have a 
titlewindow in a canvas, so once I determine the height  width to use I can 
make the canvas as big as I want, but how do I make the canvas background 
blurry?

Paul

--- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote:

 On Monday 26 Apr 2010 16:07:27 you wrote:
  Any ideas on how to blur everything including all modal windows.
 
 Add a new object the full width/height of the Stage ?
 
 -- 
 Helping to revolutionarily e-enable leading-edge virtual magnetic industry-
 wide interfaces as part of the IT team of the year 2010, '09 and '08
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in England and 
 Wales under registered number OC307980 whose registered office address is at 
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
 of members is available for inspection at the registered office together with 
 a list of those non members who are referred to as partners.  We use the word 
 ?partner? to refer to a member of the LLP, or an employee or consultant with 
 equivalent standing and qualifications. Regulated by the Solicitors 
 Regulation Authority.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named above and may 
 be confidential or legally privileged.  If you are not the addressee you must 
 not read it and must not use any information contained in nor copy it nor 
 inform any person other than Halliwells LLP or the addressee of its existence 
 or contents.  If you have received this email in error please delete it and 
 notify Halliwells LLP IT Department on 0870 365 2500.
 
 For more information about Halliwells LLP visit www.halliwells.com.





[flexcoders] Re: RTMPS performance issue

2010-04-26 Thread sanjitcs
Hi,

   I have found significant time difference i.e 10 times between rtmps and rtmp 
communication of server. I have doubt that ssl communication takes time in 
encoding and decoding data 10 times.  

For same SSL communication takes lesser time in production environment in 
comparison to QA environment. Only difference in both environment, QA 
environment has self-signed certificate.

by debugging It looks like encoding and decoding of data on browser taking time.

Please any one help me. do i miss any configuration which is causing 
performance issue.
 

--- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote:

 I'd think it is normal, since encoding and decoding data would take some
 time, I don't know the numbers, but it would be only reasonable that it
 would take longer...
 
 Best.
 
 Oleg





Re: [flexcoders] Re: Modal windows and blur problem...

2010-04-26 Thread Alex Harui
What happens if you apply a filter to systemManager?


On 4/26/10 9:50 AM, aceoohay pa...@compuace.com wrote:






Tom:

How would I go about that? The two issues I see are;

1) Determine the width  height of the stage.

2) Create an object with a background that does the blur. I currently have a 
titlewindow in a canvas, so once I determine the height  width to use I can 
make the canvas as big as I want, but how do I make the canvas background 
blurry?

Paul

--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Tom 
Chiverton tom.chiver...@... wrote:

 On Monday 26 Apr 2010 16:07:27 you wrote:
  Any ideas on how to blur everything including all modal windows.

 Add a new object the full width/height of the Stage ?

 --
 Helping to revolutionarily e-enable leading-edge virtual magnetic industry-
 wide interfaces as part of the IT team of the year 2010, '09 and '08

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and 
 Wales under registered number OC307980 whose registered office address is at 
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
 of members is available for inspection at the registered office together with 
 a list of those non members who are referred to as partners.  We use the word 
 ?partner? to refer to a member of the LLP, or an employee or consultant with 
 equivalent standing and qualifications. Regulated by the Solicitors 
 Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and may 
 be confidential or legally privileged.  If you are not the addressee you must 
 not read it and must not use any information contained in nor copy it nor 
 inform any person other than Halliwells LLP or the addressee of its existence 
 or contents.  If you have received this email in error please delete it and 
 notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.halliwells.com.







--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui


Re: [flexcoders] Explicitly setting the height of a row in a DataGrid

2010-04-26 Thread Alex Harui
I think rowInfo is going to get refreshed by makeRowsAndColumns.  Why are you 
adding to listContent?  Normally you’d alter the measuredHeight of a renderer 
to get a row to grow and add any new widgets to the renderer.


On 4/26/10 7:21 AM, Jay Proulx jason.pro...@gmail.com wrote:






Good morning all,

I have a custom DataGrid that handles an event from one of its item renderers, 
adds a new component to listContent (and positions and sizes it), then I want 
to increase the height of the associated row.

Right now I'm setting rowInfo[rowId].height, and calling invalidate*(); but I'm 
not getting the desired reaction.  I can see that the rendering is all 
happening correctly and I have all of the correct values, but the row won't 
change size.

Any thoughts/examples?  I've been searching around but haven't found what I'm 
looking for...

Jay Proulx
jason.pro...@pollensoft.com
http://blog.pollensoft.com
http://twitter.com/pollensoft
http://ca.linkedin.com/in/jayproulx








--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui


Re: [flexcoders] Re: How to clear cached RSL programmatically?

2010-04-26 Thread Alex Harui
Yes, that’s what we’re doing so I think that’s the only way that is known to 
work.


On 4/26/10 8:10 AM, handitan handi@gmail.com wrote:






Hi Alex,

Thx for your explanation.
Based on what you just said, my understanding is that the answer to the 
question that I put out on the scenario is RSL from Step 1 would be the one 
that's still got loaded.

And you mentioned before the solution is publish new ones.
When you said that, I assume that you meant that the RSL has to use the 
version-suffix filename i.e. RSL_ver1.2.swf.

Appreciate the help.

--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Alex 
Harui aha...@... wrote:

 My point is that there may not be a way using the RSL loading mechanism we 
 provide, because once we roll out RSL.SWF, we never change it so the 
 framework doesn't support any way of updating it and not having caching 
 problems.


 On 4/23/10 12:40 PM, handitan handi@... wrote:






 Hi Alex or anyone,

 I just want to make sure whether I am clear in explaining the issue that I am 
 facing.
 Please let me know if my qs and or my scenario wasn't clear enough.

 Thx for reading.

 --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com  
 mailto:flexcoders%40yahoogroups.com , handitan handi.tan@ wrote:
 
  Hi Alex!
 
  Great to hear from you as always.
  I don't understand what do you mean by framework never revs RSLs? What's 
  revs?
 
  Proably it would be better for my understanding if I use this scenario:
  1. The following have been deployed:
  - Main_ver1.0.swf
  - Module_ver1.0.swf
  - RSL.swf
 
  2. Our clients have loaded and cached thosed in their browser.
 
  3. Then all those got update, now it becomes:
  - Main_ver1.1.swf
  - Module_ver1.1.swf
  - RSL.swf -- this got updated but it's still using the same filename.
 
  4. And they all got deployed.
 
  Now I know for sure our client will get the Main_ver1.1 and Module_ver1.1 
  without having them clear the browser-cache manually but which RSL are they 
  going to get?
  Is it going to be the one from Step 1 or from Step 3?
 
  Thank you!
 
 
  --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com  
  mailto:flexcoders%40yahoogroups.com , Alex Harui aharui@ wrote:
  
   I don't think there is support for that because the framework never revs 
   RSLs.  You can do what we do and publish new ones or use modules and load 
   into the main applicationdomain.
  
  
   On 4/22/10 9:15 AM, handitan handi.tan@ wrote:
  
  
  
  
  
  
   Hi all,
  
   I posted one of this question on a thread that's related to caching but 
   since it got hijacked by a totally different topic, I decided to create a 
   new thread. If you're going to talk different stuff, please make a new 
   thread.
  
   The issue that was raised because client doesn't load the newest and 
   greatest of your deployed app because it loads from the browser cache.
  
   To resolve this issue, please read this stackOverfow thread:
   http://stackoverflow.com/questions/300757/preventing-flex-application-caching-in-browser-multiple-modules
  
   Now that solution works for the main swf and module swfs but what about 
   RSL?
  
   How do you guarantee that the loaded RSL is the latest one?
  
   Thank you.
  
  
  
  
  
  
   --
   Alex Harui
   Flex SDK Team
   Adobe System, Inc.
   http://blogs.adobe.com/aharui
  
 






 --
 Alex Harui
 Flex SDK Team
 Adobe System, Inc.
 http://blogs.adobe.com/aharui







--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui


[flexcoders] Re: Modal windows and blur problem...

2010-04-26 Thread aceoohay
Alex:

How?

systemManager.setStyle(modalTransparencyBlur,10) ?

Paul

--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote:

 What happens if you apply a filter to systemManager?
 
 
 On 4/26/10 9:50 AM, aceoohay pa...@... wrote:
 
 
 
 
 
 
 Tom:
 
 How would I go about that? The two issues I see are;
 
 1) Determine the width  height of the stage.
 
 2) Create an object with a background that does the blur. I currently have a 
 titlewindow in a canvas, so once I determine the height  width to use I can 
 make the canvas as big as I want, but how do I make the canvas background 
 blurry?
 
 Paul
 
 --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Tom 
 Chiverton tom.chiverton@ wrote:
 
  On Monday 26 Apr 2010 16:07:27 you wrote:
   Any ideas on how to blur everything including all modal windows.
 
  Add a new object the full width/height of the Stage ?
 
  --
  Helping to revolutionarily e-enable leading-edge virtual magnetic industry-
  wide interfaces as part of the IT team of the year 2010, '09 and '08
 
  
 
  This email is sent for and on behalf of Halliwells LLP.
 
  Halliwells LLP is a limited liability partnership registered in England and 
  Wales under registered number OC307980 whose registered office address is 
  at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A 
  list of members is available for inspection at the registered office 
  together with a list of those non members who are referred to as partners.  
  We use the word ?partner? to refer to a member of the LLP, or an employee 
  or consultant with equivalent standing and qualifications. Regulated by the 
  Solicitors Regulation Authority.
 
  CONFIDENTIALITY
 
  This email is intended only for the use of the addressee named above and 
  may be confidential or legally privileged.  If you are not the addressee 
  you must not read it and must not use any information contained in nor copy 
  it nor inform any person other than Halliwells LLP or the addressee of its 
  existence or contents.  If you have received this email in error please 
  delete it and notify Halliwells LLP IT Department on 0870 365 2500.
 
  For more information about Halliwells LLP visit www.halliwells.com.
 
 
 
 
 
 
 
 --
 Alex Harui
 Flex SDK Team
 Adobe System, Inc.
 http://blogs.adobe.com/aharui





[flexcoders] Re: How to clear cached RSL programmatically?

2010-04-26 Thread handitan
Alright cool, thx for clearing up Alex!

Time to modify my ant build scripts :)

--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote:

 Yes, that's what we're doing so I think that's the only way that is known to 
 work.
 
 
 On 4/26/10 8:10 AM, handitan handi@... wrote:
 
 
 
 
 
 
 Hi Alex,
 
 Thx for your explanation.
 Based on what you just said, my understanding is that the answer to the 
 question that I put out on the scenario is RSL from Step 1 would be the one 
 that's still got loaded.
 
 And you mentioned before the solution is publish new ones.
 When you said that, I assume that you meant that the RSL has to use the 
 version-suffix filename i.e. RSL_ver1.2.swf.
 
 Appreciate the help.
 
 --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , 
 Alex Harui aharui@ wrote:
 
  My point is that there may not be a way using the RSL loading mechanism we 
  provide, because once we roll out RSL.SWF, we never change it so the 
  framework doesn't support any way of updating it and not having caching 
  problems.
 
 
  On 4/23/10 12:40 PM, handitan handi.tan@ wrote:
 
 
 
 
 
 
  Hi Alex or anyone,
 
  I just want to make sure whether I am clear in explaining the issue that I 
  am facing.
  Please let me know if my qs and or my scenario wasn't clear enough.
 
  Thx for reading.
 
  --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com  
  mailto:flexcoders%40yahoogroups.com , handitan handi.tan@ wrote:
  
   Hi Alex!
  
   Great to hear from you as always.
   I don't understand what do you mean by framework never revs RSLs? What's 
   revs?
  
   Proably it would be better for my understanding if I use this scenario:
   1. The following have been deployed:
   - Main_ver1.0.swf
   - Module_ver1.0.swf
   - RSL.swf
  
   2. Our clients have loaded and cached thosed in their browser.
  
   3. Then all those got update, now it becomes:
   - Main_ver1.1.swf
   - Module_ver1.1.swf
   - RSL.swf -- this got updated but it's still using the same filename.
  
   4. And they all got deployed.
  
   Now I know for sure our client will get the Main_ver1.1 and Module_ver1.1 
   without having them clear the browser-cache manually but which RSL are 
   they going to get?
   Is it going to be the one from Step 1 or from Step 3?
  
   Thank you!
  
  
   --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com  
   mailto:flexcoders%40yahoogroups.com , Alex Harui aharui@ wrote:
   
I don't think there is support for that because the framework never 
revs RSLs.  You can do what we do and publish new ones or use modules 
and load into the main applicationdomain.
   
   
On 4/22/10 9:15 AM, handitan handi.tan@ wrote:
   
   
   
   
   
   
Hi all,
   
I posted one of this question on a thread that's related to caching but 
since it got hijacked by a totally different topic, I decided to create 
a new thread. If you're going to talk different stuff, please make a 
new thread.
   
The issue that was raised because client doesn't load the newest and 
greatest of your deployed app because it loads from the browser cache.
   
To resolve this issue, please read this stackOverfow thread:
http://stackoverflow.com/questions/300757/preventing-flex-application-caching-in-browser-multiple-modules
   
Now that solution works for the main swf and module swfs but what about 
RSL?
   
How do you guarantee that the loaded RSL is the latest one?
   
Thank you.
   
   
   
   
   
   
--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
   
  
 
 
 
 
 
 
  --
  Alex Harui
  Flex SDK Team
  Adobe System, Inc.
  http://blogs.adobe.com/aharui
 
 
 
 
 
 
 
 --
 Alex Harui
 Flex SDK Team
 Adobe System, Inc.
 http://blogs.adobe.com/aharui





Re: [flexcoders] Efficient SOAP WebService invocation

2010-04-26 Thread sasuke

@Oleg  Mike

Thanks for the answers. Multi-invocation safe webservice and operation
objects is just what I needed here. I'll try it out and let the group know
in case I end up facing invoking multiple operations using the same
operation/webservice objects.

Regards,
sasuke
-- 
View this message in context: 
http://old.nabble.com/Efficient-SOAP-WebService-invocation-tp28288046p28367992.html
Sent from the FlexCoders mailing list archive at Nabble.com.



[flexcoders] Import Statement Question

2010-04-26 Thread Dan Pride
I am working on an app that contains a series of import statements in the mxml 
file that reference packages that I can not see in the Navigator pane. I didn't 
know this is possible? How can it reference a package which does not appear to 
exist?
Thanks
Dan


  


Re: [flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread Baz
You definitely need some kind of source control like SVN or GIT. You check
out your project, work/test locally, then commit back to the repo. You can
do this as often as you like. If you don't want to go that route, even
though you really, really, really should... at a minimum, make sure that the
project is not on the share. Create your project locally, with all the
settings and *dot* files (and have the other developers do the same), then
only share the pure src code on the network share. You can link it to your
project by opening the create new folder dialog, clicking on advanced
the selecting link (something like that) and choosing your network share.

Also, yahoo can notify you of new messages - there is a delivery
preferences option, or something like that.

Baz


On Mon, Apr 26, 2010 at 7:58 AM, aceoohay pa...@compuace.com wrote:



 We are still having the problem, but I have been too busy to check
 flexcoders. It sure would be nice if Yahoo groups would notify you of
 responses to threads you are members of.

 We are not using a CVS, the project is on a network share, multiple
 developers have FB3 on their desktop, and the problems we are having
 generally include slow compiles and modules in the project not compiling
 after a chhange.

 The last problem is the real pain, you make a change, compile and test, and
 the change doesn't seem to do anything. The most reliable way of resolving
 the issue is to remove the module from the project and re-add it.

 Paul


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Ivan
 ivan.ilija...@... wrote:
 
  Hello Paul. Can you give us some hints what kind of problems are you
 talking about? Are you using Subversion, CVS or some other repository?
 
  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
 aceoohay pauls@ wrote:
  
   We are doing a conversion of 200+ screens from Oracle Forms to Flex,
 and have 4 developers working on the project.
  
   We are experiencing a variety of problems with flexbuilder when
 everyone is using the same project. Where can I find some hints on how to
 manage a project with multiple developers?
  
   Paul
  
 

  



[flexcoders] Re: Import Statement Question

2010-04-26 Thread Jeffry Houser
I bet the packages are in a library project or a SWC.  

The packages could also be part of the Flex framework.  You wouldn't see thise 
in the navigator pane of your Flex project.  

--- In flexcoders@yahoogroups.com, Dan Pride danielpr...@... wrote:

 I am working on an app that contains a series of import statements in the 
 mxml file that reference packages that I can not see in the Navigator pane. I 
 didn't know this is possible? How can it reference a package which does not 
 appear to exist?
 Thanks
 Dan





[flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread aceoohay
BTW, I can't find aYahoo option that will only send messages to threads that I 
am involved in.

Paul

--- In flexcoders@yahoogroups.com, Baz li...@... wrote:

 You definitely need some kind of source control like SVN or GIT. You check
 out your project, work/test locally, then commit back to the repo. You can
 do this as often as you like. If you don't want to go that route, even
 though you really, really, really should... at a minimum, make sure that the
 project is not on the share. Create your project locally, with all the
 settings and *dot* files (and have the other developers do the same), then
 only share the pure src code on the network share. You can link it to your
 project by opening the create new folder dialog, clicking on advanced
 the selecting link (something like that) and choosing your network share.
 
 Also, yahoo can notify you of new messages - there is a delivery
 preferences option, or something like that.
 
 Baz
 
 
 On Mon, Apr 26, 2010 at 7:58 AM, aceoohay pa...@... wrote:
 
 
 
  We are still having the problem, but I have been too busy to check
  flexcoders. It sure would be nice if Yahoo groups would notify you of
  responses to threads you are members of.
 
  We are not using a CVS, the project is on a network share, multiple
  developers have FB3 on their desktop, and the problems we are having
  generally include slow compiles and modules in the project not compiling
  after a chhange.
 
  The last problem is the real pain, you make a change, compile and test, and
  the change doesn't seem to do anything. The most reliable way of resolving
  the issue is to remove the module from the project and re-add it.
 
  Paul
 
 
  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Ivan
  ivan.ilijasic@ wrote:
  
   Hello Paul. Can you give us some hints what kind of problems are you
  talking about? Are you using Subversion, CVS or some other repository?
  
   --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
  aceoohay pauls@ wrote:
   
We are doing a conversion of 200+ screens from Oracle Forms to Flex,
  and have 4 developers working on the project.
   
We are experiencing a variety of problems with flexbuilder when
  everyone is using the same project. Where can I find some hints on how to
  manage a project with multiple developers?
   
Paul
   
  
 
   
 





[flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread aceoohay
Okay, say I want to use some sort of version control. I am not opposed to it, 
but I can't spend too much effort implementing this whilst still trying to get 
the project done within an unreasonable deadline.

What do you suggest product wise? 

My developers have local/vpn access to the network where the project files are 
stored. Everything is all windows. Generally everyone works on discreet parts 
of the system except me, I work on the shared portions, and help out in 
whatever discreet section someone needs help in. The shared (classes, 
components  the like) pieces that I work on need to be propagated to the other 
developers as soon as I publish them. As I mentioned before, I don't have a lot 
of manpower to put to implementing a version control system. 

Based on the above, what would be best?

Paul

--- In flexcoders@yahoogroups.com, Baz li...@... wrote:

 You definitely need some kind of source control like SVN or GIT. You check
 out your project, work/test locally, then commit back to the repo. You can
 do this as often as you like. If you don't want to go that route, even
 though you really, really, really should... at a minimum, make sure that the
 project is not on the share. Create your project locally, with all the
 settings and *dot* files (and have the other developers do the same), then
 only share the pure src code on the network share. You can link it to your
 project by opening the create new folder dialog, clicking on advanced
 the selecting link (something like that) and choosing your network share.
 
 Also, yahoo can notify you of new messages - there is a delivery
 preferences option, or something like that.
 
 Baz
 
 
 On Mon, Apr 26, 2010 at 7:58 AM, aceoohay pa...@... wrote:
 
 
 
  We are still having the problem, but I have been too busy to check
  flexcoders. It sure would be nice if Yahoo groups would notify you of
  responses to threads you are members of.
 
  We are not using a CVS, the project is on a network share, multiple
  developers have FB3 on their desktop, and the problems we are having
  generally include slow compiles and modules in the project not compiling
  after a chhange.
 
  The last problem is the real pain, you make a change, compile and test, and
  the change doesn't seem to do anything. The most reliable way of resolving
  the issue is to remove the module from the project and re-add it.
 
  Paul
 
 
  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Ivan
  ivan.ilijasic@ wrote:
  
   Hello Paul. Can you give us some hints what kind of problems are you
  talking about? Are you using Subversion, CVS or some other repository?
  
   --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
  aceoohay pauls@ wrote:
   
We are doing a conversion of 200+ screens from Oracle Forms to Flex,
  and have 4 developers working on the project.
   
We are experiencing a variety of problems with flexbuilder when
  everyone is using the same project. Where can I find some hints on how to
  manage a project with multiple developers?
   
Paul
   
  
 
   
 





Re: [flexcoders] Re: Flebuilder 3 manage project

2010-04-26 Thread Baz
In my book, there are only 2 options for source control: GIT and Subversion.
The main difference between them is that GIT is distributed and SVN is
centralized. The future is with GIT, but SVN is more prevalent and its
tooling more refined. If I were you, learning a whole new system, I'd go
with GIT - it's really much, much, much better, and the eclipse plugin
(eGIT) has been maturing very well.

In terms of setup, it will only be a few hours for either one, but it will
take some effort and reading - neither are totally point and click.
Depending on your corporate policy, I'd just pay a couple of bucks a month
for a hosted solution at somewhere like github.com. That's where all open
flex projects are going and it's an unbelievably well put together site with
TONS of help docs. Also there's a fantastic book that was just opened up and
published online: http://progit.org/book/

Good luck!

Baz


On Mon, Apr 26, 2010 at 2:18 PM, aceoohay pa...@compuace.com wrote:



 Okay, say I want to use some sort of version control. I am not opposed to
 it, but I can't spend too much effort implementing this whilst still trying
 to get the project done within an unreasonable deadline.

 What do you suggest product wise?

 My developers have local/vpn access to the network where the project files
 are stored. Everything is all windows. Generally everyone works on discreet
 parts of the system except me, I work on the shared portions, and help out
 in whatever discreet section someone needs help in. The shared (classes,
 components  the like) pieces that I work on need to be propagated to the
 other developers as soon as I publish them. As I mentioned before, I don't
 have a lot of manpower to put to implementing a version control system.

 Based on the above, what would be best?

 Paul


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Baz
 li...@... wrote:
 
  You definitely need some kind of source control like SVN or GIT. You
 check
  out your project, work/test locally, then commit back to the repo. You
 can
  do this as often as you like. If you don't want to go that route, even
  though you really, really, really should... at a minimum, make sure that
 the
  project is not on the share. Create your project locally, with all the
  settings and *dot* files (and have the other developers do the same),
 then
  only share the pure src code on the network share. You can link it to
 your
  project by opening the create new folder dialog, clicking on advanced
  the selecting link (something like that) and choosing your network
 share.
 
  Also, yahoo can notify you of new messages - there is a delivery
  preferences option, or something like that.
 
  Baz
 
 
  On Mon, Apr 26, 2010 at 7:58 AM, aceoohay pa...@... wrote:
 
  
  
   We are still having the problem, but I have been too busy to check
   flexcoders. It sure would be nice if Yahoo groups would notify you of
   responses to threads you are members of.
  
   We are not using a CVS, the project is on a network share, multiple
   developers have FB3 on their desktop, and the problems we are having
   generally include slow compiles and modules in the project not
 compiling
   after a chhange.
  
   The last problem is the real pain, you make a change, compile and test,
 and
   the change doesn't seem to do anything. The most reliable way of
 resolving
   the issue is to remove the module from the project and re-add it.
  
   Paul
  
  
   --- In flexcoders@yahoogroups.com 
   flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com, Ivan

   ivan.ilijasic@ wrote:
   
Hello Paul. Can you give us some hints what kind of problems are you
   talking about? Are you using Subversion, CVS or some other repository?
   
--- In flexcoders@yahoogroups.com 
flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com,

   aceoohay pauls@ wrote:

 We are doing a conversion of 200+ screens from Oracle Forms to
 Flex,
   and have 4 developers working on the project.

 We are experiencing a variety of problems with flexbuilder when
   everyone is using the same project. Where can I find some hints on how
 to
   manage a project with multiple developers?

 Paul

   
  
  
  
 

  



[flexcoders] air html control, get selection source

2010-04-26 Thread Derrick Anderson
Hi,

Does anyone know of a way to get the source of a selection when using the
AIR html control, similar to how you can do it in firefox?

thanks
derrick


Re: [flexcoders] Re: Modal windows and blur problem...

2010-04-26 Thread Alex Harui
I was thinking something like:

SystemManager.filters = [ new BlurFilter(...) ];


On 4/26/10 10:30 AM, aceoohay pa...@compuace.com wrote:






Alex:

How?

systemManager.setStyle(modalTransparencyBlur,10) ?

Paul

--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Alex 
Harui aha...@... wrote:

 What happens if you apply a filter to systemManager?


 On 4/26/10 9:50 AM, aceoohay pa...@... wrote:






 Tom:

 How would I go about that? The two issues I see are;

 1) Determine the width  height of the stage.

 2) Create an object with a background that does the blur. I currently have a 
 titlewindow in a canvas, so once I determine the height  width to use I can 
 make the canvas as big as I want, but how do I make the canvas background 
 blurry?

 Paul

 --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com  
 mailto:flexcoders%40yahoogroups.com , Tom Chiverton tom.chiverton@ wrote:
 
  On Monday 26 Apr 2010 16:07:27 you wrote:
   Any ideas on how to blur everything including all modal windows.
 
  Add a new object the full width/height of the Stage ?
 
  --
  Helping to revolutionarily e-enable leading-edge virtual magnetic industry-
  wide interfaces as part of the IT team of the year 2010, '09 and '08
 
  
 
  This email is sent for and on behalf of Halliwells LLP.
 
  Halliwells LLP is a limited liability partnership registered in England and 
  Wales under registered number OC307980 whose registered office address is 
  at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A 
  list of members is available for inspection at the registered office 
  together with a list of those non members who are referred to as partners.  
  We use the word ?partner? to refer to a member of the LLP, or an employee 
  or consultant with equivalent standing and qualifications. Regulated by the 
  Solicitors Regulation Authority.
 
  CONFIDENTIALITY
 
  This email is intended only for the use of the addressee named above and 
  may be confidential or legally privileged.  If you are not the addressee 
  you must not read it and must not use any information contained in nor copy 
  it nor inform any person other than Halliwells LLP or the addressee of its 
  existence or contents.  If you have received this email in error please 
  delete it and notify Halliwells LLP IT Department on 0870 365 2500.
 
  For more information about Halliwells LLP visit www.halliwells.com.
 






 --
 Alex Harui
 Flex SDK Team
 Adobe System, Inc.
 http://blogs.adobe.com/aharui







--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui