CS3 Loading New Pages From Separate .fla's

Jul 23, 2009

I am trying to do something pretty basic I think...I have attached a screenshot below of what the site looks like so far. What I want to do is always have the left hand side links showing on the site. I want to create a new .fla for projects and have that load on the window on the right when the projects link is clicked on. What I have done in the past is create the entire website within one .fla but that is getting too confusing. I assume some actionscript is required here which I am pretty useless with.

View 21 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 :: Passing Variable To A SWF On Separate HTML Pages?

Sep 3, 2009

i have a flash file created in AS3, let's call it file1.swf it contains a variable.. we will call this testVariable file1.swf is embedded inside file1.html file1.swf reaches a point where it needs to load a new swf file that we will call file2.swf file2.swf is done in AS2. file1.swf simply calls file2.swf by calling a new HTML file that embeds file2.swf

So file1.swf calls

var targetURL:URLRequest = new URLRequest("file2.html");
navigateToURL(targetURL, "_self");

I need file2.swf to have access to testVariable.

View 4 Replies

ActionScript 2.0 :: Loading THREE Separate .swfs Into THREE Separate Tweens

Jan 17, 2011

This is NOT the same as my last thread as i am after three and NOT ONE as last time. In the attached movie there are three seperate movies loading into three seperate tweens. Please note that i am happy with this movie as it is, and do not want to change anything about it except for the script itself. It refurs to three seperate clips "b.a","d.c" and "f.e". What i want is for the script to incorperate all three clips under one name of "mc" And instead of have three seperate widths, "width 1","width2" and "width3" i want the script to also incorperate all three widths and heights into just one name of "width" and one name of "height".

View 9 Replies

ActionScript 3.0 :: Tweening Menu - Sliding MovieClips Instead Of Separate Pages

Dec 8, 2010

I'm making a menu system that uses sliding movie clips instead of separate pages - [URL]. But when you click on the 'study at UWS' button, the nested slider kind of goes nuts, until you press on of the side buttons.

View 1 Replies

ActionScript 3.0 :: Making A Menu System That Uses Sliding Movie Clips Instead Of Separate Pages?

Dec 8, 2010

I've been trying to find a solution to this for a while, but I haven't had any luck.I'm making a menu system that uses sliding movie clips instead of separate pagesbut when you click on the 'study at UWS' button, the nested slider kind of goes nuts, until you press on of the side buttons.

View 3 Replies

ActionScript 3.0 :: Loading New Pages Without Pressing Button

May 13, 2010

I would like to be able to go from an html page by pressing an enter link then go to a 'preLoader' page which would then automatically load the mainPage. Originally my preLoader was the 'index' page for the site and had a button that would start the loading process to the main site which was entirely a Flash site. But I decided to add an html page chock-a-block with searchable text so people looking for the services this site offered could actually find it and make that the 'index' page. Anyway, I would like the preLoader page to start loading the next page automatically with no user events like mouse or keyboard events needed.

View 1 Replies

ActionScript 3.0 :: External .swf Not Loading On HTML Pages?

May 31, 2011

I'm having trouble and I was hoping someone could shed some light on what I'm doing wrong. I have a main .swf file from which external .swf files are being loaded through the use of buttons.When I preview the animation, everything works just fine. The problem occurs when I put the animation on the website where it needs to be. The main animation appears like it's supposed to, but the buttons are not successful in loading the external .swf files. I've made sure that all .swf files are on the server but still nothing.
 
Here's the AS:
 
stop();
var presentationLoader:Loader = new Loader();
addChild(presentationLoader);

[code]....

View 14 Replies

ActionScript 3.0 :: Keep Swf Constant On Various Pages While Loading Different Content?

Dec 9, 2009

I am using a flash banner to control the navigation between about 6 different pages. However, I would like the banner to stay the same while the different pages load around it. The banner is in the same place and has a short animation before displaying the nav controls. After clicking a link, the swf starts over again when the new page loads. Is there any way to embed the swf so that it stays constant (both on the webpage and on its own timeline) while the different html content loads beneath it? There are a few examples of this that I have found but I cannot figure out how to do it, for example [URL].

View 3 Replies

ActionScript 3.0 :: Loading External SWF With Multiple Pages

Jun 19, 2010

I am trying to load an external swf with multiple pages so that I can print it in flash this is what I am doing:

Code:
function loadImage(url:String):void {
// Set properties on my Loader object
imageLoader = new Loader();
imageLoader.load(new URLRequest(url));
imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imageLoading);
[Code] .....

I use the loadImage() function to load a multiframed swf movie then I use the function below to print but only one page comes out what am I doing wrong? How do I get it to print all the pages of the external swf?
Code:
function printScore(mc:MovieClip):void{
var myPrintJob:PrintJob = new PrintJob();
if(myPrintJob.start()) {
var printOptions = new PrintJobOptions(false);
[Code] .....
//Fail no printer

View 0 Replies

[CS3] Flicker Between Loading Separate SWF Files

Sep 16, 2008

I need to load separate SWF files depending on different flash buttons being pressed. The problem is I see a flicker inbetween SWF's being played. I think the flicker is where it goes back one frame - but I do not know how to solve this.

The first bike should scroll along to the left then stop, buttons should then appear that allow you to load the external/separate SWF files.

View 13 Replies

Loading Several MovieClips Into Separate Variables?

Sep 22, 2010

I have several Movie Clips in the Library which I need to be able to load and bring up on the screen randomly.The code below shows how I can load one of these, but to get a proper control ideally I would like to load them all in to an array or numbered variables so that they can be called from a simple piece of code and actioned one at a time.

My movieclips can all be called something simple like mc1, mc2, mc3, mc4 etc to make things easier.These need to be referenced in to an array mcContainer[.....] or as mcContainer1, mcContainer2........ so that they can be called easily.I just need to know the simplest way to do this and how i reference them, I have tried several ways like ["mc"+i] etc and nothing seems to work.

Code:

var mc:mcLogo=new mcLogo();
addChild(mc);

View 4 Replies

Loading Separate Swf Files Into One Swf With A Container?

Jul 15, 2011

there a more official name for a 'flash container' ? because very little results come up when i try and search for answers!can you load a container within a container, i'm thinking no but would like to clear that up also! for example i've followed this tutorial htm however when loaded up in a container nothing appears in the mouse over effect.. i've also tried loading jpegs into a swf via an xml which again works fine until i load it up within a container and nothing appears..

View 21 Replies

ActionScript 1/2 :: Loading Xml Into Separate Arrays?

Apr 15, 2009

The first two records of my XML file are below these are two of about 100.
 
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><coursesSummary><courses><year>2009</year><quarter>1</quarter><region>Central Courses</region><coursecode>3634500</coursecode><coursetitle>Bancassurance(BIP) 2- Selling Skills Course</coursetitle><coursesrun>1</coursesrun><maxplaces>10</maxplaces><numberattended>9</numberattended><splitbyregion>no</splitbyregion>

[code]....

View 7 Replies

ActionScript 2.0 :: Loading 4 Separate MovieClips

Jun 1, 2006

Ok this probably has to be the stupidest question ever asked here on kirupa but I�m going to ask it anyways. You see I have 4 containers (mc�s). and according to the user it loads a different swf into it so what I wished to know is how to put a loader for each .The following steps explain it better-

[Code]....

View 2 Replies

ActionScript 2.0 :: Loading Sound From Separate .SWF?

Dec 5, 2007

I know it has been done in Madness Interactive, which I did check up on and looked through the code and found nothing, as well as Googled a bunch of stuff, and still nothing.

View 3 Replies

ActionScript 2.0 :: Buttons Each One Loading 2 Separate SWF's?

Sep 26, 2003

OK on my main timeline i have 2 buttons each one loading 2 seperate SWF's. When I load the first SWF it works perfect. Now when I load the other SWF. on the same level it replaces the 1st SWF. Now comes the problem, when i go to reload the first SWF the error accurs. "256 levels of recursion were exceeded in one action list. This is probably an infinite loop. Further execution of actions has been disabled in this movie."

I understand the concept of the error. I just can not fix it. Is it a matter of having everthing on one SWF. file. Or is there an unloadMovie script I can use.I found this script from Actionscript.org. Posted it there...but didn't get ther help i needed.

[Code]...

View 4 Replies

ActionScript 2.0 :: Loading Xml In HTML Pages From Aspx Proxies?

Aug 20, 2007

I'm having a problem retrieving xml data from aspx proxies only when the swf is embedded in an HTML page on a staging server. I developed the swf on my local machine, providing urls to the proxy pages via full urls to my local machine (a la, [URL]. While this worked, I need the path to the proxy page to be relative to the html page, so that when it's on the site, it can still reach the proxy page.

The code looked like this when it worked:

var localProxyPageUrl:String = "http://machinename/sitename/proxypage.aspx";
var proxyPage:XML = new XML();
proxyPage.ignoreWhite = true;

[Code]....

PS: Forgot to mention that I tried even putting the absolute url in the 2nd version to the proxy page, to no avail... <sigh>

PPS: The proxy page is in the same folder as the swf & html page...

View 6 Replies

ActionScript 3.0 :: Combo Box Loading In Separate .swf Files?

Nov 5, 2009

I have a combo box that is loading in separate .swf files when an item is selected.  In the file that I'm loading in, there is a TileList component and a media player.  Before I added in those items, it was loading in, but now, this is the error that I get:
 
TypeError: Error #1009: Cannot access a property or method of a null object reference. at fl.containers::BaseScrollPane/drawBackground() at fl.controls::TileList/draw() at fl.core::UIComponent/callLaterDispatcher()

View 3 Replies

ActionScript 3.0 :: Loading Several MovieClips In To Separate Variables?

Sep 22, 2010

I have several Movie Clips in the Library which I need to be able to load and bring up on the screen randomly. The code below shows how I can load one of these, but to get a proper control ideally I would like to load them all in to an array or numbered variables so that they can be called from a simple piece of code and actioned one at a time.

My movieclips can all be called something simple like mc1, mc2, mc3, mc4 etc to make things easier. These need to be referenced in to an array mcContainer[.....] or as mcContainer1, mcContainer2........ so that they can be called easily. I just need to know the simplest way to do this and how i reference them, I have tried several ways like ["mc"+i] etc and nothing seems to work.

View 8 Replies

Flash :: Loading Swf From A Separate File Server

Dec 15, 2009

I am currently wondering if it is possible to load a swf that is sitting on another file server. I.e. I currently have a custom play bar swf which is embedded on a website (behind the company's firewall) which then loads swf content (currently in the same folder on the website server). The problem I have is bandwidth between remote sites is limited and streaming the swf content from the website server is not an option, however we do have a DFS set up to push all the swf content out to local file servers.

I have tried using a file:// path which works if you create a windows projector file however it doesn't work when embedded onto a website as it seems to try to access via http which the file servers are not set up for. So is it possible to get the play bar swf to load the swf content sat on a remote file server?

View 2 Replies

ActionScript 2.0 :: Loading .swf's Into Separate .swf's On An HTML Page ?

Oct 10, 2005

I have been trying to find recources on loading a .swf into a sepearte one.for instance:I will have an HTML layout with multiple flash movies. I know I can load movie into the .swf that the button is in.my question is. can I have the navigazion on the left side of the screen communicate with another random .swf to load the additional content?

View 1 Replies

ActionScript 3.0 :: Loading External Images Into Separate UILoaders

Aug 9, 2011

I need to load images into 3 separate uiLoaders.
1.background.png
2.title.png
3.advert.png
I can get it so that all three uiLoaders load the same image, but not 3 separate images....

View 5 Replies

ActionScript 2.0 :: Loading Scrolling Image Bar Into Separate Movie

Mar 9, 2004

I am loading a scrolling image bar into a separate movie and it works great with the coding I have managed to piece together (since I am not an AS master) the problem I am having is that when the mouse moves out of the scrollbar area it is still controlling the motion from the rest of the movie it is imported into. I am pretty sure that it revolves around a _root.drag._y script command but since I am still learning scripting I am not sure of exactly how to code this....the scrollbar is 90pixels in height and I want the images to keep scrolling at +2 when the mouse leaves the designated area, just not to move with the mouse movement when moving around below the scrollbar.

mc = _root.drag._x
if (mc>250and mc<360){
for (i=1; i<=nomc; i++) {
mx = getProperty("/a" add i, _x);
setProperty ("/a" add i, _x, mx+2);
[Code] .....
[URL]

View 14 Replies

ActionScript 2.0 :: OnRelease - Loading SWF Into Separate / Static Page?

Oct 3, 2006

This may be straight forward however I'm still new to AS and flash so am unsure of how to go about it. All I want is on the release of a button for an SWF to load into a separate static page rather than loading into a Container on the _root. How is this done with AS?

View 2 Replies

ActionScript 2.0 :: Load Separate Swf Files Into Main Movie, With Loading?

Jan 15, 2012

on (release) {
_parent._parent.buttonClick("movie name", _parent._name);
}

For the above script, am trying to load a swf file to load into an main movie file. This is for a flash website am working on, and i wanted to know if the above .Since having all the pages (6 pages) in one flash file, it would take long time to load, so am planning to have each of the 6 pages in an separate swf file and load these into main swf file, on click of a button, Also there needs to be a loading bar for each page.

View 1 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

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

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 :: Assign 5 Separate Dynamic Text Fields To 5 Separate Buttons?

Apr 18, 2010

What I need to do is assign 5 separate dynamic text fields to 5 seperate buttons and at the same time to those same five buttons i would like to add 5 images that i would  be able to change merely by swapping out the images in the file theyre in on the server.I would also like to get a nice transition between the images...ALSO i want to dynamically load the images for the buttons that will be used for switching from picture to picture(which im thinking i will be able to do after i know the how to do point the aforementioned things.) 

Through tutorials I've found around the net I've been able to get most of the parts together... but i get lost because what they show you for AS2 they don't for AS3 and vice versa, at least that ive seen.so... I guess my question is... would i need to set up 5 seperate dynamic text fields on the stage and then set each one of them to one of the corresponding button. If so what AS code would i need to use to do so.  And if not what would i need to do?
 
The other part of the question would be I know about the UILoader... would i be able to use it as my buttons and images, if so would i need 5 seperate ui loaders for both the Thumbnail buttons and the images or is there a way that would be better to do it?  and once i do that would i do the transitions using frames and tweens like with AS2?

View 2 Replies







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