ActionScript 3.0 :: Cannot Add GetURL Function To Button?

Jan 8, 2009

I'm trying to add a simple getURL script to a simple text button-- should be really simple, right? But when I select the instance of the button on the stage it says the current selection cannot have actions applied to it. This, despite the fact that I am able to open an old .fla that has the same type of button and it does have a getURL action applied. What gives?
Flash version 9.0 (CS3 Professional)

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Write The GetURL Function To A Button?

Jan 19, 2010

How to write the GetURL function to a button in AS3?

View 6 Replies

AS3 :: Use GetURL Function In It?

Jun 6, 2010

How do I use the getURL function in AS3 ?

View 1 Replies

ActionScript 2.0 :: Using GetURL To Call JS Function?

Apr 24, 2005

If i'm using the getURL method to call a JavaScript function:

getURL("javascript:myFunction('sections/1.html')");
How do I pass a string+variable as a parameter of that function?:
instead of:

[code].....

View 3 Replies

ActionScript 2.0 :: Get A Function To Run The GetURL Statement?

Jan 10, 2011

I was wondering if there was a way to get a function to run the getURL statement? something similar to this:

function go(){
getURL("www.whatever.com","_blank");
}

View 4 Replies

ActionScript 2.0 :: Using GetURL To Call JS Function

Apr 24, 2005

If i'm using the getURL method to call a JavaScript function:

getURL("javascript:myFunction('sections/1.html')");
How do I pass a string+variable as a parameter of that function?:
instead of:

[Code]....

What is the correct syntax for that parameter we're passing?

View 3 Replies

ActionScript 2.0 :: GetURL Function Not Working In Vista

Apr 27, 2009

I recently formatted my disk and installed WindowsVista Ultimate. Now, I find that this simple piece of code is not working. But earlier when I was using Windows XP, this code would open a new browser window (in firefox) and automatically prompt me to log into Gmail account, and after I log into gmail I will have this 'userEmail' successfully inserted in the "To:" field (inside gmail)

Code:
var userEmail="myemail@gmail.com"
getURL("mailto:"+userEmail);
Can't figure out why this is not working in my new OS.

View 18 Replies

Professional :: GetURL Function - PDF Not Opening On A PC On First Click?

Jul 14, 2010

I have a simple Flash button with the following script attached:

on (release) {
getURL("http://URL/sample.pdf", "_new");
}

And I've also tried this:

[Code]...

my client (Who uses Firefox, on a PC) has to click on the button twice to view the PDF. The first time they click on the button, they have to close the blank window that pops up and then click on the Flash button again to view the PDF. It opens fine the second time. Is this just a PC problem? On my Mac (Safari) it works fine, but (Firefox) seems to want to save the document before I can view it.

View 3 Replies

Jquery :: Call Function Inner Swf With Method GetURL?

Jun 25, 2011

I would like to call a jQuery pager function (p) defined as:

function p(page)
{
$('#pitch').load(page);
}

how can I call this function inner swf with method getURL..

note: normally I call it in html tag as:

<a href="#" onclick="p('somefile.php?id=someid');">link name</a>

View 1 Replies

ActionScript 2.0 :: GetURL Not Working Even With OnRelease Function

Jan 3, 2008

I can't get my getURL to work. It works when I use "_blank" but not when I use "_self" or "_parent" or "_top" or leave it empty. I've got it right off the main timeline. I've also tried putting it within an onRelease function.

So, this doesn't work:
Code:
getURL("images/aboutus.jpg", "_self");
But this does:
Code:
getURL("images/aboutus.jpg", "_blank");

View 9 Replies

ActionScript 2.0 :: Simple GetURL Function Not Working

Sep 8, 2009

I'm modifying an mp3 player by flabell, and try to get some buttons to work. However, I can't seem to get the getURL to work, even though it works in other parts of the script. This is my code:
mc.rate1.onRelease = function() {
trace(this.ID);
getURL("[URL]","_blank");
};

The trace goes through fine. Here is the code that works:
Code:
private function downloadRelease(mc : MovieClip) : Void {
var title : String = mc._name;
var index : Number = Number(title.substring(title.lastIndexOf("n")+1,title.length));
getURL(songsSource[index], Main.getInstance().mcAlbums.linksTarget);
}
I'm on a mac with firefox.

View 3 Replies

ActionScript 2.0 :: Add A Variable To A GetURL Javascript Function?

Jan 13, 2011

how to add a variable to a getURL Javascript function. I have; ActionScript Code: getURL("javascript:JavascriptFunctionNAme(ASVariableName?);"); It works fine when I replace ASVariableName with "1" or some other plain text.

View 5 Replies

ActionScript 2.0 :: Cannot Get The GetURL Command To Function Properly?

Jan 23, 2009

i have that header for my navigation here: [url] However I cannot get the getURL command to function properly. You can test it out by clicking on a key meta word (right hand side) than clicking on "home" to take you back.As you will see it does not work.The site is built around Joomla—it's pretty basic and I didn't care for any of the navigational options so I built a flash menu.

edit I can get this to work when I "cmd-return" out of flash and test the .swf - but online it's a no go.

View 7 Replies

ActionScript 2.0 :: Question Mark Not Working In GetURL Function?

May 26, 2005

I am trying to use the getURL function to open a new window with a variable URL, but it doesn't seem to be doing what I want it to. Here is the code i am using:

on (release) {
getURL("popup.htm?/projects/"+_root.foldername+"/"+_root.projname+"_1highres.jpg", "_blank")
}

The problem appears to be the question mark. If I remove the question mark it works fine.. but I need to use the question mark because the rest of the info is just information I am having popup.htm interpret

View 3 Replies

ActionScript 2.0 :: Geturl Function Only Opens Browser Homepage

Jul 8, 2009

I have a button with some transition/easing on it...and a geturl function. However there is something weird happening, when the button is clicked, it sees the geturl alright, and the browser opens...but cant seem to get any further than that! [code]...

View 1 Replies

Flash :: Use A Question Mark In Actionscript 2.0 With GetURL Function?

Feb 20, 2012

Actionsctipt code:

on(press)
{
getURL(escape("address.html?0"));
}

This works absolutely fine in Internet Explorer but in Chrome in the question mark is obviously made into "%3F". how I can stop this from happening and still keep it compatible with IE and other popular browsers?

View 2 Replies

ActionScript 2.0 :: GetURL Function Not Working In Safari / Firefox On Mac

Apr 28, 2010

I have a file upload application I built that uses FLASH as a means to transfer file to/from users directories on a server. Once the file transfer has completed I fire a function that includes a call to a javascript function within my page that executes an AJAX refresh of one of the "div's" on my page.

ActionScript Code:
// COMPLETE FUNCTION
fileRefListener.onComplete = function (fileRef:FileReference):Void {
status_txt.text +="<font size="11" color="#E6E6E6"><b>" + fileRef.name + " uploaded.</b></font>
";
status_txt.vPosition = status_txt.maxVPosition;
filesCompleted++;
[Code] .....

And my JS is:
Code:
function handOff() {
new Ajax.Updater('manage_user_info', '/fileTransfer/manage_user.php?client=' + $('users_to_manage').getValue(), { method: 'get' });
}

This works flawlessly in IE6/IE7/IE8/FF3.6/Opera/Chrome/Safari on Windows Machines but for users on MAC's there seems to be an issue. Any particular reason this wouldn't be working in a MAC environment?

View 0 Replies

Data Integration :: XML Link - Calling Function To GetURL OnPress

Jul 5, 2006

I am creating a gallery type site, I am loading xml data externally creating duplicate movie clips and it all works fine, my only problem is I want them to go to a URL, I have one of the nodes with the URL and in my actionscript I am calling a function to getURL on press, the problem is on each separate movieclip it links to the URL of the last movieclip in the stack.

View 1 Replies

ActionScript 2.0 :: Call External Js Function With Time Dealy On GetURL?

Feb 9, 2009

I have a simple getURL below and have been looking around for a way to #1 - set a time a time delay#2 - call an external js function#3 - load my page

butMov.onRelease = function () {
getURL("http://www.mysite.com"+myURL);
}

View 4 Replies

ActionScript 2.0 :: OnPress GetURL - How To Prevent OnRollout Function Running

Jun 14, 2006

When I use:
on (release){
this.stop();
getURL("page.html", "_blank");
}
Why is it that when that new page window is loaded the background flash window then runs my
on (rollOut){
this.play();
}
function? I am trying to pause the timeline I am clicking from in Flash. If I take this line out (this.play() it pauses, but if I were to go that way how would I start getting my MC to play again when the user gets back to the flash window?

View 3 Replies

ActionScript 3.0 :: GetURL From XML To Button

May 17, 2010

I have modified simple photo gallery tutorial through XML at [URL] click on a thumb and an image scrolls in. Now I'm trying to add a link to the image - but can't get the url from the xml to the image.

Here's the XML-file (pics.xml)
[XML]
<?xml version="1.0" encoding="utf-8"?>
<images><image>
<pics>pics/utrechtmedia.jpg</pics>
<sites>sites/utrechtmedia.jpg</sites>
[Code] .....

View 5 Replies

ActionScript 2.0 :: Pass Flash Variables Through A GetURL Javascript Function Call

Dec 2, 2009

How To Run A Shadowbox Gallery From A Flash getUrl function Call..

This Is What I Have In My Flash:

btn1.onRelease = function() {
getURL("javascript:MyGallery([page1,app1]);", "_self");
}

I want to be able to declare my arguments in flash like so

var page1 = {
title: 'Google',
player: 'iframe',

[Code].....

View 1 Replies

Flash :: IDE - Gallery - When Click Next And Then Go Back The GetURL Function No Longer Works

Mar 5, 2010

I have a flash gallery in side my movie I have a next button and a prev button that works just fine. The issue I am having is when you click next and then go back the getURL function no longer works. It might be easier to view the issue. here is the link [URL]

View 1 Replies

ActionScript 2.0 :: PHP Value To Flash Button GetURL

Sep 1, 2008

What I want to do is take the value of $MyState in the php code below..

PHP Code:

<?php
$MyState = $_GET['MyState'];
?>

[Code].....

I know that I need to do something with Loadvars, but all of the tutorials I've tried aren't working. how to get this php value into my flash file button's getURL?

View 3 Replies

ActionScript 3.0 :: Add GetURL To A Tweening Button?

Jun 12, 2010

So I made a sliding menu bar by following a tutorial, and the author of the tutorial didn't include how to add a MouseEvent.CLICK to getURL.[code]...

View 1 Replies

ActionScript 2.0 :: Flash / XML - GetURL Function - Hyperlinks In Menu Will Only Open Windows On A 'parent' Level

Sep 15, 2004

I've messed around with XML+FLASH menu systems (downloaded from various Flash resource sites) on a novice level . As in, I know how to modify the XML file to have the content I want and where to rename the XML file in the FLA if need be. But I've never had to actually manually modify any functions within the FLA before. I'm really green when it comes down to diggin' within the Flash coding. Anywho, I came upon this really nice horizontal/glide menu from a way talented flash guru who was nice enough to share his source files with me...

[Code]...

View 14 Replies

Professional :: Can't Transfer A Button To A GetUrl() Link?

Apr 4, 2011

I try to create a flash menu; where every button on the screen operates as a simple getUrl() link. Because of this, I have taken the following steps:- Create new document.- Create a symbol on the canvas.- convert is into a button Symbol- Double Click the button and adding events for up, down, over by clicking F6 on each frame.- back in scene one, I right click the button and open the Action panel- Adding the Script: "on release { getUrl('index.html'}- Press ctrl + enter  to test the move ! ( index.html exists in the same folder as the flash file.)

View 1 Replies

ActionScript 2.0 :: Assign GetUrl To Button In AttachMovie?

Mar 1, 2011

I'm working with some XML-supplied data, with a variable number of elements. I'm using a loop to add instances of a symbol for each element via attachMovie. But something is preventing my URL action from getting properly assigned.

When I do this:

ActionScript Code:
itemY = 0;
urls = [];

[Code].....

View 5 Replies

ActionScript 2.0 :: Submit Button Uses A GetURL Action?

Apr 30, 2003

They have been made following a tut from Flash_db.I have not been able to test the PHP script yet so no probs with that , but the problem lies in my Flash movie.

The submit button uses a getURL action, but Flash cannot seem to find the PHP file, even though they are in the same folder.

View 11 Replies

ActionScript 2.0 :: Create A Button In Flash With A GetURL?

Feb 10, 2010

I would like to create a button in Flash with a getURL that can be easily edited by using an XML source.

View 1 Replies







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