On Tue, 8 Mar 2005 10:50:25 -0300, Fernando Lobos <[EMAIL PROTECTED]> wrote:
> function llama_popup (pop_1:object ){
>
> var popup12 = mx.managers.PopUpManager.createPopUp(_root, pop_1,
> modal, {deferred: true});
>
> }
>
> nuevopopup:object
>
> nuevopopup = "frm_matriculas"
> llama_popup(nuevopopup)
The second argument to createPopUp() is an object, a reference to the
class, not a string (the name of the class). So if you remove the
quotes around frm_matriculas it should work.
Manish

