Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








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?




FlashKit > Flash Help > Flash MX
Posted on: 05-13-2007, 01:50 PM


View Complete Forum Thread with Replies

Sponsored Links:

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?

View Replies !    View Related
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

View Replies !    View Related
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

View Replies !    View Related
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!!!!!!!!!!!!

View Replies !    View Related
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.

View Replies !    View Related
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?

View Replies !    View Related
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?

View Replies !    View Related
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;
}
}

View Replies !    View Related
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

View Replies !    View Related
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?

View Replies !    View Related
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.

View Replies !    View Related
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?

View Replies !    View Related
A Very Nice Horizontal Nav Slider
Hey guys,

I recently saw an awesome horizontal navigation and I wanted to
incorporate that in my latest project. However I found it very
difficult to achieve the same. I found some resources, but unfortunately
in foreign language, so I didn't understand much of the code. Now I
use 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

View Replies !    View Related
Horizontal Picture Scroller
I am having some trouble with this horizontal scoller... It works to a certain extent but then when it is imported into the movie it stops... I will post the .fla. Thanks in advance.

View Replies !    View Related
Horizontal Picture Viewer.
I want to make the same thing here as on www.24-7media.de after cllicking Portfolio then its right there under "walk this way" but I don't know how (actionscript rookie) I was trying to use this: http://www.kirupa.com/developer/acti...able_masks.htm and make it into what I'm trying to do but I couldn't exactly figure it out.. could somebody help me out please?

View Replies !    View Related
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 ();
}

View Replies !    View Related
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

View Replies !    View Related
Voetsjoeba Horizontal Volume Slider?
Does anyone know how to make a horizontal volume slider for the mp3 player?

View Replies !    View Related
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

View Replies !    View Related
Voetsjoeba Horizontal Volume Slider?
Does anyone know how to make a horizontal volume slider for the mp3 player?

View Replies !    View Related
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?

View Replies !    View Related
Horizontal Moving Picture Menu
I'm trying to find a tutorial that will let me create a horizontal menu of pictures that moves according to were the mouse is placied or hovered...And when I click the a picture brings me to a certain location that enlarges the pic and shows info....

View Replies !    View Related
Problems With Horizontal Picture Scroller
I am having a problem with my horizontal picture scroller. It isn't working right... I will post a link to my *.fla to see if you guys can figure this out... lol I am going crazy with this thing. Thanks in advance

http://www.accessdream.com/myflashfi...rollerProb.fla

View Replies !    View Related
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

View Replies !    View Related
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.

View Replies !    View Related
Picture Slider
Check this:
http://www.pokerclub.be/test/slider.html

I've changed this tutorial a little but. Each picture now gets bigger when you move your mouse over it. When clicking it appears in the middle. I'd like it to appear on a more impressive way. Moving in, or fading in. How do I do this?
Now it just appears from nowhere.

thanks for the help.

View Replies !    View Related
Picture Slider
hi there,

still working on a pictureslider and have found a good one. there's just one thing: the original slider used wider pictures and now i have the problem, that i just don't know how to reduce the space between the single pictures...maybe someone can give me a hint...

noodle

View Replies !    View Related
Picture Slider
hi and hello..
well..kinda new here..
been surfing the website recently and learnt many new things...
many cool stuff in here..
wanna ask about the picture slider..
is there any scripts on how to get the picture slider to go back to its original location or back to its first picture.. when the cursor is not on the slider..
Thanks a bunch!

View Replies !    View Related
Picture Slider?
...hello, I have to make a presentation.

I wanted to make a pictureslide. So that there are the images in the backround of the stage side by side. And there is a mask with the size of one picture. When You click teh next button the stripe slides to the next pic...

eventually there should be a previous button to slide back


does anyone of You know where to get flash like that? I looked for in the net but I havent found it yet.

Thank You for helping

View Replies !    View Related
Picture Slider
hi and hello..
well..kinda new here..
been surfing the website recently and learnt many new things...
many cool stuff in here..
wanna ask about the picture slider..
is there any scripts on how to get the picture slider to go back to its original location or back to its first picture.. when the cursor is not on the slider..
Thanks a bunch!

View Replies !    View Related
Horizontal Picture Panal, That Enlarges Pics On Roll Over
HEy guys,
I have a MC of 4 pictures scrolling. I control the MC from buttons on my main movie. I want the pictures to enlarge on rollover. I know how to do that, but how would I make it pop back into the panal on rollout. THe way that I had it the pics would be in the MC then on mouse over they would enlarge, and on rollout they would shrink, and "fall out" of the MC. ( no longer moved with the rest of the frames.)
my MC is called "flasher"
a pic in the MC is "edgar"
THanks,
Josh

View Replies !    View Related
Picture Slider Problems
Could someone please take a look at my source file and figure out why my movie isn't playing properly.

www3.telus.net/aqualiscious/school

I have a slider MC that contains buttons. When clicked, the buttons should bring up larger pictures.

At first, I tried using some ActionScript to achieve this but it wasn't working. So I resorted to placing the various pictures (larger images) in cascading frames on the main timeline and just assigning the buttons to go to the corresponding frames.
IT STILL DOESN"T WORK!!

I suspect it has something to do with the 'Stop' action on the 8th frame...

Please help...

View Replies !    View Related
How Would I Make A Picture Slider?
Hi, I've been asked to come up with a box which contains pictures that slide through, from left to right continusouly, but when I put the cursor in the middle of the box the images stop, but when Imove the cursor to the right or left the images slide faster, and in the opposite direction, so if the cursor is at the left side the images will scroll to the right, and vice versa.

View Replies !    View Related
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";
    }
}

View Replies !    View Related
Flim Strip Picture Slider
Hi,I want simple animation done in actionscript. I m not good with the AC so i can do it frame by frame but still there are many limitations and its like hell.

I have 25 images in my flash file. I want them to move from left to right. there is a "camera flim" look alike background. the effect is like the camera reel is rooling and picturs are being displyad. the strip shout continue moving, until unless i bring my mouse to "previous button" so the last picture shout be displyed. I can't make any logic in AC so please if anyone of you have any tutorial to refer or any example file , i would really appreciate it. I hope i m making some sense here.
Thanks

View Replies !    View Related
Preloader For XML Loaded Picture Slider
The script below creates a slideshow of images. I've been trying to create (1) a preloader that will load all the images before showing any of them or (2) a preloader for each individual image.
Can anyone help?


Code:
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("food.xml");
////////////// arranges contents of XML data into two arrays
///// image - which is a url to the image
///// widths - the width of the image (necessary for setlocation() function)
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
image = [];
widths = [];
totalwidths = [];
totalwidths[0] = 0;
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
image[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
widths[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue;
}
for (i=0, count=0, j=1; i<total; i++, j++) {
y = widths[i] - 0;
count = count+ y + 3;
totalwidths[j] = count;
}
loadimages();
}
};
/////////// loads the images into individual movieclips
function loadimages() {
widths = [];
var totalwidth = 0;
for (i=0;i<total; i++) {
var picref = this.createEmptyMovieClip("container"+i,i);
picref.loadMovie(image[i]);
}
setLocation();
};
//////////////// sets the _x location of the images
function setLocation() {
for (i=0; i<total; i++) {
var contain = "container"+i;
setProperty (contain,_x,totalwidths[i]);
}
};
////////////////// scoller limits
this.onEnterFrame = function() {
var rightposition = (700 - 344 - totalwidths[total]);
if (_root.nav.contents._x >= -344) {
tellTarget ("_level0.nav.scroller.scroll_right") {
gotoAndStop(1);
enabled = false;
}
} else {
tellTarget ("_level0.nav.scroller.scroll_right") {
enabled = true;
}
}
if (_root.nav.contents._x <= rightposition) {
tellTarget ("_level0.nav.scroller.scroll_left") {
gotoAndStop(1);
enabled = false;
}
} else {
tellTarget ("_level0.nav.scroller.scroll_left") {
enabled = true;
}
}
};

View Replies !    View Related
Flash Sliding Menu / Horizontal Dynamic Picture Menu
Hello,

I am quite fascinated by the effect used to scroll a variety of pictures left and right with the ability to halt on a particular picture to click and navigate to another area of a site. Could anyone point me to a tutorial on how this is done? An good example of the effect may be seen on this site:

http://www.calatrava.com (click on the "slide show" link)

Would appreciate any pointers. Thanks!

View Replies !    View Related
Flash Sliding Menu / Horizontal Dynamic Picture Menu
Hello,

I am quite fascinated by the effect used to scroll a variety of pictures left and right with the ability to halt on a particular picture to click and navigate to another area of a site. Could anyone point me to a tutorial on how this is done? An good example of the effect may be seen on this site:

http://www.calatrava.com (click on the "slide show" link)

Would appreciate any pointers. Thanks!

View Replies !    View Related
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);
}

View Replies !    View Related
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

View Replies !    View Related
User Uploads Picture > Can Move And Edit Picture With Tools In Flash File
Hello,

I am looking for some help with this. It seems like something that can easily be done.

http://www.sonypictures.com/movies/t...customization/

I am looking for the user to be able to upload their picture, and then the picture loads into the flash file. once in the flash file, they can move their picture up, down, left or right, rotates in a circle, and also click a button that makes their picture smaller or larger.

I am working on a project for my family, so they can put their picture with an actor and I wanted to know if anyone could point me in the right direction for this?

Thanks so much in advance.

View Replies !    View Related
Enlarging A Thumbnail Picture On A Separate Window The Same Size Of Picture
Hi,
I feel like a dumb, but I still need to ask this question:
When you are using thumbnail size pictures acting like buttons, how can you create a link to a new window page the size of the new enlarged picture only?...I don't want a new window showing the picture with a white background covering 100% my Flash site..
You see, I told you it was a dumb question...
Any help?

View Replies !    View Related
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

View Replies !    View Related
Upload Picture From Database, Transform Picture In FLash
Hi, all.
I just want to do a test: I made an swf file that is to be embedded in an html web page. Inside swf I want a picture to be upload from database ( for customized purpose ), say ASP, or XML. And new picture will replace that old one inside swf. Further more, e.g. I upload just a picture that is a piece of tile. When it appears in swf, it should be tiled 5 by 5 and transformed for perspective. Is that possible with AS? if yes, could anyone offer help? And how to write interface code -- ASP or xml communicates with FLASH, to upload picture from database? Thanks.

-percy

View Replies !    View Related
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

View Replies !    View Related
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.

View Replies !    View Related
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

View Replies !    View Related
Changing A Pixel Picture To A Flash Picture
I need help on how to make a Pixeled image into a flash image so i can change it with flash tools. I don't even know if this is possible but someone told me it was. please Help ASAP !!! making a movie for my school !!

View Replies !    View Related
I Want A Picture To Appear In My Flash Movie.. But.. I Want The Picture Loaded From..
I want a picture to appear in my flash movie.. but.. I want the picture loaded from the internet.. so..

In other words..

I have a button. When i press the button, I want this image:

http://www.era-morrison.com/westford/media/topper.gif

to show up.. Im also going to apply a variable, so I cant just copy and paste the image into the flash file.. Is this possible? thanks!

View Replies !    View Related
Is Loading A Picture? Better Than Having The Picture In The Main .swf File?
Is Loading a Picture? better than having the picture in the main .swf file?

Isn't this going to cause a loading picture "pause/lag" everytime the page is re-loaded?

when the picture is loads once and the user re-loads the page... will it cause it to load the picture again from scratch???

thank you.

View Replies !    View Related
Is Loading A Picture? Better Than Having The Picture In The Main .swf File?
Is Loading a Picture? better than having the picture in the main .swf file?

Isn't this going to cause a loading picture "pause/lag" everytime the page is re-loaded?

when the picture is loads once and the user re-loads the page... will it cause it to load the picture again from scratch???

thank you.

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved