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


Similar Posts:


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

Take A Snapshot Of The Homepage Of The Flash Site For Portfolio?

Jun 25, 2009

I have recently created a flash site and I am trying to update my online portfolio. How do I take a snapshot of the homepage of the flash site for my portfolio?

View 2 Replies

ActionScript 2.0 :: Make A New Portfolio Site In Flash?

Jun 3, 2004

i want to make a new portfolio site in flash... i was thinking on using as much server-side scripting as possible, to make in easier to update and add some features like flash guestbook/mail form and some other stuff... I was wondering... is it possible using php and mysql to add content to the portfolio without modifying the flash itself? Is there a tutorial regarding this? WHat i want, exactly is to be able to add photos, sites, prints and other stuff to my portfolio like i would add a post to this forum... the title being the title, the message being the description of the project and the pic i can attach being the photo itself..

View 14 Replies

ActionScript 3.0 :: Creating A Flash Portfolio Site?

Mar 4, 2009

Ok so I have bought books and watched hours of tutorials and its painfully obvious that I am not picking AS3 (or any scripting)up very well.

I am creating a Flash Portfolio site and I am curious about the correct architecture. If I have a central Nav with corresponding animations, should the whole site reside on one stage or a new stage per animation?

If there is a FAQ or tutorial on Kirupa that covers this (I might have missed it)feel free to simply direct me there.

View 1 Replies

ActionScript 2.0 :: Emulate The Thumbnail Scroll Feature?

Jun 16, 2005

i am trying to emulate the thumbnail scroll feature of this site[URL]. it is at the bottom of the screen of every gallery...i want to smoothen the movement of the thumbnails animation... meaning if the first thumbnail moves a little or half way of its tween but have not reached its destined position, the next thumbnail on the left or right will begin to tween... same goes to the rest of the thumbs... something like overlapping animationi gone thru the fading grid tutorial and understand the logic behind the smoothing code and thought it might work for my case but it doesn't seems to work.... using the additional "continue" function which i tried....i just need to tweak this part and i'm on my way to the next part of my project...

View 1 Replies

ActionScript 3.0 : Build A Portfolio Site With A 3D Rotating Effect?

Apr 20, 2009

I am trying to build a portfolio site with a 3D rotating effect.I am new to Papervision so I might be doing something stupid with my code. Anyway, this is my code, but nothing shows up on stage when I load it:

Code:
private function init3D():void {
opaqueBackground = 0xFFFFFF;
camera.focus = 100;
camera.zoom = 11;

[code]....

note: assets is an array of movieclips that I created containing my images loaded from an XML file.

View 2 Replies

ActionScript 2.0 :: Using Scroll Effect For Thumbnails In Flash Portfolio

Jan 2, 2010

I really want to use this panning/scrolling effect for some thumbnails in a flash portfolio. My only problem is it's AS3 and I'm using Flash 8 (AS2). I've tried re-working the code, but with no luck. It's the EventListener that is confusing me!

Code:
var verticalCenter:Number = stage.stageHeight / 2;
var limit:Number = stage.stageHeight - content_mc.height;
var speed:Number = 0.1;
var scrollY:Number = 0;
addEventListener(Event.ENTER_FRAME, scrollContent);
function scrollContent(e:Event):void {
scrollY = - speed * ( mouseY - verticalCenter );
content_mc.y+= scrollY;
if (content_mc.y>0) { content_mc.y= 0;}
else if (content_mc.y< limit) { content_mc.y= limit; }}

View 3 Replies

ActionScript 2.0 :: PHP - Making Own Portfolio Full Dynamic Flash Site

Apr 15, 2005

i'm making my own portfolio full dynamic flash site. And animation and interface is ok. But i don't know about connecting to database. And i read about PHP+AS. And i couldn't get a good point.

View 4 Replies

ActionScript 2.0 :: Full Screen Flash Site With Scroll - See The Complete Site

Feb 25, 2012

i have made a site in flash. stage size 955x600 i have exported it as fullscreen with no scale. the problem is that if i browse the site with a resolution of 800x600 (760x420 if i'm not wrong), the browser dont' add scrolls and its impossible to see the complete site. How can i fix this without resizing the site. i want the users to see with the proportions that i have now.. ijust want a scroll on the browser.

View 2 Replies

Creating A Gallery For My Portfolio Site - When The Thumbnail Is Moved, The Rollover That Would Be Moves ?

May 26, 2009

I'm working on creating a gallery for my portfolio site. I have thumbnails of all my work. I've turned them into button and made it so when you rollover it, a larger preview of it appears with a description of the piece, off to the side in a designated area. Instead of making my stage larger or creating more pages to contain all my thumbnails, I made a vertical scrollbar. The scrollbar works just fine. The problem is when the thumbnail is moved, the rollover that would be moves in relation to it.how can I absolutely make sure that any rollover I create with a button is where I want it to be, no matter where the thumbnail moves to?

View 10 Replies

ActionScript 3.0 :: Link (code) Swf Pages To Each Other (through Buttons) When Making A Flash Site Or Portfolio?

Nov 2, 2010

how do you link(code) your swf pages to each other (through buttons) when making a flash site or portfolio?

View 5 Replies

ActionScript 2.0 :: Sen's XML Portfolio -how To Make Page No's

May 25, 2005

I've been through Senoculars XML tutorial which can be found here and went further to read another thread (here ). about extending the Portfolio to allow for more thumbs--implementing a scrollbar-to Scotty This brings me to my questionQ: How can I do away with any scrolling and implement page numbers instead? So users could click the page numbers to go to the next lot of thumbnails in the section instead of scrolling up and down. The image below illustrates what im trying to achieve. As you can see I would like it to show current page, and overflow for page numbers that wont fit within the area dictated on the stage (rather like how threads work in this forum)

View 9 Replies

ActionScript 2.0 :: Page Numbering A XML Portfolio?

Jul 7, 2005

There was a post about a month ago about page numbering what i THINK was senocular's xml portfolio. with the recent loss of some posts, this was wiped out as well. does anyone have it archived anywhere or does anyone have the file that was being passed around in that post?

View 1 Replies

Professional :: Have A Page-turning Feature In Flash?

Jul 10, 2010

does Adobe have a plug-in for Flash CS4 or what would you recommend?

View 6 Replies

ActionScript 2.0 :: Flash Portfolio And Working On 'work' Page

Feb 11, 2003

i am making a flash portfolio and am working on the "work" page.i have a bunch of links.i would like each link to open up a seperate window containing a graphic that is already in the library.so basically, what is the script to link to a graphic already in the library and have it open in a seperate window.(i just said the same thing twice.....)and also, is there any way to customize these pop up windows?

View 3 Replies

ActionScript 2.0 :: Navigation System Inside The Portfolio Page Not Working

Jul 1, 2007

I am creating a site, and I have this navigation system inside the portfolio page. But it is not working. So it is like this it is built. Default.fla is loading portfolio.fla inside a movie clip loader. and the portfolio.fla has a navigation system for different portfolio pieces. I have set up the first one to work (dasa design). so, I need the outro to play of hm1.fla (first file loaded) and then play the intro of the Dasadesign file. I know this has something to do with the depth and so, but I have tried many ways but not succeeded. files are found here! [URL]

View 3 Replies

ActionScript 2.0 :: Create A User Login / Reg Page And Also A Shopping Cart Feature?

Oct 2, 2009

Good tutorials which show how to create a user login/reg page and also a shopping cart feature .

View 0 Replies

Adding Scroll Pane To Flash Page / Scroll Up / Down

Nov 5, 2009

someone told me you cant have the page scroll up and down , but i just seen a template that has it URL...Any idea on how i would put that into my work? Is there a tutorial , or something im missing ?

View 6 Replies

ActionScript 2.0 :: Load A Different Page For The Flash Player To Scroll Up All The Way To The Top Of The Page Itself?

Apr 25, 2007

Im working on a website for school, and im doing it through flash. The server ive been given is being taken up by thousands of pages, so its slow. Instead of loading each page through HTML, ive decided i could do a seperate frame for each page. However, to reach the menu at the bottom, you have to scroll down. Is there any way to make it so that when you click a button to load a different page for the flash player to scroll up all the way to the top of the page itself?

View 1 Replies

ActionScript 3.0 :: Flash - Navigation Buttons That Scroll To A Certain Section In A Site?

Feb 2, 2011

I have a feeling I will be a frequent visitor.creating a site for a client. The entire site will be in AS3, we're doing one long page with navigation that will always sit in a box to the left. When you click on a button in the nav, we want the site to scroll down to a certain section.

View 2 Replies

ActionScript 2.0 :: Save A Page - Add Some Sort Of A Password Or Save Feature To People Can Type In The Password

Sep 23, 2008

Im new at actionscript, and I am making a very project. Basicly, I have some thing were there is a page you can get to by beating other parts of the 'game'. I want to add some sort of a password or save feature to people can type in the password of something at the opening screen and jump to that page.

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

Why Doesn't This Page Scroll

Jul 7, 2009

I was looking at this site:[URL]and i noticed that on a smaller screen with a lower resolution, the page simply moves in, instead of it staying at the normal size and having a scroll bar on the bottom. what extra code would i need to insert in order to do this?

View 1 Replies

Top Of Page Next Frame Within A Scroll Bar Movie

Jul 22, 2011

Im making a simple website tutorial using flash.

I have all the frames within a Movie symbol with a scrollbar to navigate the page as its quite long.

The trouble i'm having is when you are at the bottom of a page and click to the next page it will show the next page at the exact same position as the previous.

Is there a script so where when you click to the next page it returns the top?

I have included a simple fla file to explain what I mean. (CS3)

[URL]

View 4 Replies

ActionScript 2.0 :: Auto-Scroll Down Page?

Oct 29, 2011

I have five buttons in my site which means five pages. I want to put auto scroll down effect in one of the page. So that, when one of the button is clicked on, it automatically scroll down to a place in the page, without the user scrolling down by himself. I'm using flash and actionscript 2.0

View 1 Replies

Professional :: Text Scroll Across The Page?

Mar 22, 2011

I'm using actionscript 2.0, trying to make my text scroll across the page like a "news headline". Thsi is the code that I have been using (see below), which works. However, I want my text to scroll continuously (non stop). The code that I have right now, once text leaves the zone, it's gone.

onClipEvent(enterFrame) {_root.scrolling._x = _root.scrolling._x + 3;}

View 2 Replies

Make Flash Page Scroll To Top?

Mar 14, 2010

I have an AS2 site where all the pages are different lenghts and have navigation at the top and the bottom.

When you click on the bottom navigation on one of the longer pages in order to get to another shorter page, you land on the same place where the bottom navigation was on the page before; ie you land at the bottom of the page.

How can I get around this so that every time you land on a new page it has scrolled to the top?

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 :: 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