ActionScript 3.0 :: URLs Linking To Different Sections Of Flash Pages

Jul 5, 2009

So this might be an easy but possibly a long answer, but I can't seem to find any good info on it anywhere. I'm trying to figure out how to have different sections of my flash site be linked to with different URLs. A good example of what I mean would be this site here: [URL] I'm not the biggest fan of the design but the functionality is great. It animates seamlessly between pages and each page has a separate URL. Is there an easy way to explain how this is accomplished?

View 2 Replies


Similar Posts:


Flash Pages Given Separate Urls?

Nov 17, 2009

im trying to find info about giving sections of my flash websites different urls.[URL]How do i code it so that a url can take me to a section of a flash website?

View 3 Replies

ActionScript 3.0 :: Linking Multiple Buttons To Different URLs In Flash CS3?

Oct 5, 2007

I have a small flash movie with three buttons I would like to link to three different URLs. My code for these is below, however, when I test the movie there is a namespace error (copied below). I assume this is because both buttons are trying to use the same variable but I have no idea how to make this work in AS3.

where i need to make changes so the code understand that "thisButton" should take the user to URL#1 and "thatButton" should take the user to URL#2?

This is for my own site and I have to use AS3 as there is an FLV on it as well which requires AS3 to be viewed.

FIRST BUTTON

//when they click the "light" button go to the www.site/About page
this.lightButton.addEventListener(
MouseEvent.MOUSE_UP,
function(evt:MouseEvent):void {

[Code]....

View 9 Replies

ActionScript 2.0 :: Flash XML Photo Gallery Linking To URLs

Jan 17, 2006

I've gone through Kirupa's Photo Gallery tutorial and set it up to work on my site, it's here: [URL]

What I want is to be able to click on the big image after it's loaded, thus launching a new window leading you to that project's URL.

This gallery's [URL] images link to an external URL, that's what I want my big image to do. What do I need to add to my actionscript and XML file to do this?

View 9 Replies

ActionScript 3.0 :: Linking Images To Outside URLs?

Oct 29, 2009

I'm trying to get my four images to link to outside URLs.

Here is my website: [URL]

And for example, I would like the "Option One" image to link to [URL]

I'm using Actionscript 3.0 and CS3.

View 1 Replies

ActionScript 2.0 :: Arrays - Linking Buttons With Urls?

Aug 28, 2010

I have started to take AS2 knowledge a bit further now and am working on a rss reader, i have multiple buttons which are loaded into the stage, what i would like to know is a) how do i create those arrays using their 'idenifier' and b) how do i link pressing those with the corresponding url in the urlArray?

what i then want to do is put the url which is loaded after a button has been pressed and put it as a variable which i can then load into

ActionScript Code:
rssFeed.load(/*urlGoesHere*/);

View 1 Replies

ActionScript 3.0 :: Getting Error Codes When Linking URLs To Buttons?

Sep 14, 2011

I am getting these error codes-
Call to a possibly undefined method addEventListener through a reference with static type Class.
Warning: 3594: exec is not a recognized method of the dynamic class RegExp.
I am getting these error codes. I inserted the link where my flash file is. [URL].

View 2 Replies

Linking Tabs To Different Pages On Website?

May 23, 2010

I am fairly new to flash and I have started to attempt to modify a template that I found online to make it my own. The thing that I am having problems with is the URL Links. There are 5 different clickable tabs on the header that I have, and when you edit it in flash cs4, each one is the same image when you edit it. The only way in which you can change what each one of them says is by editing them in the library. This isn't the problem. I want to link these tabs to different pages on my website. When I edit one of them, all of them change to the same url link. The file is too large for me to upload I think.

View 4 Replies

ActionScript 3.0 :: Linking The Buttons To Pages?

Feb 9, 2011

I have laid out the four pages that I wish and have created a button for each page on each page.I was told a simple stop script would stop the pages acting like a movie.I entered:
 
14:00PM
stop(); 
function button1_clicked(e:MouseEvent) :void{    gotoAndStop("home");}
function button2_clicked(e:MouseEvent) :void{    gotoAndStop("about");

[code]....
 
which I was told would accomplish this and link the buttons to the relevant pages. When I test the movie the buttons start flickering as well as the images.....

View 2 Replies

Professional :: Linking SWF To HTML Pages?

May 26, 2011

I'm trying to use a .swf for a navagation button in a website I am creating but I'm running into a bit of a problem. I need to know how to code the button (In Flash) so that they link to my specific .html page. Is this possible to do with a realitive link?

View 7 Replies

ActionScript 3.0 :: Linking Pages Together Via Buttons

Jul 19, 2010

why my 3 pages are not being brought up when i 'ctrl enter'. I am making an online game with 3 pages - an instructions page, game screen and end game screen and do not know why my initial page is not opening.It is sending me the error message:Error #1010: A term is undefined and has no properties.at MainClass$iinit()[code]

View 1 Replies

ActionScript 3.0 :: Puzzling With Linking Pages

Jul 20, 2010

why my 3 pages are not being brought up when i 'ctrl enter'. I am making an online game with 3 pages - an instructions page, game screen and end game screen and do not know why my initial page is not opening.it is sending me the error message:Error #1010: A term is undefined and has no properties.at MainClass$iinit()[code]

View 2 Replies

IDE :: Frame Labels - Linking Buttons To Different Pages

Mar 31, 2009

I'm creating website that I want to put my resume and portfolio on as different Flash applications. For my resume it would be like a mini-web site that has various linking buttons to different pages. I tried to use scenes b/c I had a professor who told us to use scenes to create our pages/animations, and the scenes concept did not work with the actionscripting.

I then read online that scenes were not the way to go. So I'm trying to use Frame Labels to create this - right now I made a menu movie clip that I have my actionscript in for each button - the buttons have the correct instance names and I have my frames properly labeled with their movie clips attached to each for each part of the resume/page portion.

This is the code I'm using in the Menu movie clip. The problem I'm having is that when I click on each button - nothing happens! I tried this one, and nothing happened:
education.addEventListener(MouseEvent.CLICK, educationCLICK);
function educationCLICK(event:MouseEvent):void{
gotoAndPlay('education');
};

And then I tried to re-order it and nothing happened:
function educationCLICK(event:MouseEvent):void{
gotoAndPlay('education');
};
education.addEventListener(MouseEvent.CLICK, educationCLICK);

View 2 Replies

ActionScript 3.0 :: Linking Scrollbar Button To Pages

May 7, 2010

I have a button in the scrollbar that has a mask.(scrollbar_mc, mask and content_mc) Now I stuck with HOW TO LINK IT to other pages that are in scene 1 ?

View 9 Replies

ActionScript 3.0 :: Linking Buttons To External HTML Pages?

Dec 8, 2011

I'm having trouble linking buttons from a swf banner that will be on all html pages. I'm using the following script, which doesn't work yet.For now, I have only two buttons. Button btn_1 should go to page_1.html, which is in a folder labeled pages.I've tried the variable name and the navigate to URL and neither have worked.

--- AS3
btn_0.mouseEnabled=false;// setting the first button -home - invisible
btn_0.alpha=0.2; // sets the color of the button 20% alpha

[code]....

View 3 Replies

ActionScript 2.0 :: Flash8 - Linking Menu On Homepage To Internal Pages

May 22, 2009

For some reason I can't seem to link a menu on a homepage with the internal pages of the website i'm working on. The thing is that this menu is only supposed to be seen as it is on the home page (it changes to a different location, and has a different look on the internal pages). Problem is I can't seem to get the button to link to the corresponding page.

View 3 Replies

ActionScript 2.0 :: GotoAndPlay Buttons In Website Linking Wrong Pages?

Sep 30, 2011

I have created a flash website in cs4 using AS2. I have 2 layers in my time line, content and AS. I created scenes along the time line and labeled each scene "about" "contact" etc.Each scene is 10 frames long and has the stop action applied to it. The gotoAndPlay command is applied to each button within the scene and I have used the folowing action on the buttons to link the pages:on (release) {gotoAndPlay("scenename");}This does link the pages however if i hit any of the buttons twice, it directs me to the wrong page. For example if I hit the home button twice, it will direct me to the about page. Should I be targeting a frame within the scene also?

View 3 Replies

Professional :: Multiple Buttons Linking To Multiple Pages From One Movie?

Aug 28, 2011

I have a flash movie with 3 buttons I am trying to link relativley to pages within my site, I have one working fine but can't get the others to link and when I try it makes the one that is working, work no more..

Below's the code I am using for the one that is working;

import flash.events.MouseEvent;var getIndex:URLRequest = new URLRequest("../index.html");
//---Enter Button---\

[Code]....

View 5 Replies

Flash :: Tutorial - Make Individual Pages Into Swf Pages So We Can Add Links In A Flip Book

Apr 28, 2009

Looking for a tutorial to make individual pages (jpg or gif) into swf pages so we can add links in an on-line flip book. I have flash, but have not learned as of yet.

View 2 Replies

ActionScript 3.0 :: Count PDF Pages - Number Of Pages Within The PDF Using Either Flash Or PHP?

Oct 3, 2011

I'm using FileReference to upload PDFs and PHP to email it.Is there any way to find out the number of pages within the PDF using either Flash or PHP?

View 5 Replies

ActionScript 3.0 :: Create A Menu And Manage Different Sections With Flash?

Dec 29, 2009

First like so many I am new to actionscript and I'm almost there but I cant figure it out. Either way I am putting a scrollbox in each section where there is a graphic. So for every section there will be a new scrollbox with new info. It goes to each section perfectly but as soon as you use the scrollbox and then try to go to another section the content from the scrollbox is still on the page.

View 4 Replies

ActionScript 3.0 :: Making A Flash Website: Not Able To Exchange Info Between 'sections'

Aug 23, 2009

Let's say i have a class that simulates a 'button section'.The button bears a title. Like news. I click on it, i transfer the title in the button and the respective news to the body.The body exists outside the class. It's a textField variable. let's assume.

ActionScript Code:
public function xmlLoad()[code].....

keeps giving me an error.1067: Implicit coercion of a value of type Number to an unrelated type String.but i've seen this done before, except it was on a loader variable...but i don't see how that would be any different.

View 1 Replies

Professional :: Track Pages With Google Analytics To See Which Pages Are Getting The Most Clicks?

Jan 25, 2011

I would like to know how to track my pages with google analytics to see which pages are getting the most clicks. My site is XML / Flash the menu is xml. Could I put the tracking code on each of the menu items in the xml file?

View 7 Replies

Flash - How To Target URLs In AS3

Oct 27, 2011

How would you add a target="_self" function onto the buttons in this actionscript (as3) I need the buttons to open within the same browser window and not a new (_blank) window:

skype_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
function mouseDownHandler(event:MouseEvent):void {
navigateToURL(new URLRequest("skype:mySkypeIdentifier"));
} email_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseUpHandler);
function mouseUpHandler(event:MouseEvent):void {
navigateToURL(new URLRequest("mailto:myEmailAddresss@myDomain.com?subject=rts
Esolutions enquiry"));
}

View 1 Replies

ActionScript 3.0 :: Getting Various RSS URLs From Flash With PHP

Sep 3, 2010

I'm building a flash app that gets rss links from a list but then I need to retrieve the rss feed from the rss link to work with in flash. I did this locally using a proxy.php wich works on all types of urls.

PHP Code:
<?php
$url = $_GET['url'];
readfile($url);
?>

But on the server it only works with urls ending in .rss but not when it's a redirected url like .xml or other feedreader urls. How do I retrieve the rss from redirected urls on servers? Little sidenote, I made a test using a php form to call this proxy.php file that I made and when I use the urls that don't work in the flash app it does retrieve the rss feeds.

View 3 Replies

Opening 2 URLs During Flash Intro?

Oct 19, 2009

I've created a flash intro for a website and I have it setup so that in the first frame of the intro it opens a popup window, and then in the last frame it opens the actual site in the same window as the intro. Right now when it hits the last frame it opens up the popup window again also! Ack! The code I've used for opening the popup window is:var url:URLRequest = new URLRequest("player.html"); navigateToURL(url, "_blank");
 
the code used in the last frame to move to the site is:var urlReq:URLRequest=new URLRequest('index2.html');navigateToURL(urlReq,'_self');
 
I'm guessing that it has something to do with re-using the same variable name. I tried changing the code in different ways on the second window opening but still had the same result, or broke it opening up any pages at all. I've also tried moving the two code snippets to different layers. I'm thinking there might be a few ways around this too such as if there is a way to trigger the popup window, and then have the intro wait x seconds and then opens the main site or something, but I have no clue how to go about doing any of this. have the site in question in a temp location currently and it can be viewed here: [Url]

View 1 Replies

ActionScript 2.0 :: Keeping Urls In Flash

Feb 11, 2004

Im using Swishmax and I can't seem to make a url open in my flash site(so it doesnt open as a pop up but in my actual flash site) So basically that it opens in a designated space that I made for it on my site. I know that a tuturial for this exists on this site but i just can't seem to find it.

View 2 Replies

ActionScript 3.0 :: Use Of /#/ In Urls On Flash Websites?

Jan 6, 2010

I've noticed that a number of Flash sites have urls such as [URL] which gives the ability to return to a specific area (in this case "services") of the site rather than staying on the homepage each time you go back to the page. As you navigate through the site the url changes to reflect where you are in the swf.

View 3 Replies

ActionScript 2.0 :: Keeping Urls In Flash?

Feb 11, 2004

Im using Swishmax and I can't seem to make a url open in my flash site(so it doesnt open as a pop up but in my actual flash site) So basically that it opens in a designated space that I made for it on my site. I know that a tuturial for this exists on this site but i just can't seem to find it.

View 2 Replies

ActionScript 3.0 :: Add Urls To Instances And Components In Flash?

Feb 17, 2009

I am building a website in flash and I am totally new to action script, borrowing script from around the internet. I have
been searching for days on how I could link my Flash pages to each other but I cant find anything (for action script 3), What Code do I use? Also I am looking for how I could add links to pictures in my title List Component to other pages I have created. I have Included the Script I have made for My Title List Component, How can I insert Urls or Links into this code for each Item?

View 4 Replies







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