Load php url in a movieClip

Hello all,
I m using following code to display a php url content in a
movieclip:-
this.createEmptyMovieClip("clp",this.getNextHighestDepth());
var listener:Object = new Object();
imgLoader = new MovieClipLoader();
imgLoader.addListener();
imgLoader.onLoadStart = function(tragetClp:MovieClip)
trace("inside onLoadStart event")
imgLoader2.onLoadInit = function(tragetClp:MovieClip)
trace("inside onLoadInit event.")
imgLoader2.loadClip("
http://www.domainName.com/filename.php",clp);
as i run this code it shows both the trace inside onLoadStart
and onLoadInit events but display noting in the movie clip.
please help me on this issue.
thanks in advance

use the loadVars() class to execute a php file. (or you could
use loadVariables() or loadVariablesNum(), but loadVars() is easier
to use.)

Similar Messages

  • Problem in Loading a File on the MovieClip..

    I want to load an image on the MovieClip at run time..
    This should be done using file reference Class instance..
    By this user can brwose the file load whatever he wants..
    I had tried this but when user select the file in code we
    just have name of the file not whole path..
    So to load an image on movieClip we require the whole path..
    Any one knows how I can achive this...??
    Thanks...

    You have to upload it with FileReference.upload() to a PHP
    (or other server-side) script which saves it to a folder on the
    server. When the DataEvent.UPLOAD_COMPLETE_DATA event has been
    dispatched you can then use the FileReference.name to load from the
    file on the server just like any other image.

  • Problem loading external urls [please..]

    hello guys,
    i am usin this code to run some file and make queries:
    ActionScript Code:
    var req:URLRequest = new URLRequest("http://site.com/z.php?id=" + user_id + "&mana=" + (Round - 1));
    var loader:URLLoader = new URLLoader();
    loader.load(req);
    when i am running the swf file fas ctrl + enter in the flash cs5  it works great!
    but, when i uploading this to my server its not working, or even when i run it from desktop still not working
    (not loading the url so my DB not updating)
    i dont understand why,
    please waiting for your help.

    round is just simple number,
    i am noobie at AS so id did simple game,
    when the user looses his score sends to my server,
    in flash when i am testing it usin ctrl + enter it works great,
    but if i run the swf file from the desktop or web so the game works but its not sending the score..
    here is the full code (little mess):
    stage.addEventListener(KeyboardEvent.KEY_DOWN, boatMove);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, boatMove); 
    playAgain.addEventListener(MouseEvent.CLICK, playmeAgain); 
    var theScore:int = 0; 
    var Round:uint = 1; 
    score_txt.text = String(Round - 1); 
    loseScreen.visible = false; 
    theFinalScore.visible = false; 
    playAgain.visible = false; 
    copyrights.visible = false; 
    var user_id:uint = 0; 
    function loaderComplete(myEvent:Event)
        this.myParams=this.loaderInfo.parameters;
        this.myParamsLoaded=true;
        this.useParams();
    function useParams()
        userid_txt.text=String(this.myParams.userid);
        user_id = Number(this.myParams.userid);
    var myLoaderInfo=new Object();
    myLoaderInfo.myParamsLoaded=false;
    myLoaderInfo.loaderComplete=loaderComplete;
    myLoaderInfo.useParams=useParams; 
    this.loaderInfo.addEventListener(Event.COMPLETE, myLoaderInfo.loaderComplete);
    function playmeAgain(event:MouseEvent):void
    loseScreen.visible = false;
    theFinalScore.visible = false;
    playAgain.visible = false;
    copyrights.visible = false;
    Round = 1;
    theScore = 0;
    addEventListener(Event.ENTER_FRAME, trowEnemy);
            enemy.x = rand(0,stage.stageWidth - enemy.width);
            enemy.y = 0;
    function boatMove(event:KeyboardEvent):void
        if(event.keyCode == Keyboard.RIGHT){
                        boat.x += 10;
                        if(boat.x > stage.stageWidth - boat.width)
                            boat.x = stage.stageWidth - boat.width;
        if(event.keyCode == Keyboard.LEFT){
                        boat.x -= 10;
                        if(boat.x < 0)
                            boat.x = 0;
    addEventListener(Event.ENTER_FRAME, trowEnemy); 
    function trowEnemy(event:Event):void
    enemy.y += Round + 10;; 
        if(boat.hitTestObject(enemy)){
        // IF THE GAME ENDED
        loseScreen.visible = true;
        theFinalScore.text = String(Round - 1);
        theFinalScore.visible = true;
        playAgain.visible = true;
        copyrights.visible = true;
        removeEventListener(Event.ENTER_FRAME, trowEnemy);
        user_id = 71811;
    var req:URLRequest = new URLRequest("z.php?id=" + user_id + "&mana=" + (Round - 1));
    //var req:URLRequest = new URLRequest("http://izra.co.il/z.php");
    var loader:URLLoader = new URLLoader();
    loader.load(req);
        else
            if(enemy.y > stage.stageHeight){
            theScore += 1;
            enemy.x = rand(0,stage.stageWidth - enemy.width);
            enemy.y = 0;
            Round++;
    score_txt.text = String(Round - 1);
    theFinalScore.text = String(Round - 1);
    // RANDOM NUMBERS 
    function rand(min:uint, max:uint):uint
        var randomNumber:uint = Math.round(Math.random() * (max - min) + min);
        return randomNumber;

  • Loading a game inside a movieclip (AS2)

    Hello.
    I have a problem loading a game inside a movieclip (i´m using AS2)
    I have a main timeline with 6 buttons, and each button calls for an external SWF, wich loads inside an empty movie clip.
    Everything works ok, but when the game loads inside the movieclip, it won´t respond.
    The game SWF loads ok inside the movieclip, but it doesn´t respond to commands.
    If i execute the game.swf, it plays ok....but when loaded into the movieclip, it shows but you can´t play because the commands or buttons won´t respond.
    Is there a way to load this kind of swf inside a movieclip and make it work?.
    What i´m doing is:
    The button has this action:
    on (press) {
    loadMovie("game6.swf", "cargador");
    "Cargador" is the name i gave to the empy movieclip.
    I´ll appreciate any help i can get. Thanx a lot for your time.

    Hi Ned. Thanx for your reply.
    All the files are in the same folder, and all games are just 1 swf file (no php, xml, external .as or subfolders).
    About the other recomendation of using _lockroot... where should i place it? i have 3 frames (1, 2 and 3) with a stop action, and in another layer on frame 2, all the actionscript.
    If i place the code on the frame with all the actionscript, this should be at the beginning of the code, or can i place it at any line? Or is it easier to place it in one of the other frames where i placed the stop action?
    Thanx again for your reply.

  • FireFox images not loading in local folders (firebug error-Failed to load given URL)

    I am having difficulty when developing websites in local folders (Windows7 computer). The webpages I make are showing images in IE9 & Chrome but not FireFox (nor Safari nor Opera).
    In FireFox I get Firebug "Failed to load given URL" prompt.
    I am using html5 & external linked css stylesheet & the html/html5 & css code validates.
    I have tried using rel path ie images/image.gif & absolute path references ie C:/RPD_Programming/RPD WEB/amwcsnew/index.html
    and have tried using % to eliminate whitespace in references but I cannot get FireFox to display images!!
    This has been a problem for me for around 2 weeks now & is very frustrating. Some website code/templates I have downloaded from the internet display the websites properly (ie load images fine) when I open them locally in FireFox. Why does my code not allow the images to load in FireFox (paths/permissions/other issue??). How can I fix this?
    Here is example css & html5 not displaying images from local directory in FireFox (fine in IE9 & Chrome):
    style.css
    /* CSS Document */
    /*Basic Reset*/
    margin:0;
    padding:0;
    html{
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    display: block;
    body{
    width:1200px;
    margin:0 auto;
    header{
    height:450px;
    background:url("C:/RPD_Programming/RPD WEB/amwcsnew/images/header.gif");
    background-repeat:no-repeat;
    #mid{height:750px;
    background:url('C:/RPD_Programming/RPD_WEB/amwcsnew/images/mid.gif')no-repeat;
    footer{height:286px;
    background:url('C:/RPD_Programming/RPD WEB/amwcsnew/images/footer.gif')no-repeat;
    index.html
    <!doctype html><!-- simplified doctype works for all previous versions of HTML as well -->
    <!--html5 template from www.impressivewebs.com_modified by RPD-->
    <!-- Paul Irish's technique for targeting IE, modified to only target IE6, applied to the html element instead of body -->
    <!--[if lt IE 7 ]><html lang="en" class="no-js ie6"><![endif]-->
    <!--[if (gt IE 6)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
    <head>
    <!-- simplified character encoding -->
    <meta charset="utf-8">
    <title>amwcs-new</title>
    <meta name="description" content="amwcs">
    <meta name="author" content="rpd">
    <!-- Delete these two icon references once you've placed them in the root directory with these file names -->
    <!-- favicon 16x16 -->
    <link rel="shortcut icon" href="/favicon.ico">
    <!-- apple touch icon 57x57 -->
    <link rel="apple-touch-icon" href="/apple-touch-icon.png">
    <!-- Main style sheet. Change version number in query string to force styles refresh -->
    <!-- Link element no longer needs type attribute -->
    <!-- <link rel="stylesheet" type="text/css" media="all" href="css/style.css" />-->
    <link rel="stylesheet" href="css/style.css?v=2">
    <!-- Modernizr for feature detection of CSS3 and HTML5; must be placed in the "head" -->
    <!-- Script tag no longer needs type attribute -->
    <script src="js/modernizr-1.6.min.js"></script>
    <!-- Remove the script reference below if you're using Modernizr -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    </head>
    <!-- If possible, use the body as the container -->
    <!-- The "home" class is an example of a dynamic class created on the server for page-specific targeting
    <body class="home">-->
    <body>
    <!-- ******************************************************************** -->
    <!-- The content below is for demonstration of some common HTML5 elements -->
    <!-- More than likely you'll rip out everything except header/section/footer and start fresh -->
    <!-- First header has an ID so you can give it individual styles, and target stuff inside it
    <header id="hd1"> No way Hosay-not by default! Default is <header> tag (RPD edit) -->
    <header>
    <!-- "hgroup" is used to make two headings into one, to prevent a new document node from forming -->
    <hgroup>
    <h1>amwcs</h1>
    <h2>tagline</h2>
    </hgroup>
    <!-- Main nav, styled by targeting "#hd1 nav"; you can have more than one nav element per page -->
    <nav>
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Contact</a></li>
    </ul>
    </nav>
    </header><!--End header & or #hd1 header div id if used-->
    <!-- This is the main "div" that wraps the content generically; don't use "section" for this -->
    <div id="mid">
    <!-- The first of two "section" elements for demo purposes; optional class added for styling (hs1 = "home section 1") -->
    <section class="hs1">
    <!-- Each section should begin with a new h1 (not h2), and optionally a header -->
    <!-- You can have more than one header/footer pair on a page
    <header>
    <h1>This is a Page Sub Title</h1>
    </header> -->
    <p>Some content...</p>
    <!-- The h2 below is a sub heading relative to the h1 in this section, not for the whole document -->
    <h2>Demonstrating EM and STRONG</h2>
    <!-- "strong" is used for SEO and contextual hierarchy -->
    <p><strong>This text will have more importance (SEO-wise and contextually)</strong></p>
    <!-- "b" is used for stylistic offset of text that's NOT important contextually -->
    <p><b>This text has visual importance but has no contextual or SEO importance</b></p>
    <!-- "em" is used for colloquial-style emphasis -->
    <p>This is a <em>very</em> colloquial expression.</p>
    <!-- There can be multiple footers on each page -->
    <!-- Secondary headers and footers don't necesarily need ids; they can be targeted via context (i.e. ".hs1 footer")
    <footer>
    <!-- incite a riot: http://24ways.org/2009/incite-a-riot
    <p>Author: <cite>Louis Lazaris</cite></p>
    </footer> -->
    </section><!-- .hs1 -->
    <!-- This is another section; doesn't have header/footer because it's not required -->
    <section class="hs2">
    <h1>This is another section</h1>
    <p>This is some dummy content</p>
    </section><!-- .hs2 -->
    </div><!-- #mid -->
    <!-- The "aside" element could be a sidebar (outside an article or section) -->
    <!-- Or it could reference other tangentially-related content within an article or section
    <aside id="sidebar">
    <p>Sidebar content</p>
    </aside>-->
    <!-- The main footer has an ID for targeting, similar to the main header -->
    <footer >
    <p>copyright &copy; year</p>
    </footer>
    <!-- Remote jQuery with local fallback; taken from HTML5 Boilerplate http://html5boilerplate.com -->
    <!-- jQuery version might not be the latest; check jquery.com -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
    <script>!window.jQuery && document.write(unescape('%3Cscript src="js/jquery-1.4.4.min.js"%3E%3C/script%3E'))</script>
    <!-- Below is your script file, which has a basic JavaScript design pattern that you can optionally use -->
    <!-- Keep this and plugin scripts at the bottom for faster page load; combining and minifying scripts is recommended -->
    <script src="js/general.js"></script>
    <!-- asynchronous analytics code by Mathias Bynens; change UA-XXXXX-X to your own code; http://mathiasbynens.be/notes/async-analytics-snippet -->
    <!-- this can also be placed in the <head> if you want page views to be tracked quicker -->
    <script>
    var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
    (function(d, t) {
    var g = d.createElement(t),
    s = d.getElementsByTagName(t)[0];
    g.async = true;
    g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    s.parentNode.insertBefore(g, s);
    })(document, 'script');
    </script>
    </body>
    </html>
    I am most grateful for help & look forward to replies & fixing this-thanks
    NB
    Is there a FireFox guide/manual in pdf format available anywhere? I have not found one yet & a FireFox reference might be useful!

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • Site not found using Sharepoint Designer 2013, Load balance URL and the Front end servers.

    Dears,
    My SharePoint farm is with the below configuration in our office :
    Batch processing server the with Central Administration
    Web Front End Sever 1 (http://wfe01)
    Web Front End Sever 2 (http://wfe02)
    I do have the load balance URL as http://finance.mycompany.com and as per the system administrator it seems configured properly.
    In AAM i have mapped the URLs as below for the web application in Central Administration portal:
    http://finance.mycompany.com - Default Zone
    http://wfe01 - Intranet Zone
    http://wfe02 - Internet Zone
    I was able to browse the site via the load balance URL : http://finance.mycompany.com, but couldn't open the site using the Share Point Designer 2013. It always says the site not found.
    please advise,
    thanks,
    Ammar

    What do the wfe01 and wfe02 aams do?
    Are you browsing to the SharePoint site and using SPD on the same computer, is it part of the farm or a seperate client computer?
    thanks Alex a lot for your response and appreciate the same.
    WFE01, WFE01 is connected to the one central admin on Batch Processing Server (central admin URL is http://SharepointCA:5555 and the SharePoint Web Application is hosted under port 80 on the same server). So the AAM configured on the batch processing server
    central admin.
    I can connect to the site using the SPD inside the Batch Processing server if i mention the site urs as http://localhost. But not from other client computers by putting the load balance URL - http://finance.mycompany.com.
    I can browse the sites directly putting http://wfe01, http://wfe02 and as well as the load balance URL (http://finance.mycompany.com). The custom webparts are getting crashed when i put the web application URL as http://finance.mycompany.com.
    thanks,
    Ammar

  • Could not load file/URL (file not found) error for JNLP file

    I am completely baffled in trying to figure out why I am getting the following error for some JNLP files but not others:
    Error: could not load file/URL specified: C:\Users\tom\AppData\Local\Temp\javaws2
    java.io.FileNotFoundException: C:\Users\tom\AppData\Local\Temp\javaws2 (The system cannot find the file specified)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(Unknown Source)
    at java.io.FileInputStream.<init>(Unknown Source)
    at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
    at com.sun.javaws.Main.launchApp(Unknown Source)
    at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
    at com.sun.javaws.Main$1.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)I have Googled around this forum and elsewhere, and have seen reports that this error is IE-specific, and seems to have something to do with no-cache headers being sent, or with the client browser's cache being full or turned off (which is not my case). I saw the information in the JavaWS FAQ, which recommended turning off security constraints for the JNLP's URI. I tried that, and it didn't help. One of the very baffling things is that I have created several variations of the JNLP file, with varying combinations of jars and property resources, and some combinations always work while other combinations never work. Here's an example:
    <jnlp spec="1.0+" codebase="$$codebase">
       <information>
          <title>demo app</title>
          <description>illustrates weird bug</description>
       </information>
       <resources>
          <j2se version="1.5+"/>
          <jar href="randomFile.jar"/>
          <property name="xxx" value="xxxx"/>
          <property name="swing.metalTheme" value="steel"/>
       </resources>
    </jnlp>The above file always fails with the error shown at the top of this message. However, if I remove either of the two properties, it works fine. And I have created other variations with lots of properties, some of which work. All of these variations are in the same directory in the war file, served by the exact same servlet (a slightly modified version of the jnlp.sample.servlet.JnlpDownloadServlet provided with JDK 1.6.0_3). Assuming that a no-cache header is the problem, what on earth could be causing some JNLP files to always be served with a no-cache header, while others are never served with a no-cache header?
    On a related note, any recommended debugging techniques for seeing what headers are being transmitted? I tried adding a simple check for a "debug=true" parameter in the servlet that causes it to set the content type to "text/plain" instead of JNLP, and that allows me to see (rather than execute) the JNLP XML that's being returned, but it doesn't show me the HTTP headers that are being sent back. If any caching headers are being set, I think it must be being set by the servlet container itself, as it's nothing being set in the servlet code that I can see. So I don't see any way on the server side Java code to output or log the actual HTTP response (or is there?). Any tips in that regard much appreciated.
    Edited by: TomC125468 on Aug 19, 2009 1:35 PM

    Hi Luca-Sanna,
    Thanks for the response. Re browsers, yes, it fails in IE but it succeeds in Firefox. The info on the JavaWS FAQ and other places all seem to indicate that it's an IE issue concerning handling of the cache-control headers.
    I should check in my webserver forum (Sun WebServer 7) to see about logging options. Sniffing on the client side is not possible, as my app is required to use HTTPS exclusively, and unfortunately that also precludes a telnet GET request.

  • Is it possible to load a URL on stage?

    Hi,
    I'm using Flash CC-Action Script 3, is it possible to load a URL onto the stage?

    Thanks. I think our IT department will handle it since they do html/java/and
    all that stuff except for action script/flash. I am a little desperate
    though. I need to have this at least display a working clock for know and
    the phone list, which will display fine once I get to it. Can you be so kind
    and look at my horrible action script and help me get the clock to work
    continuously and show minutes under 10 with a "0"?  I just need to have
    something to show for our Annual Management meeting.
    Thank you sincerely for your time.
    Code:
    import flash.events.MouseEvent;
    import flash.text.TextField;
    import flash.text.Font;
    import flash.text.TextFormat;
    import flash.display.Sprite;
    import flash.text.*;
    import flash.filters.BitmapFilter;
    import flash.filters.BitmapFilterQuality;
    import flash.filters.BlurFilter;
    import flash.display.Bitmap;
    import flash.display.Loader;
    import flash.net.URLRequest;
    var link:URLRequest = new URLRequest("http://simplegreen.com/");
    //ADD CONTAINERS
    var containerStage:Sprite = new Sprite();
    containerStage.tabChildren = false;
    stage.addChild (containerStage);
    //DATE TIMER
    var my_date:Date = new Date();
    var my_timer:Timer = new Timer(1000);//create a new timer that ticks every
    second
    my_timer.addEventListener(TimerEvent.TIMER, onTimer);
    my_timer.start();
    //MONTH AND DATE
    var months:Array = ["Jan", "Feb", "Mar", "Apr", "May", "June", "Jul", "Aug",
    "Sept", "Oct", "Nov", "Dec"];
    var days:Array = ["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri"];
    var todayIs = (days[my_date.day] + "," + " " + months[my_date.month]  +" " +
    my_date.date + " " + my_date.fullYear);
    trace(days[my_date.day] + "," + " " + months[my_date.month]  +" " +
    my_date.date + " " + my_date.fullYear);
    //Text Loader
    var textLoader:URLLoader = new URLLoader();
    textLoader.addEventListener(Event.COMPLETE, textLoaded);
    textLoader.load(new URLRequest("assets/phoneList.txt"));
    var ampm:String = new String();
    var zero:String = new String();
    if (my_date.hours<12) {ampm = "AM";
    else{
    ampm = "PM";
    while(my_date.hours > 12){my_date.hours = my_date.hours - 12;
    if(my_date.minutes < 10){zero = "0" + my_date.minutes;
    else{
    my_date.minutes;
    function onTimer(e:TimerEvent):void {
    //my_date = new Date();
    trace(my_date.hours + ":" + my_date.minutes);
    var myDateTextBox:TextField = new TextField;
    myDateTextBox = new TextField();
    // myDateTextBox = todayIs;
    var dateStyle:TextFormat = new TextFormat;
    dateStyle.color = 0xFFFFFF;
    dateStyle.size = 48;
    dateStyle.font = "myriadMm";
    dateStyle.align = "left";
    var myTimeTextBox:TextField = new TextField;
    myTimeTextBox = new TextField();
    myDateTextBox.text = String(days[my_date.day] + "," + " " +
    months[my_date.month]  +" " +  my_date.date + " " + my_date.fullYear);
    myDateTextBox.width = 600;
    myDateTextBox.x = 70;
    myDateTextBox.y = 70;
    myDateTextBox.setTextFormat(dateStyle);
    //Add it to the stage;
    containerStage.addChild(myDateTextBox);
    myTimeTextBox.text = String(my_date.hours + ":" + my_date.minutes + " " +
    ampm);
    myTimeTextBox.width = 600;
    myTimeTextBox.x = 70;
    myTimeTextBox.y = 117;
    myTimeTextBox.setTextFormat(dateStyle);
    //Add it to the stage;
    containerStage.addChild(myTimeTextBox);
    //Event Listeners
    phone.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame);
    function fl_ClickToGoToAndPlayFromFrame(event:MouseEvent):void
    trace("directory ready");
    simpleGreen.addEventListener(MouseEvent.CLICK,
    fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
    navigateToURL(link, "_self");
    videoDirectory.addEventListener(MouseEvent.CLICK,
    fl_ClickToGoToAndPlayFromFrame_3);
    function fl_ClickToGoToAndPlayFromFrame_3(event:MouseEvent):void
    trace("Video Player is Ready");
    function textLoaded(evt:Event):void
    info_txt.htmlText = textLoader.data;
    With warmest regards,
    Mary Crotteau
    Graphic Design Specialist
    Sunshine Makers, Inc./Simple Green

  • Hi! I need to load a GET url that si very long. On other browsers, I can load the url. In firefox 3.6, no. There is an addons or a plugin so I can extend this limit? If yes, is possible to load automatically this addons when loading a certain page? thanks

    Hi!
    I need to load a GET url that si very long. On other browsers, I can load the url. In firefox 3.6, no.
    There is an addons or a plugin so I can extend this limit? If yes, is possible to load automatically this addons when loading a certain page? thanks
    The url is sometingh like this (this is correctly loaded, but it could be longer)

    Firefox should have problems with long GET data appended to an URL (long would be over 64k).<br />
    If there are problems then it is possible that an extension is the cause of that.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Load youtube video in a movieclip

    hello all,
    i m trying to load youtube videos in my flash8 application.i
    m using this code:--
    System.security.allowDomain("
    http://www.youtube.com")
    System.security.loadPolicyFile("
    http://www.youtube.com/crossdomain.xml")
    this.createEmptyMovieClip("image_mc",
    this.getNextHighestDepth())
    var mclListener:Object = new Object();
    mclListener.onLoadInit = function(target_mc:MovieClip) {
    target_mc._x = 0;
    target_mc._y = 0;
    var image_mcl:MovieClipLoader = new MovieClipLoader();
    image_mcl.addListener(mclListener);
    image_mcl.loadClip("
    http://www.youtube.com/v/818hQQmxHaM&rel=1",
    image_mc)
    This code is working fine but as i try to load other youtube
    video on same movieclip on a button click event it loads nothing.
    //code written on click event of button:--
    on(click)
    _root.image_mcl.loadClip("
    http://www.youtube.com/v/5-43Xu6wrK0&rel=1",
    _root.image_mc)
    please help me on this issue.
    thanks in advance

    thanks for your reply.I have updated my code as u told me but
    my problem is still same as before.
    First time youtube video loaded properly but if i try to load
    another video on same movieclip,it display flv player with its
    control bar, but no flv file loaded on it.
    please help me again
    thanks in advance

  • Safari 2.0.3 does not load the URL's I type

    Hello,
    can anyone help me? I have installed OS 10.4 with that came safari 2.0.3? OK!
    but now I cant load any URL that I type in my browser? It does work when I choose a bookmark. But thats all.
    Is this a common problem. Or has it something to see with the firewall at my job?
    help please...

    hello
    i am finding the same thing with safari.
    I click on a link on my own website and it says 'page not found on this server'. However I know the page is there because it is my own site! Also the site loads ok in Firefox.
    I get the same problem with images on some sites, they don't load however much I click refresh.
    I also get problems with this very site on Apple, I have to click a link several times before the browser loads it, otherwise it just sits there and hangs.
    When I first got Safari 2 I moved over from Firefox because Safari was faster. I don't know what Apple have done but they have thrashed a great product. I have now moved back to Firefox, using version 1.5 which is much better than the latest Safari.
    I am ashamed of Apple.

  • Loading xml url throws error

    Hello,
    I'm trying to create iphone app.
    When I try to load xml url from desktop emulator it works like a charm.
    But when I debug on the iphone device it throws error.
    Error #2032
    I have setup a crossdomain.xml file but that doesn't fix the issue.
    I have no idea what to do from now?
    I'm using the latest flash builder 4.5.1 and air 2.7 sdk i think.
    Hope someone knows what to do
    Thanks.

    Sorry everyone.
    I pointed to the wrong url.
    I was pointing to my local ip and not external url
    Thanks again for trying to help me.

  • IE launch failure: "Could not load file/URL specified"

    My user is receiving this failure :
    "An error occurred while launching/running the application.
    Category: Invalid Argument error
    Could not load file/URL specified: C:\Documents and Settings\XXX\Local Settings\Temporary Internet
    Files\Content.IE5\GDMVCXEB\StocksMonitor[1].jnlp"
    System Configuration:
    Browser: IE6
    JDK: 1.4.1_02
    OS: Windows2000 Pro SP3
    The launch point is :
    http://www.javapractices.com/apps/stocksmonitor/StocksMonitor.jnlp
    How is this problem rectified?

    Hello,
    same problem here with win xp/sp2.
    Cleaning the cash did not solve my problem.
    I made another acount under windows and installed java and all works good under that account but cant make it work under old acc. work
    Did you got some solution ?
    txs

  • Browser links return "Could not load file/URL specified:"

    The JWS application manager works great, but the links in my browser return an error saying "Could not load file/URL specified:" followed by the path to my temporary internet files. Why does JWS, through my browser, always look to my temporary internet files? I go to the demo page at http://java.sun.com/products/javawebstart/demos.html and any link there returns the same error. The JWS app manager will download and run the demo's just fine, which makes me think there is something wrong with my browser. I am running the following:
    JWS 1.2
    JRE 1.4.1
    IE 5.50
    Any help at all would be greatly appreciated.

    often your browser cache may get corrupted for certain sites/pages... your best bet is to clear your cache and try again... you could also change the settings for how long to keep your cache before re-loading as fresh... :-) it's a shame that this happens, but other than what i have suggested, i don't know any other work-arounds...

  • Error while loading Composite URL in SOAPUI by third party

    Hi All,
    I have developed one composite URL and third party wants to push the data to this URL.On order to do that ,they are trying to include our composite URL in their system.
    But they are not able to do that.
    First of all our composite URL starts with "http://Ipaddress:port/sampleapp --------?WSDL'.
    When they are trying to load this URL in SOAP UI ,they are getting error like below:
    'An error occured while attempting to find services at 'https://ipaddress:port/sampleapp-----?WSDL'
    In order to third party wants to access or use our composite URL what and all I have to do?
    Third party told that they elabled their firewall for our ipaddress of composite URL.
    Can you people help me out to come out of this situaltion?
    How can I make my composite URL to convert into https url?

    Hi, the actual endpoint doesn't have a "?WSDL" at the end. The find the actual real endpoint location (and perhaps correct wsdl as well), log into enterprise manager (typically http://ipaddress:7001/em), then browse SOA >> soa-infra >> your_partition, right click on your composite and choose the endpoint in the "test service" option. On the test page you will see the "Endpoint URL" text box - you can copy it from there and give that to them as the actual endpoint. The real correct wsdl is also in the "WSDL" text box at the top, it also contains the actual endpoint for the service.
    For exposing an https composite service there is already a forum discussion on this topic here: Re: How to make secure(https) SOA composite over network?

Maybe you are looking for