[Flashcoders] getURL question

2011-11-09 Thread [p e r c e p t i c o n]
Hi All, I'm using getURL in an app...don't ask...anyway, i'm calling javascript from this app and over time the app slows to a crawl. Can anyone tell me if they've experienced this with the player as well(i'm using FP 10.3 btw)? are there any known mem leaks with getURL...i can't find much on the

[Flashcoders] getURL/ExternalInterface

2011-11-02 Thread [p e r c e p t i c o n]
Hi All, Can anyone tell me if getURL or ExternalInterface in FP10 use HTTP 1.0 or 1.1? TIA percy -- . : . [ p e r c e p t i c o n ] . _ _ _ _ _ _ _ _ _ _ . ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.co

Re: [Flashcoders] getURL and ExternalInterface

2008-09-10 Thread Hans Wichman
thanks! On Sun, Sep 7, 2008 at 12:17 AM, sebastian <[EMAIL PROTECTED]> wrote: > in AS2 externalinterface is your friend and it works PERFECT with swfaddress > and swfobject. There are some strange issues with IE though, so make sure > you test well on that platform. > > read this for more informat

Re: [Flashcoders] getURL and ExternalInterface

2008-09-06 Thread sebastian
in AS2 externalinterface is your friend and it works PERFECT with swfaddress and swfobject. There are some strange issues with IE though, so make sure you test well on that platform. read this for more information and a working example on all OS/platform combos I know of: http://blog.intuity

[Flashcoders] getURL and ExternalInterface

2008-09-04 Thread Hans Wichman
Hi, I read somewhere that using getUrl for javascript calls while using externalinterface at the same time will lead to problems (eg when using swfaddress). Can anyone tell me if opening an url through getUrl will cause these problems as well, or just javascript? Any work arounds? What is the exa

Re: [Flashcoders] getURL issues with IE (was: tracking & travelling)

2007-09-07 Thread Helmut Granda
On 9/7/07, Paul Freedman <[EMAIL PROTECTED]> wrote: > > > > which explained everything and included this: > getURL("javascript:location.href='http://www.google.com' > ;javascript:doSometh > ingElse();"); Nice - Another way that has fixed this issue is firing one getURL and then wait 500ms with a

[Flashcoders] getURL issues with IE (was: tracking & travelling)

2007-09-07 Thread Paul Freedman
First, thanks to Glen, who answered. When this started, all I knew was that I had two getURL()s in quick succession. Two weeks ago when I first tested this process it worked in both FireFox and IE. Tuesday, when I had to deliver a finished product, it didn't work in IE. My original test was almos

Re: [Flashcoders] getURL with doc doesn't work in IE

2007-07-26 Thread Darren Bowers
Hi Daniel, Yes we have encountered this quite a lot as we used to link to quite a few docs from a flash movie from CDROMs. Never really had a fix for it except to create an HTML document that automatically redirected to the DOC from within. Problem was, you couldnt send a query string to the HTML

[Flashcoders] getURL with doc doesn't work in IE

2007-07-26 Thread Holth, Daniel C.
Hello, I have the following code in an onRelease event of a button: getURL("systems_breakdown_notes.doc","_blank"); In FireFox the document opens fine, but in IE it gives a page error: "Action canceled : Internet Explorer was unable to link to the Web page you requested. The page might be tempo

[Flashcoders] getURL question

2007-04-11 Thread [p e r c e p t i c o n]
Hello, can anyone tell me how to keep unwanted objects and variable from being posted when i call getURL? for example... i instantiate an WebServices object and need to post the data returned to another server...but what i'm seeing is that the WebServices object is being posted, but not the data.

[Flashcoders] getURL malfunctioning in MAC 10.4.8

2006-11-21 Thread Deepak Sahu
Hi Guys, I had created one application years back and it was working fine till date, but now with new version of MAC OS 10.4.8 when I am calling getURL("some html","some frame") from flash its getting open in new window instead of opening in the frame. However its work fine with older versi

Re: [Flashcoders] getURL and IE 6.0.

2006-09-05 Thread Adrian Ionut Beschea
yep, this is exactly what it should do :) In my current setup (win xp sp2) ie6 keeps opening new windows. Someone on this list said on his machine there's no problem though. Latcho <[EMAIL PROTECTED]> wrote: So you mean to say that "aaa" opens a '_blank' window and will after that keep the

Re: [Flashcoders] getURL and IE 6.0.

2006-09-05 Thread Latcho
So you mean to say that "aaa" opens a '_blank' window and will after that keep the reference "aaa" so you can reuse the identifier string to point to that window ? if so, nice, thanks Adrian Ionut Beschea wrote: not all popups are blocked. it depends on what you getURL to. If it's just a scrip

Re: [Flashcoders] getURL and IE 6.0.

2006-09-05 Thread Adrian Ionut Beschea
not all popups are blocked. it depends on what you getURL to. If it's just a script, or a web page, the browser won't block it, if it's a javascript call, then you're on for problems. Try this : test_btn.onRelease = getThatURL; function getThatURL() { getURL("http://www.yahoo.com","aaa";); }

Re: [Flashcoders] getURL and IE 6.0.

2006-09-05 Thread Latcho
and that string id'd window would be a popup... and popups are blocked Adrian Ionut Beschea wrote: It opens a new window That's what the second argument in getURL is for. You can give it _self, _blank, _parent, _top but you can also give it a string to identify the window. Jim Berkey <

Re: [Flashcoders] getURL and IE 6.0.

2006-09-04 Thread Mike Cobb
- This works fine for me. Try putting it in an html file & uploading it - it might just be a local problem. The only issue I have is that a second click will not bring the window into focus - so you might want to consider a javascript option. Adrian Ionut Beschea wrote: I need the browse

Re: [Flashcoders] getURL and IE 6.0.

2006-09-04 Thread Adrian Ionut Beschea
It opens a new window That's what the second argument in getURL is for. You can give it _self, _blank, _parent, _top but you can also give it a string to identify the window. Jim Berkey <[EMAIL PROTECTED]> wrote: >I need the browser to open a new window but if I press my button >multiple t

Re: [Flashcoders] getURL and IE 6.0.

2006-09-04 Thread Jim Berkey
>I need the browser to open a new window but if I press my button >multiple times I want to get to that same window. > Ahhh, an interesting concept. I'm surprised that it works in Firefox. Does it open a new browser with window, or a new tab? Maybe when tabbed IE 7 is out this would be possib

Re: [Flashcoders] getURL and IE 6.0.

2006-09-04 Thread Adrian Ionut Beschea
I need the browser to open a new window but if I press my button multiple times I want to get to that same window. Jim Berkey <[EMAIL PROTECTED]> wrote: Try it without the second paramater: test_btn.onRelease= getThatURL; function getThatURL() { getURL("http://www.example.com/script.php";);

Re: [Flashcoders] getURL and IE 6.0.

2006-09-04 Thread Jim Berkey
Try it without the second paramater: test_btn.onRelease= getThatURL; function getThatURL() { getURL("http://www.example.com/script.php";); } *** REPLY SEPARATOR *** On 9/4/2006 at 4:04 AM Adrian Ionut Beschea wrote: >Hello, > >I want to use getURL to open the exact same windo

[Flashcoders] getURL and IE 6.0.

2006-09-04 Thread Adrian Ionut Beschea
Hello, I want to use getURL to open the exact same window whenever a user pushes the button. The code is this : test_btn.onRelease= getThatURL; function getThatURL() { getURL("http://www.example.com/script.php","window_name";); } It works fine in Firefox, but in IE 6.0. it keeps opening new

RE: [Flashcoders] getURL doesn't work on Mac

2006-04-20 Thread Lieven Cardoen
erience engelse wandeling 2 k18 b8500 kortrijk T +32 (0)56/361 197 // communicatie bij voorkeur op [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gerry Creighton Sent: donderdag 20 april 2006 15:56 To: Flashcoders mailing list Subject: R

Re: [Flashcoders] getURL doesn't work on Mac

2006-04-20 Thread Gerry Creighton
That should work using Safari...the pdf will open in Safari but if they don't have acrobat reader then the pdf might open in Preview if they are using FireFox. Gerry On Apr 20, 2006, at 5:34 AM, Lieven Cardoen wrote: Anybody an idea why getURL doesn't work on Mac. I try to open a pdf with ge

RE: [Flashcoders] getURL doesn't work on Mac

2006-04-20 Thread Lieven Cardoen
ginal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of erixtekila Sent: donderdag 20 april 2006 11:53 To: Flashcoders mailing list Subject: Re: [Flashcoders] getURL doesn't work on Mac Le 20 avr. 06, à 11:34, Lieven Cardoen a écrit : > Anybody an idea why getURL do

Re: [Flashcoders] getURL doesn't work on Mac

2006-04-20 Thread erixtekila
Le 20 avr. 06, à 11:34, Lieven Cardoen a écrit : Anybody an idea why getURL doesn't work on Mac. I try to open a pdf with getURL, and this works fine on PC (IE, FireFox, ...), but not on Mac. On mac Finder opens and just shows the pdf-file. User has to click it to view it. Probably means tha

[Flashcoders] getURL --> firefox

2006-04-20 Thread Lieven Cardoen
If you want getURL to work for firefox : /* This doesn't work getURL("file:///D|/projects/tests/blank.html"); But this does getURL("file:///D:/projects/tests/blank.html"); */ Will open the intended file in firefox. var url_arr:Array = _root._url.split("/"); url_arr.pop(); var url_str:

[Flashcoders] getURL doesn't work on Mac

2006-04-20 Thread Lieven Cardoen
Anybody an idea why getURL doesn't work on Mac. I try to open a pdf with getURL, and this works fine on PC (IE, FireFox, ...), but not on Mac. On mac Finder opens and just shows the pdf-file. User has to click it to view it. lieven cardoen indiegroup interactive digital experience engelse wand

Re: [Flashcoders] getURL from Windows Projector breaks in Firefox

2006-04-17 Thread Marc Hoffman
Thanks, Anggie. I've added my observations to the report on Bugzilla. -Marc At 07:44 PM 4/17/2006, you wrote: Hi Marc, It's a bug in FF that hasn't been fixed yet. https://bugzilla.mozilla.org/show_bug.cgi?id=325014 -- Anggie Bratadinata Web|Graphic|Flash Jl. Raya Langsep 21 Malang - East Java

Re: [Flashcoders] getURL from Windows Projector breaks in Firefox

2006-04-17 Thread Anggie Bratadinata
Hi Marc, It's a bug in FF that hasn't been fixed yet. https://bugzilla.mozilla.org/show_bug.cgi?id=325014 -- Anggie Bratadinata Web|Graphic|Flash Jl. Raya Langsep 21 Malang - East Java I N D O N E S I A http://design.ibshastautama.com Marc Hoffman wrote: Anyone else have this problem? I have a

[Flashcoders] getURL from Windows Projector breaks in Firefox

2006-04-17 Thread Marc Hoffman
Anyone else have this problem? I have a Windows projector on a CD. A button onRelease calls getURL("index.html"), where index.html is also on the CD (same location as the projector). If I.E. is the default browser, index.html opens fine in it. If Firefox is the default browser, the first click

Re: [Flashcoders] getURL not working

2006-03-08 Thread Ron Wheeler
Beware that one of the methods (GET or POST) has a server dependent limit on the size of message that can be sent. It is very small usually. (2000 character range) Flash supports both methods except when you are testing. Then it only supports the wrong one. Read getURL docs for more information.

Re: [Flashcoders] getURL not working

2006-03-07 Thread Mick G
seems obvious, but you are adding a GET or POST to the getURL? On 3/8/06, Bob Leisle <[EMAIL PROTECTED]> wrote: > > getURL() is the wrong way to go for sending data. The Flash XML object > has methods specifically for sending and receiving data. Read up on the > XML.load(), XML.send() and XML.send

Re: [Flashcoders] getURL not working

2006-03-07 Thread Bob Leisle
getURL() is the wrong way to go for sending data. The Flash XML object has methods specifically for sending and receiving data. Read up on the XML.load(), XML.send() and XML.sendAndLoad() methods. They'll do you right. hth hidayath q wrote: Hi all, I have doubt in getURL method.Im using a

[Flashcoders] getURL not working

2006-03-07 Thread hidayath q
Hi all, I have doubt in getURL method.Im using a XML in a file which is more than 500 nodes. i will be creating new nodes dynamically in XML and i want to write it to a text file using PHP. im using the getURL method inside press of a button component to transfer the data from flash to PHP.but i c

Re: [Flashcoders] getURL and javascript not working in flash 8

2005-12-27 Thread Arul Prasad
Thats because of the new Security policies implemented in Flash Player 8. Check this article : http://www.macromedia.com/devnet/flash/articles/fplayer8_security_03.html ~Arul Prasad. On 12/27/05, Sumeet Kumar <[EMAIL PROTECTED]> wrote: > > Hi All > > I m using the getURL method to call a funct

[Flashcoders] getURL and javascript not working in flash 8

2005-12-26 Thread Sumeet Kumar
Hi All I m using the getURL method to call a function in the javascript in i.e but it is not working i.e I m not able to call the javascript function through getURL. Any suggestion ? Thanks and Regards Sumeet Kumar ___ Flashcoders mailing list Flashcod

[Flashcoders] getURL character limit in IE workarounds

2005-12-19 Thread Jeff Fox
Does anyone have any out of the box workaround for the character limit bug in IE issue? I've seen a solution that uses the Flash Integration Toolkit, but implementing that within our site may be difficult due to some proprietary Flash code to display the Object and Embed tags. Was wondering if anyo

Re: [Flashcoders] getURL

2005-12-14 Thread Hans Wichman
Hi, thanks ill look into this one as well. hans At 06:16 PM 12/12/2005, you wrote: Hans, About a month ago I tried to edit SharedObject file (*.so) which was created after visiting MM online "settings_manager". Success! So, try to set permissions to one of your local drives via MM online tool, a

RE: [Flashcoders] getURL

2005-12-14 Thread Hans Wichman
chman Sent: Monday, December 12, 2005 8:35 AM To: Flashcoders mailing list; Flashcoders mailing list Subject: Re: [Flashcoders] getURL Hi, i looked into the settings manager, but couldnt find it. Any ideas for the workaround? greetz Hans At 02:02 PM 12/12/2005, Mick G wrote: >This is a new sec

RE: [Flashcoders] getURL

2005-12-13 Thread Keith DiMatteo
URL(url + nvp1, "GET"); HTH, Keith -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hans Wichman Sent: Monday, December 12, 2005 8:35 AM To: Flashcoders mailing list; Flashcoders mailing list Subject: Re: [Flashcoders] getURL Hi, i looked into th

Re: [Flashcoders] getURL

2005-12-12 Thread GregoryN
Hans, About a month ago I tried to edit SharedObject file (*.so) which was created after visiting MM online "settings_manager". Success! So, try to set permissions to one of your local drives via MM online tool, and then: map your network location as new drive => edit so file. Hope this can help.

Re: [Flashcoders] getURL

2005-12-12 Thread Hans Wichman
Hi, i looked into the settings manager, but couldnt find it. Any ideas for the workaround? greetz Hans At 02:02 PM 12/12/2005, Mick G wrote: This is a new security setting in Flash 8 - drives me crazy. I rolled back to Flash 7 in one of my browsers. If you have Flash 8, there are workarounds. h

Re: [Flashcoders] getURL

2005-12-12 Thread Mick G
This is a new security setting in Flash 8 - drives me crazy. I rolled back to Flash 7 in one of my browsers. If you have Flash 8, there are workarounds. http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager.html The settings manager being an online app is so weird.

[Flashcoders] getURL

2005-12-12 Thread Hans Wichman
Hi list, it seems when playing content in Flash 8, using getUrl("myFIle.html", "_blank", "GET") does no longer append variables to the given file when run locally. Can anyone confirm this and does anyone have a workaround? greetz Hans ___ Flashcode