A Very Nice Horizontal Nav Slider
Hey guys,I recently saw an awesome horizontal navigation and I wanted toincorporate that in my latest project. However I found it verydifficult to achieve the same. I found some resources, but unfortunatelyin foreign language, so I didn't understand much of the code. Now Iuse a caroussel like navigation, but I think the other one is much better.I'm talking about the example shown at 73.ufc.com, choose the fightcard.If some of you guys can point me in the right direction, that would be awesome!Kind Regards,Baeshin
KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 07-06-2007, 07:55 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Nice Horizontal Interactive Menu
if you enter this site http://www.grandearredo.com/
...and follow the link: 'Collezione Casa',
there's a nice example of a horizontal scrolling menu, slightly different from the ones i've seen before and can find tutorials for. I was wondering if anyone could explain to me the basic workings behind it?
any help much appreciated, thanks.
Amal
Create A Nice Slider
How do you create a nice slider, I have a panel that slides from the bottom to the top of the screen at a defined height
Using the code below, it loads way to fast, what I am looking for is something that kinda slides real fast and near the end it slows down the exact spot such as easing on the time line. Maybe this can be tweened or I need to rewrite my while function..
Code:
var moveCounter:Number = 0;
var howFarMove:Number =40;
while (moveCounter < howFarMove)
{
trace("moving ?");
parent.parent.getChildByName("popup_tab").y = parent.parent.getChildByName("popup_tab").y -1;
moveCounter = moveCounter +1;
trace(moveCounter);
}
Any help would be appreciated.
Thanks.
Horizontal Slider
hey hey,
does anyone know how to create a slider that will ,move a movieClip from side to side...
I need some serious help!!
thanks,
Goodie
Horizontal Slider
Hi all,
does anyone know how to do a horizontal slider which control by left and right buttons??? I need some help on that! Thanks for all your help!!!!!!!!!!!!
Different Horizontal Slider
Hi,
i want to make a horizontal slider that looks like the i-phone sliders.
so it must be a draggable slider that is going in the direction that you 'slide' it (the 'normal' horizontal sliders move in the opposite mouse direction)
o, and if you release the drag i want it to have a nice de-acceleration.
i'm not that good in actionscript and i already tried to rebuild a normal slider but it wont work.
is there anybody who knows a good tutorial or has an example for this?
or is there anybody who can build this?
thanks
D.
Horizontal Slider Menu
i have seen horizontal slider navigation menus on flash sites and would like to create on. I downloaded the sample from the flashkit main page but I am having a lot of trouble understanding it.
Any one have any tips for a newbie to actionscripting?
Horizontal Volume Slider
Hey, this is my first post on these boards. So hi everyone.
Here's my problem: I've been following this tutorial at http://www.actionscript.org/tutorial...er/index.shtml
But I want it to be for a 70x15 horizontal slider. I basically am wanting the entire slideable area to be the whole 70 pixels...or close. How would I go about modifying this tutorial for use with this slider?
Problem With Horizontal Slider
Hi Guys,
I am stuck... possibly been staring at the code for to long and should go grab some coffee but I just cant suss this out...
I downloaded a horizontal slider movie from this site and loved the look and how it worked, having problems customising it...
here is a link to the movie... http://www.scottbrown.co.nz/scroll2.html
My Problem: as you can see from the link above the section that you roll your mouse over to move the boxes left and right is still located at the top of the screen, i need to shift its axis so that it sits over the content at the bottom of the screen so when you mouse over the boxes you can move them left and right. i havent found anywhere in the action script that relocates the axis...
here is the script (also doesnt help that it isnt in english!) any help would be hugely appreciated!:
// Parametros
anchoPelicula = 620;
altoPelicula = 58;
acel = 10;
iniciado = true;
// Operaciones
fondo_mc._width=anchoPelicula;
fondo_mc._height=altoPelicula;
fondo_mc._x = 64;
fondo_mc._y = 400;
acel /= 50;
panoramica_mc._y = 400;
panoramica2_mc._y = 400;
mitad = anchoPelicula/2;
ancho = panoramica_mc._width;
panoramica_mc._x = 64;
panoramica2_mc._x = (64-ancho);
// Al pasar el mouse encima
fondo_mc.onRollOver = function() {
iniciado = false;
mover();
}
fondo_mc.onRollOut = function() {
//delete panoramica_mc.onEnterFrame;
}
// Funcion Mover
function mover() {
barraqueanda();
panoramica_mc.onEnterFrame = function() {
//trace("grandao dando role em: "+ _root.panoramica_mc._x);
//anda2();
if (_xmouse != mitad) {
if (_xmouse<mitad && _ymouse<90) {
if (panoramica_mc._x<0) {
inc = Math.abs(_xmouse-mitad)*(acel/10);
//
panoramica_mc._x += inc;
}
} else {
inc = Math.abs(_xmouse-mitad)*(acel/10);
if (panoramica_mc._x>(-560) && _ymouse<90) {
panoramica_mc._x -= inc;
}
}
}
}
}
init();
function init() {
barraqueanda();
this.onEnterFrame = function() {
if (iniciado) {
if (panoramica_mc._x>(-560)) {
panoramica_mc._x -= 1.8;
}
}else{
delete this.onEnterFrame;
}
}
}
maior = _root.panoramica_mc._width;
menor = _root.slider._width;
desl = maior-Stage.width+300;
var prop = desl / menor;
function anda(obj, lugar){
//trace("movendo " + obj._name + " para " + parseInt(lugar));
obj._x = lugar;
}
function barraqueanda() {
_root.slider.bar.onEnterFrame = function() {
this._x = (_root.panoramica_mc._x / 5.5) *-1;
}
}
Horizontal Picture Slider
Looking to create a horizontal picture slider that can go back and forth like this and show only one image at a time.
http://moma.org/exhibitions/2007/jeffwall/
or
http://www.johnnyslack.com/
Any suggestions?
Horizontal Picture Slider
Looking to create a horizontal picture slider that can go back and forth like this and show only one image at a time.
http://moma.org/exhibitions/2007/jeffwall/
or
http://www.johnnyslack.com/
Any suggestions?
Horizontal Slider Control
Hello Flash people, I was wondering if anyone has come across anything like this before. I have searched.....for about 2 hours but my eyes have glazed over
I want a horizontal scroller where when you drag the scroller over the bar, it displays a different movie clip.
E.g
If my bar is 100px wide, and I want to display 10 seperate movie clips depending on the sliders postion, I would divide the bar into 10 sections. So when the slider goes over one of the ten sections it will display a mc. Should I be using a hit test for this or anything else?
Does this make any sense lol?
Thank y'll
Problem With Horizontal Slider
I did a horizontal slider and saved it as a separate swf file. Then I embedded this file into another swf. The problem is that when I try to move the slider of the horizontal slider, it moves up instead of sideways and nothing happens, the pictures that I am trying to scroll remain static.
The horizontal slider alone worked... the problem arised when I embedded it.
The following is the code of the horizontal slider swf:
The Slider movie clip
ActionScript Code:
onClipEvent(load) {
setProperty(this, _y, int(_y));
}
onClipEvent(enterFrame) {
a = new Object();
a.y = this._y;
a.x = this._x;
_root.path.globalToLocal(a);
b = int(a.x*2);
}
The button of the slider
ActionScript Code:
on (press) {
// the "x+300" means the slider will move
// 300 pixels down the path
startDrag(this, false, _root.path._x, _root.path._y, _root.path._x+300, _root.path._y);
}
on (release) {
stopDrag();
}
The path
ActionScript Code:
onClipEvent(load) {
setProperty(this, _x, _root.slider._x);
setProperty(this, _y, _root.slider._y);
}
The pictures to be scrolled (mc)
ActionScript Code:
onClipEvent(enterFrame) {
_root.scrollMC._x = -1*(_root.slider.b);
}
Could someone help me please?
Horizontal Picture Slider
Hi everybody
I am looking for a horizontal slider script like this one here:
horizontal slider
Best would be to find some free solution but I would take a template for reasonable price too.
If you have seen such a script, please post a link or a source code.
Thank you very much
Horizontal Slider Menu
I want to make a menu like this: http://www.actionscript.org/tutorial...NU/index.shtml
but this one uses old skool Flash 4 deprecated code.
I know I've seen a similar menu tutorial on the web that is more recent and works in the same way, but just can't remember where. And it wasn't the Kirupa "Infinite Menu" either. The infinite menu is different to the menu from ActionScript.org in that it uses as static movieClip whilst the ActionScript.org menu uses dynamically created movieClips through duplicateMovieClip.
Does anyone recall seeing a menu created in this way that was done with more recent ActionScript? Cheers.
Horizontal Volume Slider
I've got a simple vertical volume slider working, now I want to convert it to a horizontal one. The code on the button won't change.
Code:
on (press) {
startDrag ("", false, left, top, right, bottom);
dragging = true;
}
on (release, releaseOutside) {
stopDrag ();
dragging = false;
}
But this needs to change and I've tried swapping things around. The obvious things are that the _x property needs to change. I've tried changing the direction with + instead of minus. I can get it to work, but the volume is loudest on the left side of the slider and lowest on the right side. I need to reverse that situation.
Code:
onClipEvent (load) {
top = _y;
left = _x;
right = _x;
bottom = _y+100;
}
onClipEvent (enterFrame) {
if (dragging == true) {
_root.s.setVolume(100-(_y-top));
}
}
Any ideas?
Can We Do A Vertical AND Horizontal Drag Slider?
So I looked thru previous posts and didn't really find anything helpful.
I am wondering if there is a way to use the "startDrag" command and create a dynamic slider bar that moves on BOTH a vertical and horizontal axis line. Like a CROSS shape.
I tried using and "if" statement in conjunction with the "_xmouse" coordinates but that didn't work. I love flash but I kinda caveman it.
Is does anybody know how to solve this problem or has another way of getting around it?
Any help would be lovingly appreciated.
++e++
-------------------------------------------------------------------------------------
movieClip.onPress = function (){
this.startDrag (false,0,150,0,-150)
//
//>AND... (but totally won't work this simple i know...)
//
this.startDrag (false,-150,0,150,0)
}
movieClip.onRelease = function (){
this.stopDrag ();
}
Zooming Mask On A Horizontal Slider HELP :-)
Hi guys
I am so close to achieving what i need but not quite there [nose smile] hah
I am not a flash programmer just a girlie designer.
I kinda take what you guys do and make it work. Thank you!
I have a horizontal infinite slider that works perfectly.
well i actually have 2 sliders layered on top of each other.
The top one is masked by a rectangle. All i need now is a zoom effect to be applied to the slider on top so it looks almost like a magnifying effects.
Here is what i mean...
http://www.visualale.com/eco/
I know you can do scriptable masks now...can any one help me?
Here is the .fla if someone can help!
http://www.visualale.com/eco/slider_eco.fla
I am eternally grateful to anyone who can solve this problem for me [nose smile]
THANK YOU!!!
cheers
Alessandra
Horizontal Xml Slider W/ Various Image Widths
Hi,
I'm new here and perhaps am posting a question that has been answered previously, but was unable to find. My apologies if so.
I'm designing a horizontal image slider. I want it to load from an xml and to recognize different widths in the images (all images will have the same height). I find plenty of ways to load from an xml, however the images must always conform to a predetermined set of dimensions. I really need the width to be variable (according to images) with a small gap between each image.
Any help with this?
Thanks,
Mark
Horizontal Volume Slider Issues
I have tried several variations and nothing is working right. Here is what I have right now.
The actual slider is in a movie clip called slidebarMC with an instance name of slideBar. I added the code:
on (press) {
startDrag("", false, left, top, right, bottom);
dragging = true;
}
on (release, releaseOutside) {
stopDrag();
dragging = true;
}
I then created a new movie clip called sliderMC with no instance name, and placed a 100 pixel wide volume bar graphic and placed the slidebarMC movie clip in the middle of that.
I then placed that in my scene/movie clips and added the code to the sliderMC clip:
onClipEvent (load) {
top = _x;
bottom = top+100;
left = _x;
right = _x;
}
onClipEvent (enterFrame) {
if (dragging == true) {
_root.soundObject.setVolume(100-(_x-top));
}
}
I added a frame above it in the timeline and placed the action:
myMusic = new Sound();
_root.soundObject.attachSound("musicnote_01");
myMusic.start(0, 1);
myMusicVolume = 100;
myMusic.setVolume(myMusicVolume);
I have obviously screwed it up. What do I need to change to make it work in a movie clip and a scene? Thanks in advance!
Horizontal Menu Slider In AS3 (or Delay: How-to?)
I was searching the web for a tutorial to create an horizontal slider menu, like the one in http://www.lemlinh.com/flash-source-horizontal-slider. The question is I would like to build it using AS3 instead of AS2.
I think the problem is in finding an AS3 replacement for the "delay" command that exists in AS2.
Could anyone help me, please?
Horizontal Scroll Text With Easing Using A Slider
I found this really cool scroller on one of the threads. I'm novice flash designer and don't know anything about action scripting. but i did get it to work with my own content. Now I wish I could get a horizon scrollbar that scroll the content horizontally. Can someone help me please?
thanks so much guys!
Geng
Trying To Find A Simple Horizontal Image Slider
hey everyone,
trying to find something similar to this http://www.blog.noponies.com/archives/110. Noponies is a great site, but when I started looking at the code, I got a bit scared...I'm not a AS3 guru . I don't need xml and fancy classes, etc. Thanks for your time.
Horizontal Slider Need Mouse/speed Stop Outside Stage Size?
Can anyone help me?
? How do I make this horizontal slider stop when the mouse is outside the stage area size (720 width)?
Currently it speeds up faster than a faster faster pussy cat when mouse is outside stage / swf. See what I mean:
http://www.imedialab.net
I need it to scroll but only when the mouse is in the stage width size range. Stage width = 720
I am an artist not a programmer (although I do try). Any help appreciated.
__________________code_________________
ActionScript Code:
_root.onEnterFrame = function () {
if (_xmouse < 300) slider._x += (360-_xmouse)*0.03;
if (_xmouse > 480) slider._x += (360-_xmouse)*0.03;
slider_r._x = slider._x+slider._width;
slider_l._x = slider._x-slider._width;
if (slider._x > 720+slider._width*0.5) {
slider._name = "temp";
slider_l._name = "slider";
temp._name = "slider_l";
}
if (slider._x < 0-slider._width*0.5){
slider._name = "temp";
slider_r._name = "slider";
temp._name = "slider_r";
}
}
Slider To Scroll Thumbnail Mc W/ Buttons Inside...onRollover Text Moves With Slider
I'm using a slider to scroll a movieclip made up of thumbnail images that are buttons. When I put my mouse over each button, I want it the image to change from black and white to color, and for a text description to appear in one fixed location on the main stage. Right now the image change to color is working, and the text appears as well, BUT the text scrolls as well, since it's within the scrolling movieclip. I want the text to appear static at a fixed location of: x=-947 and y=65. HELP!!!
It should look similar to: http://www.ehdd.com
Here's my code:
for my movieclip:
onClipEvent (enterFrame) {
_root.scrollMC._x = -.295*(_root.slider.b);
}
for my slider (set to scroll along "path"):
on (press) {
startDrag(this, false, 4, 270, 802,270);
}
on (release, releaseOutside) {
stopDrag ();
}
onClipEvent (enterFrame) {
a = new Object();
a.y = this._y;
a.x = this._x;
_root.path.globalToLocal (a);
b = int(a.x*2);
}
Slider In Reverse - Typed Text Makes Slider Move...help?
http://www.kirupa.com/developer/mx/slider.htm
Great tutorial...thanks by the way
But I was just wondering if anyone knew how you would go about doing this kinda in reverse? In that you type the percentage number in the text box and the slider moves up to that number?
Thanks in advance for your help
Slider Menu - Resize Slider And Change Btn Color
Hi there,
I am using code from http://www.kirupa.com/developer/mx20...ith_slider.htm. and
I found how to make slider smaller or bigger in this forum but I don't know what wrong of my buttons. The width of the slider is not same as all buttons. It looks smaller and on the right more.
Actually, I would like to make the same slider menu at <A href="http://www.grouplotus.com/grp/">http://www.grouplotus.com/grp/. Their buttons can change color even mouse out. Could you or someone else can teach me how to do that?
my flash file
http://www.halfuncorner.com/flash/btn.swf
http://www.halfuncorner.com/flash/btn.fla
many thanks,
jo
Fade Slider Not Image Slider HELLLP
i am trying to bulind a slider to fade btween 3 image Image 1(Past0, Image 2 (Present), Imag2 3 (Futher)
info
Image 1 is Constant as it is the base layer
Image 2 is Variable inatly set at 100% Alpher (middle LAYER)
Image 3 is Variable inatly set at 0% Alpher (top LAYER)
i want the slider to star off in the middle posing an image 2 100% and image 3 is 0% and when the slider moves left Image 2 alper will go down revlling image 1, and when the slider moves right i want Image 2 to remain a 100% and image 3 to go from 0% to 100%
can any on help
thanks blue
Slider Wont Work For My Menu Slider
i tried following this tut on a menu slider http://www.kirupa.com/developer/mx20...th_slider2.htm, but I cant seem to get the slider to work, whenever I test the movie the slider just slides to the left corner and than doesnt move after that. anyone know what is going on or have any advice??
i posted my swf file to show you and then the fla file if anyone actually wants to see everything.
Im kinda new to flash so I obviously dont know what is wrong. Any help would be very appreciated.
Slider Menu - Resize Slider And Btn Color
Hi there,
I am using code from http://www.kirupa.com/developer/mx20...ith_slider.htm. and
I found how to make slider smaller or bigger in this forum but I don't know what wrong of my buttons. The width of the slider is not same as all buttons. It looks smaller and on the right more.
Actually, I would like to make the same slider menu at <A href="http://www.grouplotus.com/grp/">http://www.grouplotus.com/grp/. Their buttons can change color even mouse out. Could you or someone else can teach me how to do that?
my flash file
http://www.halfuncorner.com/flash/btn.swf
http://www.halfuncorner.com/flash/btn.fla
many thanks,
jo
Volume Slider -- How Do I Center Slider?
http://www.kirupa.com/developer/mx/volume_slider.htm
Using the tutorial above, the volume slider always starts at the left end which is starting to become annoying because you always have to move it in order to listen.
How can I place it in the center? I've attempted just dragging it in the middle while editing, but the file ends up not working.
Slider Stop Outside Slider ( Hm...?)
hi,
please help....or give me some tips...
i work with flash mx and have a problem with my slider
i want the slider to stop when my mouse leaves the slider...
if possible also when i click on a button.
greetings
rancune
sliderproblem.fla
Nice To Be Here
hi there,
Yes I am very new to the flash scene. In fact someone in the chat room recommended me to come here.
I have a website which looks simple, but not sure how to make something similar for church programs.
http://www.cryofthespirit.com/alone.html
Would someone tell me how to go about doing this, or where I can get a template for the same feel.
Thanks alot y'all
How Did They Do This Nice FX?
Hi experts!
I just wonder, how is this FX done? It's in the top of the main page, it's like water but in a different way from the typicall seen everywhere (than one with concentric circles). This one is really cool.
http://www.datatech.es/
Any ideas?
Thank you!
Manare
Anybody A Lil Help Would Be Nice
Works perfect locally - load everyrhing to my server and up barfs an error .. my xml file isn't being loaded any ideas?- yes the swf and xml file are in the same directory.....
Code:
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
swf = [];
name = [];
link = [];
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
swf[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
name[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue;
link[i] = xmlNode.childNodes[i].childNodes[2].firstChild.nodeValue;
}
firstImage();
} else {
display_txt.text = "Error loading XML!";
display_txt._y = 380;
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("swfs.xml")
Anyone Nice Enough To Help?
Basically I have 6 Layers
RedButton
Blue Button
Green Button
OrangeButton
Text
Actions
Each of the buttons corresponds to a different word which I have nested inside the "Text" movieclip which when pressed SHOULD bring up the word with a little alpha from 0-100
Each word has an instance name to be referred to as well.
Here's my action script for the first button
this.RedButton.on(release){
_parent.Text.Hello.gotoAndPlay(2);
}
When it compiles it gives me an error of "Field name expected after "." operator. Anyone know what this is or how I can fix my code....see any other errors? What's the best way to approach this movie?
Thank you for all your help...you guys are awesome.
Very Nice Menu
hi everybody
I would like to know where i can find a script like the menu in this site:
http://www.hugeinc.com/2001/huge_1000.html
Thank's
A Nice Easy One
This is for an actionscript fade in:
on (release) {
for (i = 0; i < 100; i ++) {
circle._alpha = circle._alpha + 1;
}
}
There is no delay on the fade. How do I create a nice steady fade? Do I need to use two frames? I though the point of the for loop was to do it in one.
Cheers
Dan
Nice Script
Hi
I would like to know where can i see FLA file with the script like in the link:
http://vejil.de/
Thank's
gafko
Help How Can You Do This In Flash? (looks Very Nice)
http://www.shadowness.com/images/index_top1_flash.swf
better seen on
http://www.shadowness.com/
id really like to make something like this for my site, but how is it done? can someone please make a quick example for me?
thanks a lot
Help How Can You Do This In Flash? (looks Very Nice)
http://www.shadowness.com/images/index_top1_flash.swf
better seen on
http://www.shadowness.com/
id really like to make something like this for my site, but how is it done? can someone please make a quick example for me?
thanks a lot
Nice Script
Hi u guys
Please let me know where can i find the script like in this link
i saw it in flashkit ones but i can't find it now
http://www.gafko.co.il/1/
thank's
Nice Script
Hi u guys
I'm looking for the Fla like in that link:
http://www.gafko.co.il/1/
I saw it here in Flashkit but i couldn't find it.
Please help me with that.
Thank's
Nice Transition Efx But How Is It Done?
these two sites have really nice transition effects that seem to involve AS. Can anyone point me to an example or explanation of how to do similar?
http://www.morimotorestaurant.com/main.html
http://www.fontsforflash.com
Thank you in advance.
Nice Site
http://www.yamago.net/
cheak this site, it look great,
sure like to knew how to this very fast moving of the fullscreen, allways get problem with this, usually cpu get over load...
A Nice Easy One For All You Pro's...
okay... tis pretty easy me thinks but i cant seem to get
it to work...
all i want to do is to check a text field to see if it contains the "@" symbol. anyone know how i can do this?
its just to stop people sending me random words in my email form, and only accept text strings with the "@" symbol in them...
ive got something like this but it dont work...
Code:
on (release,keypress "<Enter>") {
if (_root.email(""+"@"+"")) {
blah, blah, blah......
}
any help would be great....
cheers..
|