Re: "alert" pop-up window in ming?
[email protected] (Wolfgang Hamann) Thu, 4 Dec 2003 20:22:00 +0100 (CET)
| Newsgroups | gmane.comp.web.ming.general |
|---|---|
| Message-ID | <wolfgang-1031204202200.A0612715@loopback> |
Hi,
try
... new SWFAction("this.geturl('javascript:alert(\'message\')')";)
the "this" part solves the problem that geturl does not like just one parameter
and since you do not have three different kinds of quotes (one for the entire scripts,
one for the argument to geturl, and one for the text embedded into it), you have to backslash
some of them
Wolfgang