ActionScript 2.0 :: Loading A Swf Remotely Kills GetURL

Nov 13, 2009

I've discovered something odd. When I load an swf from another server into an object/embed, it seems to kill the getURL function in Firefox and Safari, but not in IE.

View 1 Replies


Similar Posts:


Actionscript 3 :: Flash - Error #1014 : When Loading Remotely But Not Locally?

Apr 2, 2012

Starting with a blank project, when I load a SWF which has a dependence on ISomeInterface defined in a swc which is compiled into my blank project

var lc:LoaderContext = new LoaderContext( true, ApplicationDomain.currentDomain );
var loader:Loader = new Loader();
loader.load( new URLRequest( "Some.swf"), lc );

[code].....

View 2 Replies

Flash :: Silverlight - Loading A Flash Movieclip At Runtime And Remotely?

Apr 24, 2011

I can't see how to do this because silverlight is compiled. I don't want to load a video, I want to load a component/object that will be instantiated at runtime. Flash can easily do this as movieclip is also an component/object.

View 3 Replies

ActionScript 2.0 :: GetURL Loading A Page That Uses ASP

Jul 29, 2009

here we go... [URL] if you click on the "instant quote & order online " button, the website opens up fine in a new window, but when you click on an option in the new page - i.e. business cards - the website freezes!?

[Code]...

View 1 Replies

ActionScript 2.0 :: Loading A Swf Into A Swf GetURL Doesnt Work?

Feb 8, 2010

Ok so my swf on my homepage is calling in the main.swf which then has movieclips and coded like this on the Actions layer which I made

button1.onRelease = function (){
_root.button1.getURL("http://scholarscanada.com/wordpress/education/programs/reading-readiness/" "_parent");
}

Here is the site so you guys can see, I believe it has to be something with calling the main.swf into the movieclip because I've never encountered this issue before...If you click on the LEARN MORE for the first image it doesnt go to the page which I ask it for

View 1 Replies

ActionScript 3.0 :: RotationX Kills MOUSE_CLICK?

Dec 18, 2010

I'm encountering a weird phenomena. I have a multi nested display object structure. Some of the deeper display objects have MOUSE_CLICK events. But as soon as I set main display item container.rotationX = 5 then the mouse events don't work anymore.

View 10 Replies

ActionScript 3.0 :: SetChildIndex Kills Frame Animation

Oct 15, 2010

I've got a movie with some buttons in the middle of the screen. I've got a tween on the buttons to make them grow/shrink on rollOver/rollOut, when a button is clicked, I've got a frame animation that moves the buttons to the top of the screen and shrinks them. This all works fine.

When the buttons grow, they need to appear on top of all the other buttons. Since there's no more swapDepths, I'm using setChildIndex to move the rolled over button to the top. Now, when I click one of the buttons (after rolling over it), any of the buttons I've rolled over aren't affected by the frame animation.[code]...

View 7 Replies

Professional :: Changing A Graphic To A Movieclip Kills Swf?

Dec 14, 2010

I have a graphic sitting on my stage that I want to convert to a movieclip so I can change it's alpha with as3. If I change it from a graphic to a movieclip my swf stops working. I have a bunch of code which constructs a dynamic menu and it stops working when the graphic is changed to a movieclip. They aren't related in any way so why would this happen? As a graphic it doesn't have an intance name and nothing is happening to it. It's not animated or anything. It's just sitting on the stage.

View 1 Replies

ActionScript 2.0 :: Preloader Using LoadMovie Kills Framerate?

Mar 1, 2005

I am building an intro for a website. When I publish the swf with html and upload it straight to the server, i get a great framerate (~30 fps). However, when I plug the intro into my preloader, the framerate drops, and the flash player automatically sets the first part of the intro to low quality. I am using a preloader that uses a loadMovie command rather than the traditional preloader on frame 1, content on frame 2.[URL](if your machine is really fast, the one with a preloader might not kick it down to low quality, but it does on my athlon 2000 machine)

View 3 Replies

ActionScript 2.0 :: Preloader Using LoadMovie Kills Framerate

Mar 1, 2005

I am building an intro for a website. When I publish the swf with html and upload it straight to the server, i get a great framerate (~30 fps). However, when I plug the intro into my preloader, the framerate drops, and the flash player automatically sets the first part of the intro to low quality. I am using a preloader that uses a loadMovie command rather than the traditional preloader on frame 1, content on frame 2. Does anybody else know anything about the loadMovie command causing deplorable frame rates?url... (if your machine is really fast, the one with a preloader might not kick it down to low quality, but it does on my athlon 2000 machine)

View 3 Replies

Professional :: Flash 10.1 Update Kills My Cross-Domain?

Jun 16, 2010

The update to Flash 10.1 kills my cross-domain. Formerly, my file looked like this:

<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"><cross-domain-policy>[code]......

I updated to this based on what I read on this site:

<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM [code].....

We are using SAP Business Objects Xcelsius, which creates the .swf file that users are using to access our environment. So, I do not have any control over the code base itself.

View 2 Replies

Flash :: New Chrome Update Kills Wmode=transparent?

Dec 22, 2011

The newest version of chrome seems to have killed my transparent backgrounds on my SWF. On a website, I use flash to have a transparent video on top of the elements. However, the background is now black under the newest versions of Chrome.

[Code]...

View 2 Replies

ActionScript 2.0 :: Dynamic Positioning Kills Timeline Tween?

Jan 20, 2009

I'm working on a banner ad project where we're trying to send dynamic variables from one of our servers to position a movieclip that simply slides in from offstage and then does a little bounce. My AS2 frame script at the beginning of the tween sets the _x and _y properties of the clip successfully. But that seems to destroy all the movement of the tween. In other words, when I set those two positioning properties on the clip, it just sits there and no longer slides in or bounces. I've tried a lot of different values, but they all seem to kill the movement of the tween.

View 0 Replies

ActionScript 2.0 :: SetInterval/setTimout Kills Class Properties?

Jan 29, 2007

I have this issue where I have a function that when it gets called via a setInterval (or setTimeout as I have tried both), it somehow makes my class vars undefined. I have traced it right before I call the timer, right after and then inside the following function that gets called. See below:

Code:
private function onFrontTireSuccess (evt:Object):Void {
_allowTorqueChange = false;

[code].....

View 3 Replies

ActionScript 3.0 :: SetInterval/setTimout Kills Class Properties?

Jan 29, 2007

I have this issue where I have a function that when it gets called via a setInterval (or setTimeout as I have tried both), it somehow makes my class vars undefined. I have traced it right before I call the timer, right after and then inside the following function that gets called. See below:

Code:

private function onRearTireSuccess (evt:Object):Void {
allowRandomCars = true;
_scoreboardTimer.reset();

[Code].....

View 2 Replies

F4v Can't Play Remotely

Feb 16, 2011

I don't have a sking on my f4v file, it doesn't play in the server but it plays locally[code]....

View 1 Replies

Flex :: Unable To Invoke CFC Remotely

May 18, 2011

We recently updated to ColdFusion 9 (from 8) and Flex 4 (from 3).

Now receiving below error when attempting to load Flex portion[code]...

Do we need to re-export the Flex project to fix problem or maybe code from /flex/remoting-config.xml needs to be updated?

View 1 Replies

ActionScript 3.0 :: UILoader Not Working Remotely?

Nov 30, 2009

I have a UIlLoader component that loads external images okay locally, but when i tested it remotely it doesn't work. Below is the code i used. I have a movieclip called content that holds my UILoader component and beside the loader is five buttons that when clicked....loads in my images.

Code:

// Listeners...
content.maryPic_mc.addEventListener(MouseEvent.CLICK, loadPic);
content.lemonPic_mc.addEventListener(MouseEvent.CLICK, loadPic);
content.orangePic_mc.addEventListener(MouseEvent.CLICK, loadPic);

[code]....

why this only works locally? I have doubled checked the directories and for the life of me, i can't work it out!

View 3 Replies

ActionScript 2.0 :: Discrepancies Locally And Remotely?

Jun 11, 2010

I have a couple of methodology questions concerning an .fla file I'm working on. I made a flash gallery here. As you can see online the images fade in as they are loaded dynamically via the loadClip() method.

I would prefer them to load more like this. Is it possible to load an image to a variable instead of a MovieClip that exists on stage via actionscript?In other words, at the moment the script loads images as you go. I would prefer if I loaded all the images first and then ran the script to render, view, and navigate the images.

In addition to this if you download the zip file with the flash file, source code, and example you'll notice that the position of the images and the text is more accurate than when viewed in a browser. I thought flash was a self-contained entity and that it would run identically on all platforms / browsers / online / offline / remotely / locally.

I know a lot to ask in one post, but I think the script can benefit you as well as me if you just download it and take a look. I'd love to hear suggestions as to how to remedy the position of the images and text.

View 1 Replies

ActionScript 2.0 :: Move Zoom Slider Remotely

Jul 15, 2010

I have a zoom slider, code is in red. I have buttons on stage (site39_mc). The zoom slider can be moved manually, that works fine. I need for site39_mc to move slider to 100% scale, no matter where it is currently located. The zoom slider goes from 50% to 200%.Trying to use the code below I get an error._root.slide_mc.onClipEvent(load){ The error is asking for a field name after the "." I keep looking at it, and this is proper reference. URL...This is the site where I am trying to use this code. To see what I mean, click on a gold polygon on map. The map will snap to 100% and center on polygon. But the zoom slider stays at 75% til you manually move the slider.[code]

View 2 Replies

Professional :: Viewing Flash File Remotely

Jan 26, 2011

I create a movie on imovie. I take it to Flash(CS3) and publish it as an swf file I then install that file in Dreamweaver. All is good I save and preview it locally. the file's root folder is images and same remotely I upload all including the HTML page and when I view the page, the place where the file is is blank.
 
I have uploaded this many times and it just wont work.

View 8 Replies

Flash :: Get Filesize Of Remotely Hosted File?

Dec 6, 2009

I'm looking for an AS3 function to get the filesize of a file that is being hosted on a remote webserver. Tried to find some functions but didn't succeed.

View 3 Replies

Flex :: Remotely Control 100's PC From A Master Application?

Nov 13, 2010

For classroom, how do I actually able to remotely control 100's PC from a master application? Like control the student who also using Flex application is possble with XMLsocket?

View 3 Replies

ActionScript 2.0 :: Application To Edit XML Variables Remotely

Dec 3, 2009

I'm trying to make an application, should allow admins to edit XML variables remotely. So you don't need to upload the file every time you edit it! I though, modifying a guestbook file could work: Variable Editor, as you can see, it loads the variables into the board and you can also edit it, the first variable get edited but the 2nd one doesn't, strange

ActionScript Code:
var currPage = 0;
var showAmount = 10;
previous._visible = false;
createMessage._visible = false;
createButton.onRelease = function() {
[Code] .....

View 0 Replies

ActionScript 2.0 :: Control Zoom Slider, Remotely?

Jul 13, 2010

I have a zoom slider that works properly. Yahoo! Now I need to be able to control the slider from various buttons located on the stage. The zoom slider goes from 50% to 200%. When a button on the stage is clicked I need the slider to go to 100%. Here is some code...

Code:
stopAllMCs = function(){
map_mc.site39_mc.gotoAndStop(1);

[code].....

View 0 Replies

ActionScript 2.0 :: Move Zoom Slider Remotely?

Nov 19, 2009

I have a zoom slider, code is in red. I have buttons on stage (site39_mc). The zoom slider can be moved manually, that works fine. I need for site39_mc to move slider to 100% scale, no matter where it is currently located. The zoom slider goes from 50% to 200%.Trying to use the code below I get an error._root.slide_mc.onClipEvent(load){ The error is asking for a field name after the "." I keep looking at it, and this is proper reference. [URL]This is the site where I am trying to use this code. To see what I mean, click on a gold polygon on map. The map will snap to 100% and center on polygon. But the zoom slider stays at 75% til you manually move the slider.

Code:

stopAllMCs = function(){
map_mc.site39_mc.gotoAndStop(1);
map_mc.site40_mc.gotoAndStop(1);
};

[code]....

View 2 Replies

ActionScript 2.0 :: Can't Get This Email Form To Work Remotely?

Oct 11, 2005

My main movie loads "contact.swf" which has the email form in it that references "email.php".The form gives the completed message locally when running from the main movie but when I upload it nothing works.

View 5 Replies

ActionScript 3.0 :: Videos Are Not Loaded/played Remotely?

Jun 11, 2009

I'm using a flash video player plugin and everything works great locally, but when I upload everything on the server the videos are not played...

is it about flash player security restrictions ?

View 1 Replies

ActionScript 2.0 :: Remotely Control An Object (MX2004)?

Oct 30, 2009

i know this sounds stupid but just can't do it, how do you make another object appear on the press of another button or movie clip?

View 8 Replies

ActionScript 3.0 :: Save Data Remotely - String In A Txt File?

Aug 14, 2009

I've made a little game in Flash, and I want it to have an online leaderboard. But after looking into it, it seems it's complicated saving a simple .txt file because of security, and the tutorials I have tried to use, using PHP to do it, have not worked, not even the excercise files. So I was wondering if anyone have either a working tutorial or code to save a simple string in a txt file, or know another way of saving data remotely?

View 13 Replies







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