Javascript :: Way To Execute A Js Function With Local Content?

Mar 12, 2011

I'm trying to execute a function like window.alert for example, from actionscript, when both the html file and the swf file are using the file: protocol.without changing global flash security settings

View 3 Replies


Similar Posts:


Javascript :: Flex Execute A Function When A Certain Trigger Is Executed?

Oct 9, 2010

I am currently using ExternalInterface to call JS functions from Flex. Is it possible to do the same the other way around: have Flex execute a function when a certain trigger is executed in JS? I want to have a Flash app with buttons in HTML that when pressed call functions inside the Flex app.

View 1 Replies

Javascript :: To Execute Flex Cleanup Function When Browser Is Closed By User?

Oct 29, 2009

I have a Flex client application. I need a clean up function to run in Flex when the user closes the browser. I found the following solution on the net, but it only works half-way for me. How could I fix it?CustomEvent triggered, but not executed. >> EventHandler for CustomEvent.SEND_EVENTS is defined by a Mate EventMap. All the handler does is to call an HTTPServiceInvoker. In debug console, I'm able to see the handler and HTTPServiceInvoker being triggered, but neither the resultHandlers nor the faultHandlers were called. I know this event handler has no problem because when I dispatch the same CustomEvent.SEND_EVENTS in a button click handler, it behaves exactly as I expected)Browser seems to wait for cleanUp function to complete before it closes. (all traces were printed before browser closes down)

Code
I added the following into the index.template.html
window.onbeforeunload = clean_up;

[code].....

View 3 Replies

Flash :: Execute An External .exe From A Local .swf Using A Local XML Socket Server (C#)

Jan 7, 2012

I'm developing a game add-on/plugin which replaces a built in feature of an online game. The game loads an .swf therefore, my solution also has to be an swf for it to work 'in-game'.

I would like to be able to have the user press a button in the custom .swf I am making - and this would open an external application (amongst other things). I.e. if there was a button that said Notepad, it would open Notepad.exe on the machine.

My initial thinking was that i could have a XML Socket server 'daemon' runnning (c#) , which i could connect to with flash - however, as both the swf and the daemon are local, flash complained and gave this error: "Error #2010: Local-with-filesystem SWF files are not permitted to use sockets."

The only way i know to fix this - is to change the security settings of flash - not very user friendly!

So! Any thoughts on how I could otherwise go about this? I was thinking a custom http server could do the trick (connected with URLRequest) although i'm not too sure.

View 1 Replies

Actionscript 3.0 :: Calling Function In Content.swf From JavaScript Fails?

Dec 22, 2009

ARCITECHTURE:the way I've set up this Flash doesn't work properly.in my html I load a preloader.swf.this preloader.swf is build with ActionScript in the first frame.this preloader.swf loads a content.swf this content.swf is build with ActionScript in a Document Class...

everything works properly this far.MY PROBLEM:my problem comes when I - using JavaScript - try calling a function in my content.swf the function I try to call is this:

public function playThisMovie(theMovieToPlay:String):void {
var newM:String = theMovieToPlay;
ExternalInterface.call("alert", "the new movie is = "+newM);
}

when calling this function nothing happens, even though I know the function exists..can it be, that I cannot call my function because it is inside my content.swf..and if yes, is there a workaround I can use?

View 6 Replies

ActionScript 3.0 :: Unable To Execute Swf File Present In Server On Local Machine?

Jul 7, 2009

I am a newbie to Flash and ActionScript 3.0 platform. I don't know whether this is the correct place to post this kind of queries/problems/issues here. Till now, I had posted only basic flash issues here in this forum. I feel this is the most powerful issue which created head-ache to me till now. I spent nearly 4 hours working with this issue. But, I don't find any solution even in google.I have created a swf file, which when gets executed, gets data from backend database and displays as items in Combo-box. In swf file, if we select an item from Combo-box, collects data from database and gets back to flash and displays them as items in Combo-box. Each item has a specific image(.jpg file)associated,which gets displayed on stage of flash file(.swf file) upon selected from combo-box.

I am calling/invoking the flash file, When I click on a Button/select a tab created within my Java application.But,when the button gets clicked/tab gets selected, Combo-box is visible in flash file, but with no elements when we try to click upon it and the following error is getting displayed in a dialog-box:Title of the error is: An action-script error has occured.[URL]

View 1 Replies

ActionScript 2.0 :: Execute The On(load) Content From Another Movie?

Dec 2, 2010

Is it possible to force a movie clip to execute again its on(load) clause contents at any time from another movie?

View 1 Replies

Javascript :: Access An Local Image (not In App Workspace) From A Local HTML File (in App Workspace)

Mar 12, 2011

I have a HTML box and load a local html file from the project. In this HTML file I use jquery and I want to load an image from my user directory. I see the image from my user directory but jquery doesn't works. I get this error:

[Code]...

But if I load an image from the app workspace, everything works fine (I see the image and Jquery works). Is this a policy problem? The error says that is a "null object reference" problem, but this can't be true...

View 2 Replies

ActionScript 1/2 :: Execute Javascript From Flash?

Feb 14, 2007

How can I execute the javascript from my flash application? That javascript returns the flash movie (.swf file). I want to load that swf file into movie clip. What control i can use or any way to do that?

View 11 Replies

Php :: Calling A Page With MySQL Query From Javascript Function Then Returning Results To Another Javascript Function

Jul 8, 2010

I am refactoring some code. I have a PHP page that contains a MySQL query and stores the result in a PHP variable $my_result. This result is then echoed to a Flash SWF during embedding with SWFObject. I now want to call this PHP page that makes the query from a javascript function like so - one change I have made to the PHP is that instead of storing the result in a variable $my_result I am echoing the result. Javascript function to call the PHP page and make the database query

[Code]....

View 2 Replies

ActionScript 3.0 :: Execute Callback Functions Dynamically By Passing A Function In As An Argument To Another Function?

Apr 21, 2010

How do I execute callback functions dynamically by passing a function in as an argument to another function?

Look at this example:

Code:
package {
public class myClass extends MovieClip {
public function myClass(callback) {

[code]....

View 2 Replies

ActionScript 3.0 :: Execute External Javascript On Last Frame?

Mar 29, 2010

I'm authoring in Flash CS4 using Motion Tweens.
 
Here is the situation.  I have a JavaScript that closes the DIV containing my flash object.  It currently closes after 15 seconds. That is supposed to be how long the Flash movie lasts.  however, slower machines run the movie longer.  this means the flash object closes too quickly and they don't see the entire movie. . . if I increase the time, the users of fast machines have to wait around awhile for the movie to disappear.

So, I would like the movie to execute the javaScript when it gets to the last frame.

View 5 Replies

ActionScript 2.0 :: Receive And Execute From Javascript SendEvent()?

Mar 22, 2012

My page uses both flash and javascript. Currently, I have a video player which makes use of commands like "videoP.sendEvent('PLAY');". I'm building a new, custom player and have never used the sendEvent() method.I've always used "setVariable" with a listener.

I'd like to NOT alter the code in my html page and make use of it's sendEvent() functionality. So, I guess my question is ... how do I RECEIVE the event? The player is already targeted properly within my html. I just need to tell my flash doc to execute the information it receives.

View 0 Replies

Actionscript 3 :: Execute Arbitrary Code In Flash Like Javascript's Eval()?

Apr 1, 2010

Is there any way to execute arbitrary code in Flash, like javascript's eval()? I'd like to take some code as a string and execute it, if possible

View 2 Replies

ActionScript 3.0 :: Execute Javascript Without Calling External Functions In The Html

May 9, 2010

My needs are to execute a javascript whitout calling any external function of the html file when a flash button is clicked. I need to obtain the effect that happen when the user put in his address bar the text javascript:"alert("Hello World!"); and press enter I need to do this whitout calling any external functions, whitout calling anything in the html file, all just with the swf. Of course the script that i must call is another than javascript:"alert("Hello World!"); but let's begin with this easy script and when working i can thikn to implement the complex one

i tried this

ActionScript Code:
on(release)
{
function runJS(script:String):Void {

[Code]...

but is not working, i get a syntax error, maybe cuse of the " in "Hello World!"

I want to ask if what i need to do is possible and, if yes, why my AS code is not working.

View 4 Replies

Flash - Execute Some Command Line Arguments In The Local Machine And Get The Results Back Or Output Back To A Textbox Area?

May 26, 2011

I have a GUI using Flex. I have a condition like i need to execute some command line arguments in the local machine and get the results back or output back to a textbox area. How can i do a button on submit, execute command in the local machine and return the output?Command to execute example:

echo logfile.log | grep username

Code:

button1.onRelease = function ()
{
// in this computer, it will now run a command, please wait.
}

View 1 Replies

Execute A Function Inside XML?

Sep 8, 2009

I have a Flash application that receives data from a php application in xml format. Would it be possible for me to call functions in flash that it receives in xml format?
 
Let's say the php application sends this:-
 
<data>
<command>gotoAndStop(15)</command>
</data>
 
Would I be able to get that function executed in the Flash application?

View 6 Replies

ActionScript 2.0 :: Execute Function Only Once Per Second?

Sep 11, 2008

make function execute only once per second in ActionScript 2.0? As always I'll start from example to explain my problem...I have aprox. 15 buttons on my stageand all of them are calling the same function, but with different arguments. This function executes some effects, that lasts for 1 second. If someone will click on that buttons more often, than once per second, that will look horribleI can disable that button, what was pressed, but this will not solve the problem, be cause someone in a hurry can click another button

View 1 Replies

ActionScript 3.0 :: Execute Function Every 30 Minutes?

Apr 11, 2009

I need to execute a function every 30 minutes including once immediately.User loads my flash swf, function gets executed.. 30 minutes later, it does it again.. and so on..

View 3 Replies

ActionScript 3.0 :: Use A Link To Execute A Function In A SWF?

Nov 24, 2009

In the Actionscript 3.0 Language and Components Reference > All Classes > TextField Class > Properties > htmlText HTML tags supported table, the description of the anchor tag has this sentence: "You can use the link event to cause the link to execute an ActionScript function in a SWF file instead of opening a URL." I don't understand how to do this. Can someone tell me how to do this? Or, can someone point me to an example or reference that explains how to execute an ActionScript function in a SWF file using the link event?

View 4 Replies

ActionScript 3.0 :: Execute This Function Every 5 Seconds?

Jul 14, 2011

I've tried using setInterval() but I just can't get it right... This is the function I want to execute every 5 seconds:

function next_(event:MouseEvent):void{
var sliderPos = sliderMC.x;
if(sliderPos != -696){[code3]..........

View 11 Replies

Call A PHP Function From Flash And Have It Execute Right Away?

Jun 28, 2010

Is it possible to call a PHP function from flash and have it execute right away?

If so how could I go about doing that, because I am trying to call a PHP function that will update a users facebook status, but thus far I have been unsuccessful, so I am kind of at the end f my rope.

View 5 Replies

ActionScript 3.0 :: Using An Array To Execute A Function?

Oct 20, 2009

I'm trying to use an array to store function names then recall the names later to execute the fuction.

Here is the code that I'm trying to use...

function BackClick(evt:MouseEvent):void{
var RedoPop:Object=MovieClip(parent).Undo.pop();
MovieClip(parent).Redo.push(RedoPop);

[Code].....

The variable "UndoPop" contains the name of a previousely defined function and I would like to let flash know to execute that function.

View 0 Replies

ActionScript 2.0 :: Execute A Function Automatically?

Dec 27, 2002

how to execute a function automatically ( without havin the user to click... like say on load of a movie clip... or entering a frame...wats the exact code to execute a funtion?

View 3 Replies

ActionScript 2.0 :: Cant Execute Function With SetInterval?

Mar 19, 2004

[AS]
_root.logo._alpha = 0; //S�tt alpha p� logon till 0
_root.meny._alpha = 0; //S�tt alpha p� menyn till 0
var donealpha:Boolean = false; //skapa en Boolean[code]......

The first two functions wont get executed.. I have tried to put trace("test") strait under the function ...(){ but it wont execute it..

View 4 Replies

IDE :: Download Function In String And Execute It?

Apr 24, 2009

I would like to download a function as a string from my server into a Flash swf-document on the computer of a customer. So this download would be executed client-side. Then I would like to 'execute' the string, just as I do with the 'eval'-function in php/javascript.The important thing here is that the function is not stored client-side on the harddisk (like the swf-document) and that the function only remains in the computer memory.

View 12 Replies

ActionScript 2.0 :: Execute A Function On XML Load?

Jun 10, 2009

I am struggling trying to put together two or three tutorials in order to make a photo gallery with numbers as the navigation to work. I am almost there, the problem is that in addition to the numbers as navigation I also wanted to have the option to change the images using a previous and next button. Here is a link of what I am trying to do:

[URL]

The reason the previous and next buttons don't work is because their functions are within a main function that is called onRelease of one the number buttons. Once you click the numbers, the previous and next start to work.

My question would be if there is a way to auto execute the function DisplayInfo as the XML file loads. See code Below:

Code:

var item_spacing = 20;// how far menu items are spaced vertically
var item_count = 0;// counts menu items as they are added from the XML
function loadXML(loaded) {

[Code]....

View 4 Replies

ActionScript 2.0 :: Cannot Execute Function With SetInterval

Mar 19, 2004

[AS]
_root.logo._alpha = 0; //Stt alpha p logon till 0
_root.meny._alpha = 0; //Stt alpha p menyn till 0
var donealpha:Boolean = false; //skapa en Boolean
var doneshrink:Boolean = false; //skapa en Boolean
var donemove:Boolean = false; //skapa en Boolean
[Code] .....

The first two functions wont get executed.. I have tried to put trace("test") strait under the function ...(){ but it wont execute it..

View 4 Replies

Professional :: Using External Interface On Local Content?

Jul 17, 2007

We're using External Interface for interfacing between Flash and JavaScript on the HTML page. All works fine online. When we
try to localize the pages though (so that a Salesperson can have a CD full of demos), none of them seem to work.Is this an over-sensitive Flash security issue? We already have allowscriptaccess='always' and swliveconnect=true in the object/embed tags.

What can we do that doesn't require changes on each individual machine to set trust paths or any other kind of browser configuration? Not only do we want to have this content working on the machine of a salesperson, we may get clients that want to deploy content offline (kiosks, machines without any network access).

View 3 Replies

ActionScript 3.0 :: Get Parent To Execute Function In Child?

Jun 22, 2009

I have a function in a child that I need to have executed by the parent but I can't get it to work. Does anyone know how to call the function in a child from a parent?

What I'm doing is having the parent load a few buttons and I want to re-use the button swf, but have the parent provide the text for the button.[code]...

View 20 Replies







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