Slider
I'm trying to create a slider where i can put 10 logos into (thumbnail size) and have a forward button and back button to slide though them. So you would click the foward button and another logo would come sliding in. Something like the attached file but moves a little smoother.
FlashKit > Flash Help > Flash ActionScript
Posted on: 01-04-2005, 05:55 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
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
Slider
I want to make a slider can anyone teach me how? Thanks.
Slider Nav?
hi,
does anyone know or have a example of how to do this navigation at
http://navneetk.tripod.com/test/exp2.htm
thank you,
pohku57
Slider Nav?
hi,
does anyone know or have a example of how to do this navigation at
http://navneetk.tripod.com/test/exp2.htm
thank you,
phoku57
This Slider Is In Need Of Help
i have a slider menu for my gallery. on the slider it has thumbnails of buttons that when clicked show a larger version.
Here is the code i use which does work:
Code:
onClipEvent (load) {
nScreenHeight = 300;
nMaxRate = 15;
// nPixels determines the speed of the slider movement
function moveUp (nPixels) {
this._y -= nPixels;
if (this._y<0-nScreenHeight) {
this._y = 510;
}
}
function moveDown (nPixels) {
this._y += nPixels;
if (this._y>510) {
this._y = 0-nScreenHeight;
}
}
}
onClipEvent (enterFrame) {
// move slider with speed dependent on mouse position
if (_root._ymouse<nScreenHeight/2 && _root._ymouse>0) {
moveDown(nMaxRate-_root._ymouse*nMaxRate/(nScreenHeight/2));
} else {
if (_root._ymouse>nScreenHeight/2 && _root._ymouse<nScreenHeight) {
moveUp(_root._ymouse*nMaxRate/(nScreenHeight/2)-nMaxRate);
}
}
}
What i want is for the slider only to scroll when the mouse is on it. The slider is between 70<x<170 and 20<y<271 so i tried something like this:
Code:
onClipEvent (mouseMove) {
if (_xmouse<70 && _root._xmouse>170) {
moveDown(_root._xmouse*0);
} else {
if (_root._xmouse>170 && _root._xmouse<70) {
moveUp(_root._xmouse*0);
}
}
}
but i didn't get very far.
Can anybody help?!?!?!?
many thanks
Slider Bar
Hi everyone,
I'm trying to build a custom sliderbar. In the movieclip is a sliderbutton which is supposed to be dragged. When I start drag this button, I can always only move to the left for the range of the sliderbar. Once I release and start dragging again, I can again only move to the left from the new postiotion.
The slider itself obviously has its own coordinates, as a trace of its x-coordinates always result in the same value, doesn't matter of the start position of the drag.
I experimented with localToGlobal and globalToLocal to match the coordinates but nothing worked.
Here's the code attached to the on(press) event:
startDrag(this, false, _parent.bar._x, _y, _parent.bar._x + _parent.bar._width, _y);
I appreciate any kind of advice
thx
Edi
Slider
I have been asked to crate a menu that is lets say 1000pix long, i onlt need to show 100 but when u move your mouse left it moves the navigation along to the left and vice versa to the right i know it can be done i just need the code to do it hope tthere is someone out there
cheers EVY
Need Slider Help
HELP!!!!!
I'm designing some templates, and ave hit a wall!
I need to create a slider that does the following:
Scrolls bulleted points, and when bullet hits center of mask, highlites the point. Also, to the left of the stage, there should be pictures that coincied with the scolling bullets. These should alpha fade in, rather than scroll.......Can anyone help me with this???
I'm DYING here!
Thanks!
Slider
hello, can someone help make a scaling slider that enters the value in a field box automatically while sliding?
thank you!!
Sonia
Slider
Hello all,
I'm trying to make a slider that controls the timeline of another movieclip. I know how to build a slider that is not the problem. I'm having problems with attaching the slider to the clip. Has anybody done this before or is there anybody that can help me with this.
thanks
Slider Bar
I am looking for a tutorial to learn how to make a dragging slider bar that scroll through pictures.
Thanks!
Slider
Hi,
I am using this as action script for a simple slider:
onClipEvent (enterFrame) {
this._y = _root.slider._y+(_root.go-_root.slider._y)/8;
}
can anyone tell me why when it loads it slides up about 100 pixels?
thanks.
Slider
i'm a newbie here.
i'm using flash mx right now
i'm making this slider, however i can't make the slider to be mask.
and i can't make the slider to be stop when i put my mouse over one of the button.
Please Help With Slider-bar(s)
I did get a master slide bar to work on some windows on a page I'm building, but cannot get new instances of the slidebar to work on my page. My goal is to have a master page simply zoom in and zoom out the size of all the windows on my page at once. I've got that accomplished.
Now I want to have four more slidebars zoom/reduce the four windows individually.
This is where I am stuck - with the actionscript. I have all unique instances - slider (for the main), slider1, slider2, slider3, and slider4 are the names of the instances.
I thought I could copy the code I used to create the first (working instance) and apply it to the others. This is what I attempted on line 50. I also thought that all I would have to do is change slider to slider1, 2, 3, 4, and remove all of the code for the other windows, since the goal is to open only one window per slider - but I guess i was wrong?
Any help would sure be a big help!
I will attach the .fla in case you can't translate my jibberish...
dan
I guess I'm not allowed to upload an .fla file
_root.slider.toggle.onMouseDown = function() {
this.startDrag(true, 0, 0, 100, 0);
};
_root.slider.toggle.onMouseUp = function() {
this.stopDrag();
};
this.createEmptyMovieClip("checkme", 2);
_root.checkme.onEnterFrame = function() {
_root.services._xscale = _root.slider.toggle._x;
_root.services._yscale = _root.slider.toggle._x;
_root.ephilosophy._xscale = _root.slider.toggle._x;
_root.ephilosophy._yscale = _root.slider.toggle._x;
_root.home._xscale = _root.slider.toggle._x;
_root.home._yscale = _root.slider.toggle._x;
_root.contact_Us._xscale = _root.slider.toggle._x;
_root.contact_Us._yscale = _root.slider.toggle._x;
};
services.onPress = function() {
startDrag(this);
};
services.onRelease = function() {
stopDrag();
};
ephilosophy.onPress = function() {
startDrag(this);
};
ephilosophy.onRelease = function() {
stopDrag();
};
contact_Us.onPress = function() {
startDrag(this);
};
contact_Us.onRelease = function() {
stopDrag();
};
home.onPress = function() {
startDrag(this);
};
home.onRelease = function() {
stopDrag();
};
root.slider2.toggle.onMouseDown = function() {
this.startDrag(true, 0, 0, 100, 0);
};
_root.slider2.toggle.onMouseUp = function() {
this.stopDrag();
};
this.createEmptyMovieClip("checkme", 2);
_root.checkme.onEnterFrame = function() {
_root.services._xscale = _root.slider.toggle._x;
_root.services._yscale = _root.slider.toggle._x;
_root.ephilosophy._xscale = _root.slider.toggle._x;
_root.ephilosophy._yscale = _root.slider.toggle._x;
_root.home._xscale = _root.slider.toggle._x;
_root.home._yscale = _root.slider.toggle._x;
_root.contact_Us._xscale = _root.slider.toggle._x;
_root.contact_Us._yscale = _root.slider.toggle._x;
};
Slider Help
how do you make lil slider that slides along a track following your mouse, can u maybe attach an example
Nav Slider
Hello,
I'm trying to create some navigation that has a little bar that slides over to the nav item that has been selected and the bar scales to the width of the navigation item. When the mouse isn't over any navigation items, I'd like the bar to move back off of the screen.
Check out:
http://www.randystearns.com/lehman/site/
You'll see that I have the bar moving to the selected navigation item but I have no clue how to scale the bar as it's sliding.
This is the script that I'm currently using:
//---THIS IS ON THE SLIDER CLIP ITSELF---//
onClipEvent (enterFrame) {
this._x = _root.nav.navslider._x + (_root.go - _root.nav.navslider._x ) / 8;
}
And on the rollover of an actual button, I'm just setting "go" to the x coordinate of the button. So, it'd be...
on (rollOver) {
_root.go = 274;
}
I apologize in advance, I'm not the best programmer/action scripter in the world by any means. Is there any one out there that can help me make the bar scale while it's changing x coordinates and then move back off the screen when the mouse isn't over a navigation item? By the way, we're shooting for Flash 5 with this.
THANKS SOOOOO MUCH!
Slider
Howdy all,
Hopefully an easy one for someone out there.
I was wondering if there was a way to have a slider control (much the same as a volume slider), that makes a dynamic text box go from 0-100 when it slides up, and 100-0 when it goes back.
Am I making any sense. Hope so. I have searched far and wide through the forum's etc, and would really appreciate any help.
Thanks
Damosjy
Slider HELP
Hi,
The zip file attached downloaded from Joshua Davis's site online..Unfortunately havent got the book to follow the tutorials...
url: http://flashtothecore.praystation.com/ chapter 21
I am quite a beginer in flash so please HELP me. I really need this slider for the site I am working on now....I figure out how to add new sections and resize the file but what i cannot do is to put my images in to those sections.. (I can only put one image to the first section but not to the others)
Nav. Slider Help
I found the code I was looking for to make a horizontal sliding nav. bar, it works great but theres one problem I'd like to change.... Where ever the mouse goes the nav. bar continues to scroll it never stops...Could someone please help me with some code?
Help With A Slider :(
hi guys.. I am a very desperate student...
Basically what I have is a slider and a masked movieclip which contains a reel of film screenshots on it... what I want is for the sliders position to relate to the movieclip...
I have created a slider which slides along quite nicely.... put has no relation to the position of the masked movieclip..
please tell me this can be done? and how would be even better
Many Many thanks from a desperate student
Slider
Hi, i think there's something wrong with my slider's script. i want the slider moves in the center but it is now on left side..
file attached
thanks for help
Slider
Hello everyone;
Ok, I’m trying to create a slider that goes to the opposite direction of the mouse. I want it to slide right and life. When the mouse moves to the right the slider sort of escape from the mouse and moves to the left. And the same if the mouse moves to the left the slider or "button" moves to the right. Is that possible?
ehab
Slider
Hi,
i have made a slider.. is it possible to stop people dragging both ways? e.g i drag it down, but cant drag it up until i have let go of the dragger.
PHP Code:
var value = 0;
bar._y = value;
bar.onPress = function() {
this.onMouseMove = slideMouseMove;
};
bar.onRelease = bar.onReleaseOutside=function () {
delete this.onMouseMove;
};
function slideMouseMove() {
this._y = Math.min(Math.max(0, this._parent._ymouse), 70);
value = 4+Math.round(this._y*0.15)
this._parent.onChanged(value);
}
this.onChanged(value);
[F8] Help With Slider Bar
Here's what I'd like to do. Create a slider bar with a "slider" (or handle if you will) that interacts with the mouse pointer. When the user rollsOver the bar, the scrubber moves to where the mouse pointer is.
I've got two MCs: "sliderbar" (the horizontal bar/active area) and "slider" (the handle that slides). I tried this for starters:
Code:
sliderbar.onRollOver = function() {
sliderbar.slider.move(x:5,y:10,0)
}
sliderbar.onRollOut = function() {
sliderbar.slider.stop();
}
I know this is incorrect, I just didn't know what method to use to move the MC to the mouse pointer location. Is there some way to add some 'real-world'/gravity to the move method? (So the slider moves to the mouse pointer smoothly). The slider MC should stay at the last known mouse pointer coordinate (the "x" is really only the important one) on the sliderbar when rollOut occurs.
My ultimate challenge: I'm going to set up "snap to" points on the slider bar using some other actionscripting I found. I need to try and keep track of what coordinates the slider is at in relation to the ns.seek or timeline of an flv movie that's playing within the same stage. Any thoughts on this?
Thanks in advance for any assistance!
[F8] Slider Help
HI All!
Im not new with flash but im pretty bad with action script. Could someone help me with this?
>> The objective to have that on startdrag the object slides and also effects another object with slides somewhere else or that with moving the slider the a particular point moves aswell. here is an example http://wordsltd.de/test.html
here i want that when i move the bar the big blue box also moves!
What can i do?
One-way Slider
I have a slider, that when moved, makes a mask follow it across the stage. I need to figure out a way to make the mask only follow in one direction, to the right, and not follow to the left.
Any ideas?
Code:
slider.onMouseMove = function() {
//move sliderMask in proportion to the sliderBar
_level0.sliderMask._x = slider._x * (_level0.sliderMask._width / sliderPath._width);
}
Slider Bar
I want to use a slider bar to control where you are within the timeline. The movie is simply a stack of images that fade in over top of one another changing the image gradually each time a new image fades in. I want the user to have the ability to go back and forth controlling the speed. I have a scroll bar ready, but have no idea how to tie it into the images to give that control.
AS3 Slider
Does anyone know how to attach a graphic to the slider drag-handle so that when the slider moves up and down it fills with a color (red)? Like on a volume slider or a playback slider.
Code:
stop();
//import slider classes
import fl.controls.Slider;
import fl.events.SliderEvent;
//set initial text to 0
ALERTER.text = "0";
//instantiate slider
var s:Slider = new Slider();
//position slider
s.move(50,100);
// control if slider updates instantly or after mouse is released
s.liveDragging = true;
//set size of slider
s.setSize(310,0);
//set maximum value
s.maximum = 110;
//set mininum value
s.minimum = -10;
//set tick position interval, you do not have to set this
s.tickInterval = 10;
// this is a listener that broadcasts evertime an event changes
s.addEventListener(SliderEvent.CHANGE, announceChange);
// this is a listener that broadcasts evertime an event changes
//s.addEventListener(SliderEvent.CHANGE, announceChange2);
//add slider to main movie
h_1_container.addChild(s);
//gets called and displayed in the ALERTER dynamic text field
function announceChange(e:SliderEvent):void {
// output window and text field
//trace("Slider value is now: " + e.target.value);
ALERTER.text = e.target.value;
}
//gets called and displayed in the txtFld
//function announceChange2(e:SliderEvent):void {
// output window and text field
//trace("Slider value is now: " + e.target.value);
//txtFld.text = e.target.value;
//}
// add a pretty text box with some trims
//var txtFld:TextField = new TextField();
// give it some properties
//txtFld.x = txtFld.y = 20;
//txtFld.width = 30;
//txtFld.border = true;
//txtFld.borderColor =0x000033;
//txtFld.background = true;
//txtFld.backgroundColor = 0xEEEEFF;
//txtFld.textColor =0x000099;
//txtFld.selectable = false;
//txtFld.multiline = true;
//txtFld.wordWrap = true;
//txtFld.autoSize = TextFieldAutoSize.LEFT;
// append data to the prefix and suffix of the value whilst in the textbox
//for (var i:Number = 0; i < 1; i++) {
//txtFld.appendText(" " + i + " ");
//}
//and add a txtFld to main movie
//addChild(txtFld);
// ------ ADD A REVEAL/ HIDE PANEL ------
//don't show the 'hide' button on the start of the movie
hideTemp_btn.visible = false;
//listeners for the two buttons
revealTemp_btn.addEventListener(MouseEvent.CLICK, eventRevealTemp);
hideTemp_btn.addEventListener(MouseEvent.CLICK, eventRevealTemp);
//fucntion to toggle between the two buttons visibility
function eventRevealTemp(event:MouseEvent):void {
if(revealTemp_btn.visible){
revealTemp_btn.visible = false
hideTemp_btn.visible = true
//add additional items to this list
//nameofinstance.visible = false
}else{
revealTemp_btn.visible = true
hideTemp_btn.visible = false
//add additional items to this list
//nameofinstance.visible = true
}
}
import flash.events.MouseEvent;
btn_random_acitivty.addEventListener(MouseEvent.CLICK, btn_random_acitivtyClick);
function btn_random_acitivtyClick(event:MouseEvent):void{
gotoAndStop("getScene_2");
}
Slider Bar
Hi,
How can i use a slider bar to set property _x to an object?
Thanks
Slider Bar
Hi I want to make a slider bar that will scroll text & images..I dont want arrows..I just want a bar..I want it to look kind of like the bars on mixing boards & recording devices..I had a jpeg of what II want it to look like..Im just not sure how to do it..I can send it I dont know how to post it..
any help would be greatly appreciated..thanks
AS3 Slider
I'd like to know if it's possible to create a button in the main movie that can communicate with a slider component.
A button that when pressed sets a random value between the min & max of the slider var's.
A text box should already be listening to whatever value the slider is set to...
Below is as far as I have got so far, as you can see there is no 'random reading' button yet which is the bit I am stuck on-trying to work out.
Attach Code
//import slider classes
import fl.controls.Slider;
import fl.events.SliderEvent;
//set initial text to 0
ALERTER.text = "0";
//instantiate slider
var s:Slider = new Slider();
//position slider
s.move(50,100);
// control if slider updates instantly or after mouse is released
s.liveDragging = true;
//set size of slider
s.setSize(310,0);
//set maximum value
s.maximum = 110;
//set mininum value
s.minimum = -10;
//set tick position interval, you do not have to set this
s.tickInterval = 10;
// this is a listener that broadcasts evertime an event changes
s.addEventListener(SliderEvent.CHANGE, announceChange);
// this is a listener that broadcasts evertime an event changes
s.addEventListener(SliderEvent.CHANGE, announceChange2);
//add slider to main movie
addChild(s);
//gets called and displayed in the ALERTER dynamic text field
function announceChange(e:SliderEvent):void {
// output window and text field
//trace("Slider value is now: " + e.target.value);
ALERTER.text = e.target.value;
}
//gets called and displayed in the txtFld
function announceChange2(e:SliderEvent):void {
// output window and text field
//trace("Slider value is now: " + e.target.value);
txtFld.text = e.target.value;
}
// add a pretty text box with some trims
var txtFld:TextField = new TextField();
// give it some properties
txtFld.x = txtFld.y = 20;
txtFld.width = 30;
txtFld.border = true;
txtFld.borderColor =0x000033;
txtFld.background = true;
txtFld.backgroundColor = 0xEEEEFF;
txtFld.textColor =0x000099;
txtFld.selectable = false;
txtFld.multiline = true;
txtFld.wordWrap = true;
txtFld.autoSize = TextFieldAutoSize.LEFT;
// append data to the prefix and suffix of the value whilst in the textbox
for (var i:Number = 0; i < 1; i++) {
txtFld.appendText(" " + i + " ");
}
//and add a txtFld to manin movie
addChild(txtFld);
// ------ ADD A REVEAL/ HIDE PANEL ------
//don't show the 'hide' button on the start of the movie
hideTemp_btn.visible = false;
//listeners for the two buttons
revealTemp_btn.addEventListener(MouseEvent.CLICK, eventRevealTemp);
hideTemp_btn.addEventListener(MouseEvent.CLICK, eventRevealTemp);
//fucntion to toggle between the two buttons visibility
function eventRevealTemp(event:MouseEvent):void {
if(revealTemp_btn.visible){
revealTemp_btn.visible = false
hideTemp_btn.visible = true
//add additional items to this list
//nameofinstance.visible = false
}else{
revealTemp_btn.visible = true
hideTemp_btn.visible = false
//add additional items to this list
//nameofinstance.visible = true
}
}
Edited: 02/20/2008 at 03:01:18 AM by vonnie1931
I Will Pay For Help With A Slider (ok, Not Really)
I have a slider and I want to add children to the stage when the slider moves right and then remove the children as the slider moves left.
Not sure which SliderEvent to listen for. I've been trying to get the value of the slider position and then add a child for each increment in the slider value and then remove the child each time the slider value decreases. But no luck.
Thanks someone!
FPS Slider
Hey
I have a little project going on, and i need a slider to set the fps(frames per second) in a movie clip. It doesnt matter if it affects the other movies in the scene, so basically its just supposed to change the main fps. The problem is, that i dont know how to do this, and it would be great if you could help me with a code
thanks in advance
Slider Bar
To Whom It May Concern:
I, would like someone to acess my fla. file and render changes to
get my slider bar connected with the text object. However, I would like the text object to change state vertically (up-direction) as the sliderbar is move down.
Sincerely,
Kevin Smith
Help With Slider...
I'm trying to build a roll over button with a hidden slider.... i'm using a mask for hiding slider... trouble is slider doesn't work under mask... i mean i cannot chouse slider for moving....
Slider With A Mc
Hey guys,
I am looking for a way to create a button on a line that when the person viewing it moves the button from left to right (via dragging it), a new mc with say a circle gets bigger, and vice versa.
Can anyone quickly create a mock of this, or tell me the actionscript, I can't figure it out.
Thanks.
P
Help With Slider Please
Hi, i'm trying to have a slider inside a holder. The idea is you can navigate up or down through the up or down buttons of the remote control. The problem is it doesn't slide. I can get the file to load in okay but i can't get it to slide
Wondering if anyone can help me at all i'll attach a zip to show you, because i'm not the best at putting things in words. The main file is index.swf. Click OK and it should load the slidertest.swf into the remotes interface. From there, the up and down buttons should navigate up and down, but they don't .
If anyone could have a look at it and help me out i'd really appreciate it. What i need is for the up and down buttons to slide the image inside the remote control up and down.
Edit: Doh the file is too large to attach so i provided a link:
http://www.filthy-mind.net/sliderproblem.zip
Slider Help..
hey. the tutorial on Preloader and Transition for Dynamic Files was very helpful, but i was wandering if it is possible to add a loading bar or percentage instead of just "loading..."
ive been trying for a while and i cant figure it out. any help will be appreciated
cheers, evan
Slider
how do i create a volume slider for a streaming media. i mean something like this
http://www.nikkei.co.jp/bb/
thanks in advance hoping that someone will explain.
SLIDER HELP SLIDER HELP
Hello Everybody,
I am trying to make a website out of an image slider similar to the attached file. can anyone tell me how to insert text into it, because everytime i try to add text to it and publish it the text disappers leaving only the images. I have ttried to modify the code but still dont work.
To cut it in short i need help modyfing the attached file to enable me insert text to it and when clip is published the text is still visible.
Please Please Help, i am trying to incorporate it for a project am trying to do.
Thanks in advance
Slider Bar?
Hello, I am trying to create a interactive timeline with important dates on it. As the user rolls the mouse onto the interactive timeline area I would like a slider to follow their mouse. I would like a simple slider(or any graphic) to follow the mouse. The problem I am having is this slider must be fixed on a horizontal line and follow the mouse only left and right on its fixed line or plane and would prefer if it was only activated once the mouse cursor entered the timeline graphic and disabled or stops its actions once the user left the timeline. Can anybody help me out with a mouse script to do this or direct me somewhere. Thanks a bunch
X And Y Slider
Hi
I am trying to create a slider that can slider on both the x and the y axis.
For xample a user may slider a square along a fixed why axis and then be able to slide along a y axis at certain points and so on. I am not sure how tricky this will be - but its an interesting problem
Cheers
|