Hey I’m new to the site but have been looking at the site for a while and like the forums, you guys seem to be really helpful, I want to attempt to make a website something like this, using XML for the text which I know how to do, I do know quite a bit of flash but some of these I do not know how they acheived the effects. Is it just tweens? And to make a website like this what size would I have to make my stage to create the effect properly? Also when you first enter you see the white splash of a design he created then it turns black is that just a mask or is there another way to do that? Thanks for the help, I appreciate any and all feedback.
You have to do full-screen flash for that. The effect at the beginned witht he white flash can be done tweening the brightness of the mc.
Thanks, do you know how I to do a full-screen flash, I’m not sure what that is, haven’t picked up on that yet.
There are a few ways of making it full screen, kirupa has a good one: http://www.kirupa.com/developer/mx2004/fullscreen.htm
As for color fade, Senocular has a nice one: http://www.senocular.com/flash/source.php?id=0.74
thanks for the links, I checked them out and will try it out and come back and post if any problems occur
Now to move the screen like they did on that site is it just a tween on the button? Sorry for asking so many questions just want to understand how they did this before I attempt it myself
if possible can someone create something quick with tweens and buttons to go to a certain part that covers the whole screen like this website. Nothing big just throw an image or something or some text on each section which the tween is going to so I can have a basic idea of what happens and how to do this, because I can not wrap my head around how they do this. Thanks I will really appreciate it.
nobody can help me with this? really would appreciate it if you can whip up something small
I posted this in Flash 8 section but didnt receive too much help, one guy was nice enough to tell me how it is done but I cant seem to wrap my head around it, so I’m posting it here now because this seems to be more active then Flash 8 section so maybe I might get some more help here. Please
I want to attempt to make a website something like this, using XML for the text which I know how to do, I do know quite a bit of flash but some of these I do not know how they acheived the effects. Is it just tweens? And to make a website like this what size would I have to make my stage to create the effect properly? Also when you first enter you see the white splash of a design he created then it turns black is that just a mask or is there another way to do that? Thanks for the help, I appreciate any and all feedback.
I know I need to use full-screen flash or something like that but if possible can someone create something quick with tweens and buttons to go to a certain part that covers the whole screen like this website. Nothing big just throw an image or something or some text on each section which the tween is going to so I can have a basic idea of what happens and how to do this, because I can not wrap my head around how they do this. Thanks I will really appreciate it.
nobody???
Guess I’m out of luck :diss:
skyo sucks monkey balls!
^^ umm no help at all, if your gonna post please post something that will help
guess I’m out of luck
Do you just want to know how to have a flash on the full internet explorer screen?
Edit:
Like this?
http://k.1asphost.com/goosfraba/Other%20Websites/Test.swf
I made it real quick
the swif didnt work, but what I want to know is have full screen and a button on the page to click and it moves to a different part like they did, just if you can whip something up real quick even if its one button moving to a certain part of the screen that is not on the screen but is when you click the button like they did, if that made sense, just so I see how they did it. Thanks for the help if you can do this
Sorry man, I got no idea about what you mean.
k on the main page when it loads theres navigation well on a couple of them like “Tapes”, “Downloads”, “Tours” and “Contact” when you click on the link the screen moves, thats what I need to know how to do, the full-screen thing and how to get something moving like that, its probably just a tween but I don’t know how to do it with full-screen flash. Thanks
Hei,
Read this first:
that’s how to make jour flash run fullscreen.
The background is just a large image. To make it move, first turn it into a MC. Then create some buttons and give each button an instance name (b1, b2, b3, b4 in this example).
Ok, the script goes inside the background mc:
//set the starting point of the background mc when it loads, and moving speed//
onClipEvent (load) {
_x = 0;
_y = 0;
div = 5;
}
//makes the background mc move to some point on the screen - you will set the coordinates in next step//
onClipEvent (enterFrame) {
_x += (endX-_x)/div;
_y += (endY-_y)/div;
//set the coordinates of background mc for each button//
_root.b1.onRelease = function() {
endX = 0;
endY = 0;
};
_root.b2.onRelease = function() {
endX = -250;
endY = 0;
};
_root.b3.onRelease = function() {
endX = -250;
endY = -200;
};
_root.b4.onRelease = function() {
endX = 0;
endY = -200;
};
}
Sure there some other ways to do it, that’s just very basic one.
Image you’re going to use should be no larger than 200KB otherwise it’s movement gets choppy.
Good luck!
Thanks!!!