Data Integration :: SendAndLoad XML Request That Works Perfectly But Inside Of Any Browser It Stops ?

Sep 20, 2006

I have a simple sendAndLoad XML request that works perfectly on 95% of the computers I have used. I have check crosssite stuff and everything i can think of. Its not browser specific ,os specific, or flash version specific. On these computers I can run the same flash file on a standalone player and everything works flawlessly but inside of any browser it makes the request for the XML file and stops right there. After a while like 10 minutes flash gets tired of waiting and returns not found. I can navigate to the xml file via the same browser. Upgrading Flash doesn't help.The only thing consistent is it only happens to windows computers. The requested URL is the complete URL. I have changed this and still the same.IE or Firefox still the same. Version 9 player in both. I have montiored network traffic and see the request made and maybe a response but flash has moved.

View 1 Replies


Similar Posts:


Data Integration :: LoadVars - SendAndLoad() Over Https?

Feb 20, 2007

I am having problems with loadVars over https. What I am trying to do is sending credit card information from a flash store to a PHP-script on a server over https, and the PHP-script should return a reply. (So I am using the LoadVars sendAndLoad command). The problem is that the reply I get from the script is empty. If I try the same over http, it works fine.

View 4 Replies

Data Integration :: SendAndLoad() - How To Write The Server Side

Nov 1, 2006

i do not know how to write the server side .can someone tell me what should be the script?

View 1 Replies

Data Integration :: Sending XML Request To A Secure Server (https)?

Aug 30, 2006

am having this problem of sending XML request to an addresswhich starts with "https". The problem is I always get the errormessage "Error opening URL "https:......."", instead of the actualresponse which should be in XML format as well.The function I am using is "sendAndLoad()"requestXML and responseXML are objects of XML class . Whatfunction "sendAndLoad" above does is to post variables in the"requestXML" object to the specified URL "servelet_address". Theserver response is downloaded, parsed as variable data, and theresulting variables are placed in the responseXML object.However, as I stated above, I always get the error message.

View 2 Replies

Data Integration :: "https://" Sendandload On A Secure Site

Jun 1, 2006

I am having a problem with sendAndLoad on a secure site. Has anyone run across this before? In Internet Explorer it does not work at all. The Flash forms are sending data to PHP scripts on the secure site (https) and connecting to a MySQL database. If I change it to a non-secure site (http) it works fine.

Using Php file i m able to save all data but didnt get response back to flash file using [ result="OK" ] OR also i have tried replyXML.onLoad = function(success:Boolean) {
but always it become fail.

View 1 Replies

Data Integration :: Xml Works Locally But Not On The Server?

Aug 1, 2006

So I have an html file with a swf in the center which loads pictures and text via XML. It works fine on my own computer but on the actual site it doesn't load the pictures or text it, in any browser.

View 1 Replies

Data Integration :: Works On Development Computer Not On Website?

Feb 13, 2007

I'm using LoadVars to retrieve some data from a table using php. When I use the app from within my Flash environment I am able to retrieve the info, but once I post the swf to the website nothing happens. I"m posting to the same remote page. I don't think LoadVars is even firing since the trace in my else clause is not firing.

var reserved = new LoadVars();
reserved.load("
http://www.thefatblackpussycat.com/reservations/getReservedTables.php" );
reserved.onLoad = function(success)

[code]....

View 2 Replies

Actionscript 3 :: Loading Swf-fonts With Loader Works Perfectly In SDK 3.5 - Not In SDK 4

Jul 12, 2011

For a large project I have the following setup:

a content editor made with Flex SDK 3.5
a content viewer made with Flex SDK 4.1

Both need to work with dynamically loaded fonts as the user can use the fonts he wants.

So we used this approach:

convert the font files with Flash Professional to SWF-files (Creating a Font SWF)
editor: load the fonts with Loader (Loading a SWF font) the fonts can then be perfectly used within the application to generate htmlText viewer: the same approach to load the fonts + register them with Font.registerFont (Flex 4 Embed font from swf)

Now the problems: although the loaded fonts are listed when you trace Font.enumerateFonts(false), they are not used in the textarea. There the text is shown with the default font.

Maybe the problem is the fonts are loaded as embedAsCFF for the Text Layout Framework, and that way are not usable in an mx.controls.TextArea? But as I can not change that to a spark TextArea for multiple reasons, I need a solution to use the loaded fonts in that mx.controls.TextArea.

View 3 Replies

Android :: Camera Works Perfectly In Flex Emulator But Not On Device?

Dec 31, 2011

I have a project that uses video for a chat application, I can get it to work in the flex emulator but when I deploy it to the device the button that initiates the video doesn't change and video never starts. My devices all have 2 cameras except my computer but specifiying Camera.getCamera([1]) didn't change anything except mess up my emulator and cause a NullPointerException. Camera.getCamera([0]) works just the same as not having the ID. I have tried messing with different values quality and nothing makes a difference

private function publishVideo():void{
_publishingVideo = true;
_ns = new NetStream(_nc);

[code]......

View 1 Replies

ActionScript 2.0 :: SendAndLoad Doesn't Send Any Request?

Sep 9, 2009

I've got troubles with the sendAndLoad function for a couple of days now. It just doesn't want to send any request. My actionscript looks like this:

ActionScript Code:
test.onPress = function() {
_root.test.testText.text = 'I needed that one!';
var resultObj = false;

[Code].....

These files are all created for testing purpose. There isn't any productive idea behind and the php file is not collecting any post or get data. Just to keep it as simple as possible, trying to understand why it's not working.

I'm already happy if sendAndLoad would finally send one request to this php file as a start

View 1 Replies

ActionScript 2.0 :: Created Xml Driven Menu That Works Perfectly On Html Page

May 3, 2010

I created a xml driven menu that works perfectly on a html page but would like to use it in a flash site. I loaded the the external menu movie in by using the:loadMovie(); reference but when I try to point the movie link from the menu to the empty movieclip it wont work. below is the code for the button action:[code]

View 0 Replies

Ajax :: Detect If HTTP Request Is From Browser / Flex Asynchronous Request?

Jun 1, 2010

When Flex application make an asynchronus HTTP request, does it add a special header to the request, like some JavaScript framework does? Something that indicates whether this request is an AJAX call/not.I just want my server side code to return different response format, depending on whether the request is made from browser/flex.

View 1 Replies

Professional :: BitmapData / GetPixel Mystery - Works Perfectly On Local, Failing When Uploaded?

Dec 13, 2010

I'm working with a video in Flash where I am capturing each frame and testing the color of a single pixel. I'm using it to determine when a white/transparent background changes to be a color. The following AS2 code works flawlessly when I preview it in Flash and on my desktop in the browser (the direct SWF and placed inside HTML using SWFObject) but as soon as I upload it to my server it fails and produces "FFFFFF" continuously regardless.

this.onEnterFrame = function()[code]..........

There is no difference in the files; they are both pulling from the same video source (hosted on an Flash FLV server).The only difference is one set of files is hosted on my local computer and the other is hosted on my web server.

View 2 Replies

ActionScript 2.0 :: Right Button Code Works Perfectly, But When I Press Left It Doesnt Rotate?

Sep 24, 2008

I have a movieclip that will rotate by 10 right if the right button is pressed, or 10 left if the left button is pressed.Now, some genius tell me why the right button code works perfectly, but when i press left it doesnt rotate. It moves left, but no rotation to be found .heres the code

onClipEvent (enterFrame) {

if (Key.isDown(Key.LEFT)) {
xspeed -= power;[code].....

View 3 Replies

Data Integration :: GetURL Without Browser Opening?

Jun 3, 2006

I'm using getURL to send a string to a 4D webserver for tracking purposes. I'm using "_self" for the window and not using GET or Post and the string is the full http address including the path pointing to the 4d app with the variable appended to the string in XML format...the send works and is recorded by the 4d server..but a browser window opens which is don't want (it's unneeded and interrupts the flash)..is there a way to send with getURL without invoking a browser?

View 1 Replies

Data Integration :: HTML File Is Auto-opened In The Browser ?

Jun 22, 2006

Using LoadVars.send() I insert info into a mysql database.I then click a button and the updated db content is shown in a textfield. Problem is that a HTML file is auto-opened in the browser.

When using LoadVars.sendAndLoad() I can still insert info into the database, but I can NOT update the info in the textfield. For some reason the "old" db content is loaded again.Flash and PHP files are in same folder on server.

View 2 Replies

Data Integration :: Flash Video Inside Blog Entry?

Aug 23, 2006

I create a video in Flash using import->video. I select my .flv file and a skin.The .flv is on my hard drive. The component parameters reflects this location.I want to upload the video to my web server to display on my MovableType blog.

If I change the properties in Flash to reflect the server location Flash says "could not upload video." So I kept the component property to reflect the location on my C drive.I import that Flash media into dreamweaver to get the HTML code for my site.It works fine when I preview in Dreamweaver.I thought I could then change the code to reflect the new location of the file.I have done this using an online embedding program, but then I have no skin or ability for user to control playback.So I can get the video to the web with an online embedder,but the code generated by Dreamweaver does not work. The frame for the video appears, but there is no content.

View 1 Replies

Data Integration :: Install Flash Player Plugin (version 8) In Browser Without Downloading Setup?

May 8, 2006

How can I install flash player plugin (version 8) in browser without downloading setup or redirecting to macromedia site if flash plugin is not available in browser.

View 1 Replies

ActionScript 2.0 :: SendAndLoad Works Locally But Not On Site

Apr 2, 2007

sendAndLoad works locally but not on site My sendAndLoad PHP Code:

[Code]...

View 1 Replies

Load The .swf, And Click "Play Trailer" Locally It Works Perfectly?

May 30, 2009

I have a problem with a FlvPlayBack movie. So when I load the .swf, and click "Play Trailer" locally it works perfectly. But when I load the .html page, and click "Play trailer" the player doesn't show up and it won't play the video.
 
Link to .html page What files exactly need to be on my server in order for the video to play? Have I called the video wrong? (the .flv file is on my server)

View 3 Replies

Actionscript :: Post Request From A Flash File Stops Working After Published

Feb 14, 2011

I have a problem with the following code:[code]The problem is that the code is working when I test the scene (ctr+alt+enter in flash), but after I publish it it doesn't work... not sending any request nor redirect.What I want to do is to log in a file on the server what the users typed (related with Related with: Flash actionscript - save a text file on server).

View 1 Replies

ActionScript 2.0 :: SendAndLoad Still Opening New Browser Window?

Mar 31, 2009

I am trying to modify this tutorial on exporting the flash movie to a jpg. On the completion of the flash file, using AS2, there is this method:

Code:

// copy is complete, send the result LoadVars to PHP
listener.onComplete = function(target:MovieClip, load_var:LoadVars){
loader.label = "sending to php..."

[code]....

so i mean...I am using sendAndLoad as appropriately right? then why does my flash movie STILL open a new window (pixels.php) after the script gets to this point? I am also open to new methods of redirecting, assume i cant stop pixels.php from opening, how do I close the current window, so at least only 1 window will be open to the user?

View 1 Replies

ActionScript 2.0 :: SendAndLoad Still Opening New Browser Window

Apr 16, 2010

I am trying to modify this tutorial on exporting the flash movie to a jpg. On the completion of the flash file, using AS2, there is this method:

Code:
// copy is complete, send the result LoadVars to PHP
listener.onComplete = function(target:MovieClip, load_var:LoadVars){
loader.label = "sending to php..."

[Code].....

so i mean...I am using sendAndLoad as appropriately right? then why does my flash movie STILL open a new window (pixels.php) after the script gets to this point?

I am also open to new methods of redirecting, assume i cant stop pixels.php from opening, how do I close the current window, so at least only 1 window will be open to the user?

View 1 Replies

ActionScript 3.0 :: Button Works At First And Then Stops?

Mar 19, 2009

I'm attempting to make a website, using flash with AS3. All of it's going pretty great, I'm somewhat tech savvy with the 3D rendering so alot of the concepts in flash are easy to pick up.

others.. not so much.Okay I don't know the proper setup in flash but I have one layer that has my background. one layer for my buttons. and another for my action script.

In my buttons layer I have a link to a pictures gallery, graphic design, a contact page and then back home button . The problem is, when I click the "contact" button, then click the home button, I can't click the contact button again. It won't work.

Frame 1:

Code:
contact.addEventListener(
MouseEvent.MOUSE_UP,
function(evt:MouseEvent):void {

[Code]......

View 3 Replies

ActionScript 3.0 :: Debug Stops Works?

Nov 24, 2008

I use Flash debug local and remote without any problem.Today I update Flex and I deselected the options "update flash 9".Then I go to debug a project in Flash CS4.But now debug doesn't works.I reinstall flashplayer_10_ax_debug.exe and nothing change.When I run in browser the menu option "Debugger"(right-click) doesn't appears.

View 1 Replies

ActionScript 1/2 :: After Flashplayer Update SendAndLoad Doesn't Work In Browser?

Oct 7, 2010

I have an email form that sends some variables and receives a true/false from the server. It works perfect if I use a computer that doesn't have the lates flashplayer OR if I just test from inside flash.[code]...............

View 3 Replies

Flash :: Data Integration - Huluesque Video Integration

Jan 1, 2010

I have a video player that is currently using XML for its video library which is all fine and dandy. Now I have some developers working on a CMS type page in PHP that is going to hopefully pass some sort of information to my player that will let it know where the video is stored on our server. Is there a way to do this without using FMS? If so does anyone have ideas where I can find the information for it.

View 2 Replies

ActionScript 2.0 :: CS3 XML SendAndLoad - Using PHP To Read Sent XML Data

May 29, 2009

I'm using sendAndLoad to send data from a Flash form to a PHP script. The PHP script will search an SQL database and return the results, in XML, to Flash for parsing. The problem is I'm completely stuck on how to extract the sent Flash information with PHP. It's a single tag with attributes.

View 1 Replies

ActionScript 2.0 :: Send The Data Using SendAndLoad Method To Asp File And Get Data Back From Asp File

Feb 13, 2008

I am the fan of kirupa but this is my first thread in forum. I have some problem with sendAndLoad method with actionscript 2.0. I am developing a online game with flash mx , MS SQL 2000 and asp. The problem is I send the data using sendAndLoad method to asp file and get data back from asp file. But when the internet connection is not good there is a problem like jam or lost packets. How can I prevent the lost of packets. Some of the data are important. Is there any way to solve this?

View 1 Replies

ActionScript 2.0 :: SendAndLoad - SWF Freezes Until All Data Loaded

Sep 15, 2004

I'm attaching an MC to the timeline and within that attached MC is a LoadVars.sendAndLoad command. This works flawlessly when I have a few variables but becomes horribly bogged down when I have to send (and receive) lots of data. It actually freezes my swf until all the data is loaded, then switches windows <minimizes itself in Win XP> after it's all done loading. I need a way for the original attach movie to finish loading, before I send the PHP commands...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved