var tabpermissions:HTTPService = new HTTPService (); var params:Object = new Object(); params.test = 'foo';
tabpermissions.send(params); tabpermissions.cancel(); var params:Object = new Object(); params.test2 = 'foo'; tabpermissions.send(params); Does that helps? On Thu, Sep 25, 2008 at 3:08 PM, Jason B <[EMAIL PROTECTED]> wrote: > is there a way to clear an httpservice? > > im defining items as > > tabpermissions = new httpservice(); > tabpermissions.request.test; > tabpermissions.send(); > > tabpermissions = new httpservice(); > tabpermissions.request.test2; > tabpermissions.send(); > > now i keep adding new requests dynamically but i dont want to send > test since i already sent it until the event is chosen. > how do i clear request area ? > > example i want to post only the items i need ? > > -- Guilherme Blanco - Web Developer CBC - Certified Bindows Consultant Cell Phone: +55 (16) 9166-6902 MSN: [EMAIL PROTECTED] URL: http://blog.bisna.com Rio de Janeiro - RJ/Brazil

