Professional :: Connect Different Swf Files Into One Site?

Jan 17, 2011

I need to make this site like presentation for my next exam. I found a good template for a slide show. The presentation will be structured like this: 
 
MAIN PAGE with sidebar which links to: slide one with slideshow 1slide two with slideshow 2slide three with slideshow 3slide four with slideshow 4 due to the nature of the code thou i cannot put the different slideshows into the same .swf file in different scenes (i copied and pasted them in each scene and modified the actionscript so they would refer to different pictures) because they will create conflict with each other. now they question is can i use the sidebar to link to different swf files but still make it look like it was just one big swf?

View 5 Replies


Similar Posts:


Professional :: Connect .swf Sections In Site?

Aug 17, 2011

I am creating a website with different sections (home, portfolio... - each of them has a full-screen looped video as a background)I made a separated .swf for each section in order to reduce their size.I just need to know how can I connect these .swf in order to navigate from one section to any other in the website.What would be the easiest way to do so?Is there a way to do it using the available Actions/code snippets included in Flash CS5?

View 8 Replies

Published Files Work On Local Site But Not On Remote Site?

Nov 4, 2009

the flash4 published set of files, with a variety of skins tried, works well on the local drive, even when moved to a different folder structure. when index.html is opened on the remote web site, the browser (firefox3 and ie7) displays the player conrols and a rotating horizontal barber pole, green and black, but no flash video.some of the skins i've used are: SkinOverPlaySeekFullscreen.swf, nOverPlayStopSeekCaptionVol.swf and SkinUnderPlay.swf. all work locally but do not play the .flv file on the web site. no problem playing flv movies on the remote web site if the file set is created by dreamweaver.

View 8 Replies

Flash :: Embed A Facebook Connect App In A Hosted (3rd-party) Site?

Jun 2, 2011

We are writing a new social app that connects to FB using FB connect (actually, it's in Flash so we're using the FB AS3 SDK, which uses the FB Javascript API under the hood AFAIK).

When the flash app is served from our site - it works fine.But when we try to embed it in a 3rd party site (using an Iframe that points to our site) the following happens: when we try to perform a login to FB using the AS3 function Facebook.login(onLogin, opts), a small browser-based login to FB pop-up comes up, but it has the following error first

Or is it possible that FB don't support FB connect apps that are embedded in 3rd party sites?

View 1 Replies

ActionScript 3.0 :: How To Connect 2 Swf Files

Aug 30, 2010

i have one main swf file now on clicking btn it will play a url video. once video finishes i want to play that main swf file start playing from that place.

View 7 Replies

Media Server :: Connect .flv Files To The FMS?

Jun 25, 2009

OK... I had my host install FMS onto my server for me.  I am a little lost on how to connect my .flv files to the FMS.

View 4 Replies

ActionScript 3.0 :: Connect / Load Swf Files For Website?

May 12, 2010

I'm a bit of a newbie at Flash and building my first website. I've built all the pages individually as different files and now I want to use AS to connect them all and link from my main page to the other files using buttons.

I thought I was on the right track with this code, but it returns an output error (both below).[code]...

View 1 Replies

ActionScript 3.0 :: Connect Multiple .as Files To The Document Class (.as)?

May 10, 2011

Is there a way to connect these three .as files (ThreeD.as, TwoD.as and InteractiveD.as) to the document class (MayGallery.as)?This is how I want my code to do.Click on the work btn, all the thumbnails from ThreeD.as, TwoD.as,and InteractiveD.as appear on the screen. These three .as files, I have used external xml file to load in the images.I tried to use include "ThreeD.as",but I got an error saying package is not nested in ThreeD.as. I don't know what that means.[code]

View 1 Replies

ActionScript 2.0 :: Prevent Users From Viewing Site And Then Simply Going Into Their "temporary Internet Files" And Stealing Swfs And XML Files

Feb 5, 2009

I am trying to prevent users from viewing my site and then simply going into their "temporary internet files" and stealing my swfs and XML files. I have been using a great .PHP code to stop this but now I am working on a server server that only uses .aspx files. Does anybody know of a way that I can stop files from being stored in the "temporary internet files" folder. I have encrypted the files but this is not good enough.

View 0 Replies

Professional :: Site Attack In Flash Site

Dec 14, 2010

A client of mine has had 2 sites (both Flash sites) attacked over the last 12 months, so he's been asking: should he go for a static HTML site or stick with a Flash site? Is there ways to make a Flash site more secure?

View 1 Replies

CS3 Combine Many Fla Files In One Site

Apr 29, 2009

I have multiple .fla file (small online invitations etc) and I am trying to combine them as part of an online portfolio.

IS there a quick way of simply placing a .fla movie into another or do I have to use the swf.

And am I being silly - should this be done using Dreamweaver as the 'container"

View 2 Replies

ActionScript 2.0 :: Downloading Files From Site?

Sep 26, 2005

here is what i am trying to do. i would like to post action script files onto my server space for people to download, which i can do. Question is, is it like a print command for them to download the files to there computer for use? or what is the best way to go about this? The files are inside a folder called action script and then the sub folders depending on the file you are looking for.

View 1 Replies

Actionscript 3 :: Connect To AMFPHP - NetConnection.connect() Returns TypeError: Error #1009

Dec 8, 2011

UPDATE: Now I've moved the AMFConnection var declaration to outside the functions in Main, and commented out some trace() commands, and now it gives new errors:

Error #2044: Unhandled NetStatusEvent:. level=error, code=NetConnection.Call.BadVersion
at AMFConnection/init()[/Users/Jan/Downloads/amfphp1/AMFConnection.as:32]
at AMFConnection()[/Users/Jan/Downloads/amfphp1/AMFConnection.as:23]

[code]...

I'm trying to connect to AMFPHP on a server (with Flash AS3), and the swf borks when it reaches the .connect() stage. To make things easier (?) and more reusable (?), I've put all the NetConnection mechanics into a separate class, AMFConnection, which I call from the Main document class like this (details changed):

public function testConnection(e:*=null):void {
var conn:AMFConnection = new AMFConnection();
conn.table = "some_table";

[code]...

AMFConnection actually starts the connection and calls the AMFPHP service with the function gogogo(), and here's where the connect() NetConnection function just won't work. Here's the main section of the AMFConncection class

private var _netConnection:NetConnection;
private var _responder:Responder;
function AMFConnection()

[code]...

It also fails to display the stage, instead showing the loading dots. Now, eventually I'm going to move this application to the same server as the AMFPHP service, but even when I try it there with a relative url, instead of an absolute one, it still breaks down at connect(). I've tried changing the publish settings from local only to network only, to no avail.

View 3 Replies

ActionScript 3.0 :: Include PDF Files Within A Flash Site?

Dec 2, 2008

Is it possible to include PDF files within a Flash site that can then subsequently be downloaded by users of the site? Or does this have to be done through dreamweaver or a combination of both?

View 4 Replies

ActionScript 3.0 :: Downloadable Files Within Flash Site?

May 8, 2011

I am building a website for a composer and he wants his users to be able to download a jpg of him for use in programs and a pdf with a short biography for the same use. I thought I could do this by creating a new URLRequest, but when i click it just opens a new window in Firefox. Here is the code I was using.

programPhoto_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseClick);
function mouseClick(event:MouseEvent):void{var request:URLRequest=new URLRequest("pictures/bio_pic.jpg");navigateToURL(request);}

[code].....

View 5 Replies

ActionScript 2.0 :: Put Some Files On Site That Can Be Downloaded By Visitors?

Jun 9, 2010

i would like to put some files on my site that can be downloaded by visitors. what's the code I've to put on my "download" button ?and where do I have to put the file that should be downloaded ?

View 2 Replies

ActionScript 2.0 :: Allow Visitors To Download Some Files On Site?

Oct 14, 2003

I would like to put some files on my site that can be downloaded by visitors... So, what's the code I've to put on my "download" button ? And where do I have to put the file that should be downloaded ?

View 11 Replies

Professional :: How To Connect MSSQL With Flash

Mar 20, 2011

How to connect mssql database to flash?I have table tbl_flash in which some information that I want to show in a flash, but only the ones you want to use "where"

View 3 Replies

Creating Link To Host AS Files On Site (Error 404)

Dec 1, 2009

Why creating a text link to a .as hosted on my site creates a 404 error? If I change it to .txt it works fine but I'd really like the user to be able to open the file directly into Flash.

View 3 Replies

Professional :: Unable To Connect A Shape To A Symbol?

Feb 23, 2010

When using the bone tool, I have been fairly successful in working with either a shape or a selection of symbols.  However, I am unable to connect a shape to a symbol.  Is this possible with the bone tool or am I barking up the wrong tree?  If not, is there some sort of work-around when part of the animation is constructed from symbols and part is constructed from shapes?

View 1 Replies

Professional :: Connect Flash With Access Database

Aug 18, 2010

I have a map as a button in flash and a database in access, how can I show the data in asscess in flash , now i know there is no a direct link from access to flash and I have to use PHP, ASP, etc.... But really I am not a programmer and I don't want to be .. so any easier way to do this?

View 7 Replies

Professional :: Connect Flash To Php With A Simple Type In A Name?

Sep 11, 2011

how i can connect flash to php with a simple type in a name and submit it through flash..yes there is downloadable class's but i couldn't get them working and integrating together properly, can someone refer me to where i can learn a BASIC of it... i know brief php already.

View 1 Replies

Load Files To A Flash Site Dynamically From A Remote Server?

May 18, 2009

how to load files to a Flash site Dynamically from a remote server. The first part was showing how to load a .txt file.
 
I have created a dynamic test field and give it an instance name of myTextArea. Then I uploaded the .txt file to my server in a testing folder. At the beginning of the paragraph in the .txt file I put homeText= Then going back to Flash CS3 I made an Action Script layer and entered the following code there;
 
[Code]....
 
But when I go to test the movie I get a "undefined" error (I guess it is an error) where the text should load in the dynamic text field.

View 7 Replies

Flash :: Professional - Publishing Error CS5 App To ITunes Connect

Feb 25, 2011

I have made an App in CS5. I have a release version made, ready to go. It is running on my iPhone with no problem. The error from iTune Connect is 'Application failed codesign versification. The signature was invalid, or it was not signed with an Apple submission certificate.' I am the developer, within a Company account on iOS Developer Account. what could be causing this error and how to fix it?

View 2 Replies

ActionScript 3.0 :: Extract Filenames/urls Of All The Files Within A Folder (in The Same Site Directory)?

Nov 11, 2011

I'm creating a simple online, Flash-based music player; the user clicks on a song in a DataGrid and then it plays, simple. I will display the song information with the ID3 method in the 'sound' class, but I don't want to hard-code all the songs into the ActionScript, because I might change them. I have created a "tracks" folder in the site directory; how can I extract the names of the files within that folder without knowing how many files there are, and inherently, without knowing the URLs?

View 4 Replies

Flash :: Playing FLV Files On Local Share Drive From Intranet Site?

Jul 1, 2010

We would like to build a flash video player into our corporate intranet site, currently we are evaluating JW Player and have come across and issue accessing the FLV files stored on a mirrored share drive that all users have access to on the local intranet.From what I can tell the Adobe flash plugin will not allow a SWF file hosted 'online' (intranet) to access a shared directory that the user has access to. Is there any way around this?

View 1 Replies

Allow Users Of Site To Download Large Volumes Of Image Files From Amazon S3

Jul 27, 2010

My website allows users to upload photographs which I store on Amazon's S3. I store the original upload as well as an optimized image and a thumbnail. I want to allow users to be able to export all of their original versions when their subscription expires. So I am thinking the following problems arise.Could be a large volume of data (possibly around 10GB)How to manage the download process - eg make sure if it gets interrupted where to start from again, how to verify successful download of files.Should this be done with individual files or try and zip the files and download as one file or a series of smaller zipped files.Are there any tools out there that I can use for this? I have seen Fzip which is an Actionscript library for handling zip files. I have an EC2 instance running that handles file uploads so could use this for downloads also - eg copy files to EC2 from S3, Zip them then download them to user via Flash downloader, use Fzip to uncompress the zip folder to user's hard drive.

View 1 Replies

Actionscript 3 :: Use NavigateToUrl To Access Html Files Relative To The Site Root?

Oct 26, 2010

I try to make an intro animation inside a website, and when the animation is done or when you push the Skip button, it navigates to the index.html file from the site root.So I have in my site root the folder Flash, where the intro.swf is, and within the intro.swf I called the navigateToURL(new URLRequest("..index.html"), "_self"); method. Now it's not working.

View 3 Replies

ActionScript 3.0 :: Have Some Flash Banner SWF Files Play Within The Portfolio Page Of Site

Jan 30, 2009

I've been working on my first full blown flash site for a few weeks, tackling problems as I encounter them, and I've learned a lot...but sometimes the simplest things I cannot figure out for the life of me. All I am trying to do is have some flash banner SWF files play within the portfolio page of my site. I don't want them to open in a pop up or anything just play within the page when the link on my site is clicked. I figured it would act like a movie clip and I could just drop it onto the stage, but when I do that it doesn't look right, loops continuously, and is not interactive. How can I make this work?

View 0 Replies

Professional :: Connect A Page In Flash With Pages Made In Dreamweaver?

Aug 26, 2009

So I'm trying to create this website in which the first page is made in Flash and the rest are made in Dreamweaver. how to actually connect them so that works? I know how to put something made from Flash into a Dreamweaver page; should i just do the same thing?

View 6 Replies







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