Futurescale, Inc. PureMVC Home

The PureMVC Framework Code at the Speed of Thought


Over 10 years of community discussion and knowledge are maintained here as a read-only archive.

New discussions should be taken up in issues on the appropriate projects at https://github.com/PureMVC

Show Posts

* | |

  Show Posts
Pages: [1]
1  PureMVC Manifold / Standard Version / Re: two instance of component problem on: April 23, 2009, 07:17:18
Thanks Cliff , its work now :)
2  PureMVC Manifold / Standard Version / two instance of component problem on: April 23, 2009, 12:48:35
Hello,

I have the following problem :
in my mxml app i have one componenet (DebugView) in two instances (ucGatewayDebugView  and ucSIMDebugView )

In the app mediator constractor i registered two mediators for the component:
            facade.registerMediator( new DebugViewMediator(app.ucGatewayDebugView ) );
            facade.registerMediator( new DebugViewMediator(app.ucSIMDebugView ) );

In the debugMediator i have the following function that add text line to textArea in the debugView Conponent:
 
             case ApplicationFacade.DATA_SHOW_IN_DEBUG:
                   showData(note.getBody() as String,COLOR_RECEIVE);
               break;
           
            .
            .
            .
       private function showData(sData:String,sColor:String):void
           {
             uc.txtDebug.text +=  sData ; // the line added only in ucGatewayDebugView !!
         
           }

the problem is that the debugMediator add the text line only in one component instance (ucGatewayDebugView )

Any advice please ?
3  PureMVC Manifold / Standard Version / task progress on: March 29, 2009, 12:54:42
Hi all,

I'd like some advice concerning how to do progress task with timeout/retry/ignore,
the flex send data to server side via socket connection and waiting for specific responding ,
so i need to check the received data from the socket proxy and if the the responde is correct i update the progress task and send the next data.

which Utility i should use for this issue?
4  PureMVC Manifold / Standard Version / Re: PureMVC and sockets on: March 21, 2009, 10:56:57
Thanks Cliff for your replay,  :)

i read about the remote proxies and i think to put the socket read and write functions in a remote proxy !!!

i read also about the delegates, and now i confused where to put the socket code in remote proxy or the delegate !!!

what you i think is a good place to put socket code from your experience ?


5  PureMVC Manifold / Standard Version / Any Answer Please??? on: March 20, 2009, 04:57:08
 :(
6  PureMVC Manifold / Standard Version / PureMVC and sockets on: March 19, 2009, 08:10:28
Hello,

I have simple question about sockets and received streaming data from server, where whe socket object should be in my puremvc application ?,

The socket have event occur when data received, so i think to put the socket  in  the view  , is that right ?

where i can find sample that use puremvc with seckets in flex ?  ???

Thanks



Pages: [1]