ActionScript 2.0 :: Intro Page To Flash Site?

May 15, 2006

I made 3 seperate animations for my site (the only difference in them is the words used are different). Is it possible for me to make it so that the animations change with each person visiting the site - so lets say one person enters the site and sees the intro animation with (hypothetical) word "welcome" - the second time the site is visited, the visitor sees "willkommen", the third time its "bienvenue". Is that possible? How can I make it?

View 5 Replies


Similar Posts:


ActionScript 2.0 :: Linking To A Html Page Within The Site From An Intro Swf?

Sep 3, 2009

I am having a strange delay issue when clicking on a button. My code is simple and is as follows:

fight.onPress = function() {
getURL("pages/pageOne.html", "_self");
}
stop();

-fight is the instance name of the button

-the code is in the actions layer as it should be

-there is no other AS within the animation

The problem is when the animation finishes and a "click here" button comes up, it takes several clicks for the button to actually work. It eventually goes to the url but only after multiple clicks, between 1 and 8. The hit box of the button is larger than the button itself so its not the empty counters in the letters or spaces between words.

View 2 Replies

ActionScript 3.0 :: Flash Intro (flv Imported) As Intro Page?

Apr 11, 2010

I have a movie clip that I imported into flash, used a skin and have a nice little player for this website intro. I want to proceed to the sites home page upon completion of the movie. Searched but the best I could come up with was;
 
player.addEventListener("complete",function (event:Object) { trace("doneVideo");new URLRequest("my link");});

View 5 Replies

Make A Flash Intro Page Continue As The Home Page?

Oct 13, 2009

So I am doing a flash intro page, but the intro becomes the home page, as in all the pieces come together to create the Flash home page, so that there is just one file for the home page that includes the intro from Flash..how do I make it so that all the parts on the page stay there indefinitely, because right now after a certain amount of time, they disappear due to using the timeline in Flash.

View 4 Replies

Professional :: Adding Flash Intro To Existing Site

Feb 15, 2010

The index file is .php. Now I've got this little Flash animation that we want to run first, then when it's done go to his website. When I try to add it to the top of the index page all that happens is the site loads like in normally did but with the Flash movie at the top instead of being another page. What do we need to do to have it load on it's own first?

View 1 Replies

ActionScript 3.0 :: Download The Home Page After End Of Flash Intro?

Feb 10, 2010

what is the code for accessing automatically the homepage of my website after the end of the flash animation.[URL]...

I am not a specialist with flash, but I have read that classical getURL code does not work in AS3.

View 3 Replies

ActionScript 2.0 :: Auto-load The Home Page Once The Flash Intro Finish?

Mar 11, 2009

I am having trouble by loading my homepage after my flash intro ends.Does anybody knows the ActionScript for this move?

View 5 Replies

Flash8 :: Replay Intro Or Visit Site Button?

Nov 5, 2009

I tried searching this but could not find. I am complete newbie to flash intro and I bought a Flash Intro template.At the end of the flash movie, i was able to auto-redirect the page to my homepage by using getURL function but what I am looking for is that:At the end of the movie there should be two buttons:"Replay Intro" and "Visit Homepage" so that visitor can click on replay to see intro again or click on visit homepage which will take him to homepage.

View 3 Replies

ActionScript 1/2 :: Preloading Main Site Swf And Intro Swf Within One Preloader?

Jun 26, 2009

I have a full flash website which is broken down into:
 
- Main movie which contains navigation and interface components

- Several content movies which are loaded into the main movie on demand

- An intro movie which is around 3MB in size; its a full CG movie.
 
At the moment the main movie preloads and then the intro movie preloads afterwards in a sequence; like so:
 
Main Movie > Intro Movie > Content Loads
 
There is a skip intro option which will skip the intro movie step and jump right to the content load once the main movie has loaded.
  
My client wants me to do something which is proving very difficult and I am starting to wonder if its even possible as searches on the net have given results which don't really work properly.
  
Here is what I need to do:
 
When the main movie is requested, its preloader appears which it has a load bar and a "skip intro" button. The difference being, this preloader will be loading the main movie AND the preloader; which the load bar representing both movies load progress.
 
To complicate matters, if the skip intro button is pressed, the preloader needs to drop the intro movie from the equation and just account for the main movie & thus skip the intro; straight to the content.
  
The way I have tried to do it is to have a preloader code in the intro which sends the total size and bytesloaded back to the main movie which deals with those values, adding it onto its own size. This is proving cumbersome and although appeared to be working, isn't working propery.

View 1 Replies

ActionScript 3.0 :: Movie Clip As Intro Page?

May 10, 2010

I have a movie clip that I uploaded as an .flv (so I could have the sound) as something on the timeline. I set up a button below the video to skip to the website (or welcomePage)However, I cannot get the button to work for some reason. Below is my script, am I missing something? Also, for whatever reason, now my movie clip does not autoload when it did before...I also do realize that I could probably condense the timeline, but I am just working teaching myself, so bare with me.
 
stop();
home_btn.addEventListener(MouseEvent.CLICK, welcomePage);resume_btn.addEventListener(MouseEvent.CLICK, resumePage);reel_btn.addEventListener(MouseEvent.CLICK, reelPage);photos_btn.addEventListener(MouseEvent.CLICK, [code]....

View 3 Replies

How To Make Intro Slideshows For Main Page Of Website

Aug 18, 2009

I have designing my website with Dreamweaver and am wondering how exactly I can make a non-interactive slideshow for my main page, preferably in Flash or Fireworks. I want the slideshow to begin each time the main page is loaded. I have been using Simple viewer to make my galleries because I don't know html, I'm a photojournalism major and happened to get the entire cs4 suite with my macbook. I'd like to learn to put more than PS and Indesign to good use.

View 1 Replies

ActionScript 3.0 :: Flash Site With A Blog Page

Jan 4, 2010

I'm looking to build a Flash site and would like to have a page for a blog so as to upload information, videos and maybe user comments (undecided of yet).

How would I go about this? Should it be done in Flash or would it be better to embed HTML into the Flash?

View 12 Replies

ActionScript 3.0 :: Intro Animation - Creating Image Until Whole Page Drawn

Nov 6, 2010

I want the page to be drawn as in intro animation. For example the screen is blank at first and then the image is drawn from the outside in a thin line until the whole page is drawn and then fade the lines into the actual design.

View 5 Replies

Professional :: Add Skip Intro Button To Open Home Page ?

Apr 24, 2011

I make two flash project and I export it swf

1- intro

2- home page
 
I want to add skip intro button to open home page otherwise I want the intro jump to home page when finish.so i add button on intro (skip intro) and write the following:
 
this.createEmptyMovieClip("homee",1); by the way i cant understand what this number meanhomee.loadMovie("home.swf");but what happened is that the intro still looping in home page

View 1 Replies

ActionScript 2.0 :: Finish The Intro Automatically Load The First Page Of The Project?

Sep 10, 2005

I'm new in flash and I taking a basic flash class in my school, I did a project in which have a basic intro, well the problem that I have is this, I want after finish the intro automatically load the first page of the project, how to do that? edit: the intro and the flash project are in separated SWF's

View 9 Replies

Have A Site That Embeds 3 Flash Movies In An HTML Page?

Nov 8, 2011

I have a site that embeds 3 flash movies in an HTML page. The site works in all browsers on Mac and PC except IE 7, IE8, and IE9. (I'm not worried about IE6).

View 1 Replies

ActionScript 2.0 :: Incorporating Page Flip Functionality In Flash Site?

Dec 3, 2009

Got a request to incorporate a page flip functionality in a Flash site.

View 1 Replies

Flash :: Professional - Reduce File Size Of Opening Page In A Site

Sep 27, 2011

I'm using the Flash CS4 IDE, and the first page of my site takes a lot longer to load than I want it to.  So I wanted to go through the varied images / symbols / movie clips / sounds and so on to see where all the memory is being chewed up. When I go into my library, however, I can see the Name, LInkage, usecound and Type of my elements, but no mention of file size and I can't seem to find any right click menu that lets me add file size to the list of details being displayed. Is there a way to make it show file size?  Or some workaround? And are there any best practices to reduce file size aside from using symbols for anything that's used more than once and reducing image and sound quality?

View 4 Replies

Javascript :: Redirect To A Html Page When Site Opens In Non Flash Browser

Feb 29, 2012

How do I redirect to a html page when my flash site opens in non-flash browser?

Here is the code I am curently using

<link rel="shortcut icon" href="/77east.ico" type="image/x-icon" />
<!--[if lte IE 8]>
<script type="text/javascript">window.location = 'ebrowser.html'</script>

[Code].....

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

ActionScript 2.0 :: Make A Flash Product Displayer For The Main Page Of Their Site?

Dec 22, 2009

I have to make a flash product displayer for the main page of their site. They don't know a whole lot about web development (but they know enough), so they keep asking me to do things that I keep telling them I can do.Well, I can't. What I need the thing to do is have the user hit a button, and the product change. They can also hit the back button for the last product. The previous and next product will be visible but not touchable. Almost like a scrolling wheel of products.

View 0 Replies

ActionScript 2.0 :: A Link To A Specific Part Of Flash Site, Not Just Home Page?

Feb 20, 2008

I'm trying to make a link from one flash site to another, but not just to the home page of it, but to a specific part of it. For example, I run and am wanting to make the direct links from the websites of the seven artists involved (mostly flash sites) to their specific page on thesite... does that make sense?

View 2 Replies

ActionScript 3.0 :: Website Intro / Nav Change - Frame Work Of The Gallery To Draw Itself In As The Page Loads

Apr 10, 2010

I'm relatively new to Flash and AS3. I've created a website thats a dynamic photo gallery. The site is self-contained (no scrolbars) and I want the frame work of the gallery to draw itself in as the page loads. The frame work is just simple lines and drawing objects on the maintimeline. Do i combine the lines (the "frame work") into a mc and then somehow use the deco tool?  How can I acheive this in action script?

View 3 Replies

ActionScript 2.0 :: HTML Page Opens Flash Site - Loads External Swf File

Jul 11, 2005

I have an HTML page with buttons. Each button needs to have a getURL to open the Flash site, but then somehow, needs to also load the appropriate swf into that Flash site... My reasoning is because I have some scripts under my site that need to be in HTML (or PHP) for search engines, that way I don't have to do the whole site in HTML.. I hate having a HTML index page, but it's the only solution I could come up with. So, when a visitor selects any of the navigation buttons, I don't want them to have to select that button again, when the Flash site loads. how to do this for Flash 7 / AS 2.0? Or if there are any posts here about it?

View 2 Replies

Professional :: FLV And Skip Intro - Make Note Of The Actual Time Or Keyframe In Which The Intro Completes

Jun 14, 2011

If I have an FLV that I've output as SWF with skin to have embedded into an HTML page, and now a 'skip intro' is needed - though I'd have to make note of the actual time or keyframe in which the intro completes...How is this possible? Clearly, a button would need to be added for that kind of interactivity?

View 3 Replies

ActionScript 2.0 :: Create A Login Page In Flash Site That Relates To Information Input To A Mysql Database

Oct 11, 2006

I need to create a login page in my flash site that relates to information input to a mysql database. after the submit their information we want to send them a link to a differnt flash page with a login screen they will use their first name and a password (already in our database) to gain access to this "new" page. on that page there will be a welcome message that says "Welcome, User First Name" so I guess i have two questions

1: how do i set up a login page?

2: how do i pull that login info to a welcome page?

View 7 Replies

ActionScript 2.0 :: Dynamic/Database Flash Site - Create A Duplicate Page That Refers To The New Text And Image?

Mar 6, 2008

I have a client that is wanting me to create a flash website in which they can add products pages (product info, images, etc.) themselves after the website is completed. I will setup up the first few products then they will do the rest. Would I wanted to go with dynamic text and empty movie clips loading the images? If so how could I have this create a duplicate page that refers to the new text and image?

View 3 Replies

Frames :: Transitions From Page To Page And From Frame To Frame All In On Site?

Jan 29, 2010

how do transitions from page to page and from frame to frame all in on site, and i'm lost in the codes  this is an exemple that i did in attachment, i want to be able to click in the different buttons bur a lot of thinks do not work. In the portfolio section i create a move clip that works well alone, bur when i integrate it with the home intro it didn't work properly.  Hope that someone will be able to help me on that one, cause i think that this will help me a lot to understnad the basic transitions with buttons (frame to frame and page to page).

Attachments:
NextFramePratice copy.fla.zip (10.1 K)

View 2 Replies

How To Add Scroll Feature To One Of Page On Portfolio Site

Jun 16, 2009

I'm working on building a personal portfolio site right now. I wanted to add a scroll feature to one the pages. I wasn't sure how to build it, so I down loaded one off here [URL] and just plugged my own graphics into it. It scrolls up and down just fine, but when I try to put a mask over it, it doesn't work. In the content the author wrote for his movie he says "Note: If you want to have a mask over the content: copy MC:frame and make it a mask for MC:Page. If you do so, notice that "non-anti-alias text" is not possible anymore. This is a common thing in a Flash Movie. I keep trying that and it just blocks everything out all together. So what am I doing wrong?

View 1 Replies

ActionScript 3.0 :: When Movie Ends Go To New Page In Site

May 7, 2009

I have a simple Flash animation which I have imported to a page in my DW doc. When the anim finishes, I would like the page to go to a different page in the same site. Without clicking. I assume I have to write some AS on the last frame of my FL file, correct?

Something like this:
var link:URLRequest = new URLRequest("page.html")
stage (or something?).addEventListener(what goes here.ENDMOVIEor something like that, endMovie);
function endMovie(event:WhatGoesHere):void {
navigateToURL(link);

View 2 Replies







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