[flexcoders] HTTPService Method="post"

2008-04-17 Thread wmckensy
Hi I have an Flex app, consiting of a Filter for a datagrid generated
by writer class in .NET enbeded in my page, so when i clik the filter
options and i send them via httpservice with methoid= "post" it does
actual submits the values i want, it does actual rewrite the contend
but I does not reload my web page so the displayed contend is static.

My question is:

HOw can I do it makes a submit.post() when I call the HTTPService.send()
that reloads my web so it can display the filtered contend?

thanks in advance



[flexcoders] Re: Dinamic resize of flex application

2008-04-17 Thread wmckensy
I have found a solution using externalinterface and javascript 

using:
ExternalInterface.call("w_ = function () {
document.getElementById('myDivthatcontentsFlexapp').style.height=336; }");

every time i clik a button within the flex app
but seems that only works with ie7 and not in mozilla or ie6

anyway thanks for the back up. I also have set up heidht to 100% :D
--- In flexcoders@yahoogroups.com, "Rick Winscot" <[EMAIL PROTECTED]>
wrote:
>
> If the size of your application container is 100% width and 100%
height -
> your app will take up the entire browser space and re-size with the
browser
> window. Is this what you are looking for?
> 
>  
> 
> Rick Winscot
> 
>  
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of wmckensy
> Sent: Tuesday, April 15, 2008 3:14 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Dinamic resize of flex application
> 
>  
> 
> 
> Hi I have a flex application in an HTML page, inside a div, and I want
> to resize the current flex width and hight of the application (flash
> movie) depending if I have full options displayed of my app or not.
> 
> Does anyone have any idea about how to make that? i tried anything I
> could but it's not working
> 
> Best way is: application.application.height = 336 ; but it's not making
> the swf smaller. I also tried to call a js but nothing :/
> 
> If that been answered before just tell me where to look at :D
>




[flexcoders] Dinamic resize of flex application

2008-04-15 Thread wmckensy

Hi I have a flex application in an HTML page, inside a div, and I want
to resize the current flex width and hight of the application (flash
movie) depending if I have full options displayed of my app or not.

Does anyone have any idea about how to make that? i tried anything I
could but it's not working

Best way is: application.application.height = 336 ; but it's not making
the swf smaller. I also tried to call a js but nothing :/

If that been answered before just tell me where to look at :D