Re: [flexcoders] Re: geturl() along with javascript to modify the specified url URGENT PLZ REPLY

2006-08-29 Thread Rogerio Gonzalez
Really?The test that I did works pretty fine.in the example that I send, won´t ope because the url parameter of window.open is empty ('')If you put an page there, should work fine...Rogerio On 8/29/06, moni_singhal [EMAIL PROTECTED] wrote: Hi Rogerio, Thanks

[flexcoders] Re: geturl() along with javascript to modify the specified url URGENT PLZ REPLY

2006-08-28 Thread moni_singhal
Hi Rogerio, Thanks for the reply. But if i will try this way ,it wont evn open my url. Dats d problem. Thanks, Monika --- In flexcoders@yahoogroups.com, Rogerio Gonzalez [EMAIL PROTECTED] wrote: One way is calling ExternalInterface with the full comand ExternalInterface.call (window.open

[flexcoders] Re: getURL()

2006-08-08 Thread moni_singhal
Hi , Thanks 4 d info. I chkd d API for flex 2 ,as per d API we have to pass a string argument in URLRequest object. But if i m tryign to pass blank string or null then either it is not displaying my url or its giving me d same error dat urlRequest should be notnull. If anyone has any idea abou

[flexcoders] Re: getURL()

2006-08-04 Thread moni_singhal
HI, Thanks for the reply .But when i tried like this: var urlReq:URLRequest=new URLRequest(); navigateToURL(urlReq,'var x=javascript:window.open (E:/FlexSDK2_B2_03- 16/monika/a.html,test,height=100,width=150,toolbar=no,scrollbars= 1,resizable=yes);x'); Its giving me this error: TypeError: Error

[flexcoders] Re: getURL()

2006-08-04 Thread moni_singhal
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 03 August 2006 10:43, moni_singhal wrote: var urlReq:URLRequest=new URLRequest(E:/flex/monika/a.html); navigateToURL(urlReq,'var x=javascript:window.open

Re: [flexcoders] Re: getURL()

2006-08-04 Thread Tom Chiverton
var urlReq:URLRequest=new URLRequest(); navigateToURL(urlReq,'var x=javascript:window.open (E:/FlexSDK2_B2_03- 16/monika/a.html,test,height=100,width=150,toolbar=no,scrollbars= 1,resizable=yes);x'); Its giving me this error: TypeError: Error #2007: Parameter url must be non-null.

[flexcoders] Re: getURL()

2006-08-03 Thread Geoffrey Williams
Well, seeing as you're not posting the variables, you can try ExternalInterface. var url : String = http://adobe.com;; var vars : URLVariables = new URLVariables (); vars.userID = userID; vars.userName = userName; vars.sessionID = sessionID; url += ? + String (vars); var target : String =

[flexcoders] Re: getURL()

2006-08-03 Thread Mike Collins
Another option is to create a local function called getURL that calls navigateToURL. It may reduce some code changes for you. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: getURL GONNNNNNNNNE

2006-06-06 Thread Harris Reynolds
Just found the answer... something like this from the flash.net package: var request:URLRequest = new URLRequest('/signin'); navigateToURL(request, '_self'); This should work accomplish the same thing as this: getURL('/signin', '_self'); Thanks for reading, ~harris --- In

Re: [flexcoders] Re: getURL and 's

2005-12-12 Thread Douglas Knudsen
use of a function within the CDATA block was the solution. XML and bare s do not get along well, eh? DK On 12/11/05, Darin Kohles [EMAIL PROTECTED] wrote: and the solution was ? --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: nevermind, I got it On 12/9/05,

[flexcoders] Re: getURL and 's

2005-12-11 Thread Darin Kohles
and the solution was ? --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: nevermind, I got it On 12/9/05, Greg Morphis [EMAIL PROTECTED] wrote: getURL() doesnt like I keep getting The reference to entity date must end with the ';' delimiter. So how do you get

[flexcoders] Re: getURL and 's

2005-12-10 Thread Greg Morphis
nevermind, I got it On 12/9/05, Greg Morphis [EMAIL PROTECTED] wrote: getURL() doesnt like I keep getting The reference to entity date must end with the ';' delimiter. So how do you get around this? Here's my code mx:Button label=Print Weekly click=getURL('printWS.jsp?location=' +

[flexcoders] Re: getURL and 's

2005-12-09 Thread Darin Kohles
Dunno if this will help but try amp; Otherwise use encodeURI() on your URL string and you'll be much happier. (I think) Good Luck --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: getURL() doesnt like I keep getting The reference to entity date must end with the ';'

[flexcoders] Re: getURL Problem

2005-10-04 Thread Marcin Glowacki
Actually, I thought that maybe an issue, so now I am only trying to getURL(http://www.google.com;); And it is the same scenario: Firefox opens the google page, and IE does not even make this request... I have trace statements before and after getURL line and both traces are logged in the

[flexcoders] Re: getURL Problem

2005-10-03 Thread Marcin Glowacki
I just gave it a shot, and it still does not work on IE... :-( mx.core.Application.getURL(?mynewparam=+value); --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: You might need to use Application.getURL(...), can't remember if we introduced that to help with this problem.

[flexcoders] Re: getURL Problem

2005-10-03 Thread Marcin Glowacki
getURL is working on both Firefox and IE when I don't have it inside the Command.execute method in my application. I think there may be some strange bug when you call getURL in the Cairngorm's Command class and user runs the app in IE... --- In flexcoders@yahoogroups.com, Marcin Glowacki

Re: [flexcoders] Re: getURL Problem

2005-10-03 Thread David Harris
Would somthing like this work(untested, and off the top of my head...) getURL(_root._url.split(.))[0] + .mxml?mynewparam=+value); cause I thought getURL(?mynewparam=+value); would be the same request as a a href=?mynewparam=samevalue Maybe firefox is a bit smarted than IE in this regard?