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




I Need A VERTICAL SLIDER



I need a VERTICAL SLIDER

that has a sumbit button

i want it to give a string like this

The square brackets are not there just showing where each part seperates
the line below is what the final string should look like

[commands.htm?"ignore this part(R=1)"]&["slider = (S=50)"]&[("the will be different buttons so it sends out which button you clicked on(B=1)]

commands.htm?R=1&S=50&B=1

The server then sends the slider level back

In internet explorer there is a function where you type "%" and it gets info from the server this is what it uses but it is "%07"



FlashKit > Flash Help > Flash ActionScript
Posted on: 08-09-2005, 11:35 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Vertical Slider
Looking to create a image gallery that vertically slides and shows only one photo at a time. Something like this

http://moma.org/exhibitions/2007/jeffwall/
or
http://www.spin.co.uk

Any suggestions?

Thanks
Nicholas

Vertical Slider
anyone else noticed any problems with the Slider component? If i specify horizontal, and change the minimum from 0 to anything else, the slider button goes off the slider. anyone found a workaround by chance? (other than write a custom slider component, which would be pretty straightforward admittedly!)

Vertical Slider
ActionScript Code:
starty = thumbsHolder._y;
bottom = thumbsHolder._y+thumbsMaskMC._height-thumbsHolder._height;
 
this.onEnterFrame = function() {
if (_xmouse > -435 && _xmouse < -150 && _ymouse>-190 && _ymouse<195) {
r = (_ymouse-starty)/(thumbsMaskMC._height-thumbsHolder._height);
dy = Math.round((((starty+(starty-bottom)*r)-thumbsHolder._y)/4)*0.5);
thumbsHolder._y += dy;
}
 
}


Guys, please take a look at above code. I would like to scroll a MovieClip (thumbsHolder) vertical with _ymouse. The only problem i have it doesn't stop when the movieclip y = starty & bottom.

Somebody please?

Thanks in advance.

Vertical Slider Is Killing Me
does anyone have an example of a vertical slider just like this horizontal one. or can help me make one that is vertical. http://www.flashkit.com/tutorials/I...m-909/index.php

I have been trying to figure it out for 3 days. I know you guy can do it.


thank you

casey

Vertical Volume Slider Help...
Hi:

Im trying to do build a vertical volume slider and everything seems to be working fine but one thing. When I drag the slide bar up the sounds goes to 0 volume and should be the opposite...I have no idea how to fix this...

I need help please,,


Here is the code Im using:

var xform:SoundTransform = new SoundTransform();
var chavez:Sound = new Sound();
chavez.load(new URLRequest("chavez.mp3"));
var chavezChannel:SoundChannel = new SoundChannel();
ch_mc.buttonMode = true;
ch_mc.addEventListener(MouseEvent.MOUSE_UP, function():void { chavezChannel= chavez.play(); } );

off_mc.buttonMode = true;
off_mc.addEventListener(MouseEvent.MOUSE_UP, function():void { chavezChannel.stop();});


volumeKnob.buttonMode = true;
volumeKnob.addEventListener(MouseEvent.MOUSE_DOWN, volumeKnobStartDrag);
function volumeKnobStartDrag (evt:MouseEvent):void {
volumeKnob.startDrag(true,new Rectangle(708,volumeSlider.y, 0,volumeSlider.height));
volumeKnob.addEventListener(MouseEvent.MOUSE_MOVE, volumeUpdate);
stage.addEventListener(MouseEvent.MOUSE_UP, volumeStopDrag);
}
function volumeStopDrag(evt:MouseEvent):void {
volumeKnob.removeEventListener(MouseEvent.MOUSE_MO VE, volumeUpdate);
volumeKnob.stopDrag();
stage.removeEventListener(MouseEvent.MOUSE_UP,volu meStopDrag);
}

function volumeUpdate(evt:MouseEvent):void {
xform.volume = (volumeKnob.y - volumeSlider.y) / volumeSlider.height;
chavezChannel.soundTransform = xform;
}

Thanks,

Jose.

Vertical Menu With Slider
Edit- apologies for the repost...i was using the search function for the site and not the forums. I have now found other posts on this, so sorry for the newbie repost!

Vertical Volume Slider
I need a vertical volume slider, but flash is crazy and instead of increasing volume as you drag it up it decreases it instead because of the origin point. the entire slider device is dragable too, so that is another dillema.

is this possible?

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 ();
}

Vertical Panel-slider Not Working
here's the setup:

"panel" -- MC doing the sliding.
"script" -- MC controlling the sliding
"btn1" - "btn3" -- buttons that set where "panel" needs to be

each button has this code (targetY is different for each button):


Code:


on( release )
{
targetY = 1000;
script.gotoAndPlay( "move" );
}



and the MC, script, has this code:

frame1 - labeled "stop"

Code:


stop();
baseRate = 5;


frame2 -- labeled "move"

Code:


difference = _root.targetY - _root.panel._y;
rate = difference / baseRate;
_root.panel._y += rate;


frame3

Code:


gotoAndPlay( "move" );



i'm copying the code from Drag Slide Fade: Actionscript for Designers, however, it's a horizontal slider. so all the targetY's and _y's in my script are targetX's and _x's in the book. i would think it should work for vertical sliding as well. am i missing something?

Replace Movieclip With Loaded One? (vertical Slider)
Hi!

I'm making vertical slider that works as a menu. Meaning that there is dozens of items scrolling. Item has imageMC and dynamic textfield. Items are created and removed depending if they are visible or not as there is so many of them. I to use xml to define each item, link and the imageMC, so that i dont have to make changes to to movie it self if menu changes.

Clip is getting slow if i load every single image every time it comes visible, so i reloaded images, and when itemMC comes visible it replaces ImageMC with the preloaded one.

Only problem that i have faced with this one is that i can't replace imageMC (inside itemMC) with the preloaded one.

imageMC = _parent.imageMC1; doesent surpricingly work...

Any ideas?

ps. is it better (faster) to remove hidden MC's or just hide them? I guess that if I have hundred of scrolling items with images it takes loz of memory?

thanx in advance!

Vertical Image Slider Using Horiz. Sliding Bar
Vertical Image Slider Using Horiz. Sliding Bar
Hello.

I am wondering if anybody could educate me on how to create a HORIZONTAL Scroll Bar that slides the content (a MC) Vertically?

Any help or advice or even a point in the right direction would be very much and greatly appreciated!

Thank you in advance!


Cheers!


morosa

Vertical Image Slider Using Horiz. Sliding Bar
Hello.

I am wondering if anybody could educate me on how to create a HORIZONTAL Scroll Bar that slides the content (a MC) Vertically?

Any help or advice or even a point in the right direction would be very much and greatly appreciated!

Thank you in advance!


Cheers!


morosa

Another Slider Question (make It Work Vertical)
peepz,

i have attached a great working horizontal-scroller but i want it to work also vertical.

can somebody tweak this FLA ?

thnx already PEEPZ!

Need A Vertical Volume Slider For Video Player
Hi All,

Need a vertical volume slider for a (flvPlayback) video player. Any good cs3 tuts or books out there? Has anyone acheived this? Any code and examples available?

Perhaps, if we work together, we can create a solution. ;) Come on "Lets get together".

Kind Regards,

Boxing Boom

Another Slider Question (make It Work Vertical)
peepz,

i have attached a great working horizontal-scroller but i want it to work also vertical.

can somebody tweak this FLA ?

thnx already PEEPZ!

DOWNLOAD FLA

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

Not Sure How To Go Vertical
Greetings,

I would love to make this slideshow in a vertical format but, I'm not sure as to how I can accomplish this.

Any help would be greatly appreciated!!!

Vertical Menu
Does anyone know the script to making a vertical scroller like the one seen on Philterdesign.com?

Thanks,

a..

Vertical Text
I want to make some text in a flash movie appear in a vertical position were you read it from top to bottom

Vertical Scroller
I am looking for a vertical scrolling menu like a slot machine type that repeats over and over again, but the catch is this I don't want the menu to be controlled by the mouse except if the mouse is over the MC is this possible? I made on that works but anywhere your mouse is on the screen the MC moves up and down, I just want a hot spot so when the mouse moves over the hotspot the MC moves up or down.

Hope that makes sense.

Regards,
-t

Looking For Fla [Vertical Preloader]
Hi iam learning about flash and would appreciated if anyone can show me how to make a vertical preloader, or a fla would be lovely, thanks.

Vertical Scroller Anyone?
I can't seem to configure the horizontal scrollers to make a vertical one.
I found an application that costs $29 (available at http://www.actionscript.org/links/flash/tools/) but I cannot use it because it exports an .swf that I cannot import on my movie (it would defeat the purpose because it becomes heavy keyframes instead of a nice dynamic movie).
Anybody can help me with this one?
Thanks in advance!
Mike

Vertical Scroller
I need a Vertical Scroller but in Flash.

Two problems continue to baffle me..argh!! (despite searching everywhere for clues directly on the 2 problem areas!)

1 How to make it fully automatic (if poss) (no scroll bar at all!)
and
2 How to make it scroll a variable distance (ie text length not fixed)

Hints on these 2 difficulties will be very appreciated!

Thanks
Stewart

[Edited by stewart111 on 08-05-2002 at 05:26 AM]

VERTICAL Belt Help
Hi.
I had this idea of having a convayer belt that goes round and round in the middle of the page with objects flating on it but i dont know how to make the objects loop.
Sorry if my english is poor i havent just failed the GCSE for no reason lol

Vertical Menu
I am asking if anyone has a tutorial for a vertical menu like the one on the lobby page of:

http://www.widegroup.net/broadband/menufull.htm

It just has an arrow slide down to whichever option is selected. I would really appreciate the help in making this. Peace

Vertical Ticker
Hi Does anyone know a tutorial or have a good auto scrolling vertical ticker, they could point me in the direction of?
It needs to be dynamic, basically be able to be updated from a text file or asp, so no tweening can be involved, I've been searching for ages but haven't found anything.
If u need any more clarity get in touch.
Roy

Vertical Menu
Can flash show animations outside its movie window?

If it can i need to get my hands on a menu that emulates the following menu....

http://www.burmees.nl/menu/examples/...etwoframes.htm

This is a HORIZONTAL menu but it can be switched to a VERTICAL menu which is the type i need.

I have been using it for a while but the problem is that is built in javascript and i use frames...

it will only display the submenu in the main frame if that page exists within mydomain.com, otherwise it gives an access denied error, i am told that this is normal.

any help would be apreciated!

D.

Help With The Vertical Scroll
i am trying to use the vertical scroll fla i downloaded from this website....but i do not know how to make that when you press certain button you go to certain page...

at the layer"variables & backdrop" i have this:

// ------------------------------------------------
// total menu items
ti = 22;
// ------------------------------------------------
// ------------------------------------------------
item1 = "Datos Personales";
item2 = "Datos Académicos";
item3 = "Experiencia Laboral";
item4 = "Entornos";
item5 = "Trabajos";
item6 = "Datos de Interés";
item7 = "Contacto";
// what to do with YOURs?
// remove the above LOOP (which creates dummy variable names.) START at "0"!!!!! Create variables named item0="blah", item1="test", item2="and so on..." and you're set! Look at the button action. It is currently set to GETURL and load a "swf" file with the same name as the button you just clicked on into a placeholder (which does not exist in this demo).

i only got that when i press the button it takes me to "item1.swf" (i file i created) but it doesn´t matter the button i am pressing....everyone takes me to the same place,....i want that each different button takes me to diferents places.......at the layer menu, there are a few movie clips at the one called bt+txt2 i have this action:

on (rollOver) {
/:text = ..:text;
}
on (rollOut) {
/:text = "";
}
on (keyPress "e") {
// DO SOMETHING
}
on (release) {
}
on (release) {
loadMovieNum("C:\WINDOWS\Escritorio\C DESIGN\flash\item1.swf", 0);
}

please help me cause i really do not know how to get it.....

Vertical Preloader
hi i'm making a preloader! basically i took a preloader bar and changed the _xscale to _yscale. i've got a mask which i would like to fill from bottom-up, but currently it's filling the mask top-down.
how can i make it bottom-up? can someone help me out? thanks! :O)
Ros

Vertical Menu Like The Following...
hi guys,
i´d like to create a vertical navigation system like these two ones:
24-7 media or/and loungeagency

I saw many tutorials about vertical menus, but they are all not what i want. Everything is a navigationbar, but not an interface like these two ones.


Are there any tutorials on this subject ?
Can you please help?

greetings bullys2003

Vertical Rotation
How do I rotate my mc vertically?

Vertical Rotation
Anybody know the AS for rotating a mc verticaly. I've been trying to figure it out but I'm makeing a right mess of it.

Flip Vertical
Is it possible to flip a letter vertical, as in a full 360degree flip.

If you type a T and create a new keyframe at frame 20 and then another one at frame 10. Now on frame 10, you can click modify, transform, flip vertical. However, from frame 10 to frame 20, it reverts back to the original position. It does not continue to flip.

Vertical Menu
I have a menu that vertically expands and contracts when a menu item is clicked. I'm trying to make static one of the menu items so that 2 submenu items always stay up but also "move" with the other menu items. But I'm having a hard time figuring it out. Attached is the .fla file (saved in flash mx). Any suggestions?

Vertical Sliding Nav?
How is this simple navigation achieved?
http://www.kerryedward.com/

I remember seeing a thread about this type of vertical stacking movement but I can't remember where.

source?

Vertical Tickle
I want to make a vertical marquee/tickle with loaded text from .txt file
is there any simple way how this task can be accomplished?
Please if i can avoid masks or motion tweens ...just a pure AS please
TYA

Vertical Menu
Hello!

I want to make a menu, the content of the menu would on keypress up move up and on keypress down move down.

Thanks

theredtitan

Xml Vertical Submenu Help
Hi xml expert out there. I need help.
please help.

1.I have a got xml menu but in this submenus are hidden. I dont want them to be hidden.
2. Onclicking the button it should load external swf in main.swf ,_target container.


PHP Code:



// universal XML parser, please do not distribute this.
XMLNode.prototype.toObject = function ()
{
  var obj = new Object();
  var i;
  var t;

  for (i = 0; i < this.childNodes.length; i++) {

    if (this.childNodes[i].nodeType == 1) {
      if (this.childNodes[i].firstChild.nodeType == 3) {
    t = new Object();

    t.value = this.childNodes[i].firstChild.nodeValue;
      } else {
    t = this.childNodes[i].toObject();
      }

      t.attributes = this.childNodes[i].attributes;

      if (obj[this.childNodes[i].nodeName] == undefined) {
    obj[this.childNodes[i].nodeName] = t;
      } else {
    if (!(obj[this.childNodes[i].nodeName] instanceof Array)) {
      obj[this.childNodes[i].nodeName] = [ obj[this.childNodes[i].nodeName] ];
    }
    obj[this.childNodes[i].nodeName].push(t);
      }
    } else {
      ;
    }
  }

  return obj;
};

ASSetPropFlags(XMLnode, [ "toObject" ], 1);
//

_global.buildMain = function()
{
    _global.main_mc = _level0.createEmptyMovieClip("menu_mc",2);
    
    var $i;
    for($i=0;$i<xml.menu.main.length;$i++)
    {
        var $main_btn = main_mc.attachMovie("main","main_"+$i,100+$i); // attach the main menu button...
        $main_btn.number = $i; // remember what number button this is...
        $main_btn.title.text = xml.menu.main[$i].attributes.name; // grab the name of this button from the XML file...
        $main_btn._y = $main_btn._height * $i;    // space accordingly.
        $main_btn.original_y = $main_btn._y // remember this y coordinate now...
        
        // create some simple mouse states...
        $main_btn.onRollOver = function()
        {
            this.gotoAndStop(2);
        };
        
        $main_btn.turnOn = $main_btn.onRollOut = function()
        {
            this.enabled = 1;
            this.gotoAndStop(1)
        };
        
        $main_btn.onRelease = function()
        {
            this.enabled = 0;
            this._parent.last_mc.turnOn(); // tell the last btn to play its rollOut state.
            this._parent.last_mc = this; // and now remember this as the last_mc pushed.
            buildSubNav(this.number); // go to the buildSubNav function with this number and generate the subnav from there.            
        };
    }
};

_global.buildSubNav = function($subnav)
{
    var $i;
    for($i=0;$i<xml.menu.main.length;$i++)
    {
        main_mc["main_"+$i]._y = main_mc["main_"+$i].original_y // reset the position of the main menu buttons.
    }
    
    var $sub_mc = main_mc.createEmptyMovieClip("subnav",3);
    $sub_mc._y = main_mc["main_"+$subnav]._y + main_mc["main_"+$subnav]._height; // position the subnav container below its corresponding button.

    var $j;
    for($j=0;$j<xml.menu.main[$subnav].sub.length;$j++)
    {
        var $sub_btn = $sub_mc.attachMovie("subnav","sub_"+$j,200+$j); // attach the sub button...
        $sub_btn._y =  $sub_btn._height * $j;    // space accordingly.
        $sub_btn.number = $j // the submenu number...

        $sub_btn.title.text = xml.menu.main[$subnav].sub[$j].attributes.name;
        
        // and now similar button functionaly to the main menu above...
        $sub_btn.onRollOver = function()
        {
            this.gotoAndStop(2);
        };
        
        $sub_btn.turnOn = $sub_btn.onRollOut = function()
        {
            this.enabled = 1;
            this.gotoAndStop(1)
        };    
        
        $sub_btn.onRelease = function()
        {
            this.enabled = 0;
            this._parent.last_mc.turnOn(); // tell the last btn to play its rollOut state.
            this._parent.last_mc = this; // and now remember this as the last_mc pushed.
            // here you can have a getURL or whatever.
        };
    }
    
    // and finally, we space the main menu buttons below the subnav.
    if($subnav < xml.menu.main.length-1 && $sub_mc._height > 1)
    {
        var $k;
        for($k=$subnav+1;$k<xml.menu.main.length;$k++)
        {
            main_mc["main_"+$k]._y += $sub_mc._height;
        }
    }
    
    
};


// this function loads our XML file and when finished loading converts it to an object (via the XML prototype above).
// that object is then send off to buildMain().
_global.initMenu = function()
{
    var $xml = new XML();
    $xml.ignoreWhite = 1;
    $xml.onLoad = function()
    {
        _global.xml = $xml.toObject();
        buildMain();
    };
    $xml.load("menu.xml");    
};

initMenu(); // launch the program.




xml code:

PHP Code:



<?xml version="1.0" ?>

<menu>
    <main name="Button 1">
        <sub name="Sub 1a" />
        <sub name="Sub 2a" />
    </main>
    <main name="Button 2" />
    <main name="Button 3">
        <sub name="Sub 1b" />
        <sub name="Sub 2b" />
    </main>
    <main name="Button 4">
        <sub name="Sub 1c" />
        <sub name="Sub 2c" />
    </main>
    <main name="Button 5" />
</menu>



lease please help.........please

From Vertical To Horizontal
Hi I have a question that I know is simple but I just can figure it out.
I got this tut to do a vertical image gallery thubnail section. but it is designed for horizontal and I need it vertical. Which variables do I switch to make it go from top to bottom.

http://www.flashkit.com/tutorials/In...-909/index.php

Also the command.

_root.scrollerName = _root.scrollerClip;

I know this says go to the root timeline and you will find the scroolerClip,

But what if you are going off a different mc then the root? Would it look like this

root.scrollerName = _root.kids_pg_text_mc.scrolling_kids;


Thanks for the help I am making a "bring your kids to work day" website from this year for my boss and I cant figure this out.

thanks
Danny

[MX] Vertical Bars
Hi everyone!

I am wondering if anyone knows how to create the vertical, semi-translucent bars that I've seen slide across an image on many web sites. I think they are created with masks, but I'm not quite sure how to use them. I've searched the web and am having difficulty finding anything. Could anyone give me a few tips or maybe point me in the direction of a tutorial?

Thanks!
vonatah

How To Get Thumbnails Vertical?
Hello, I've gone through the tutorial for the photo gallery with the scrolling thumbnails. I am now in the process of adding something similar to my own site only i would like to have the thumbnail pictures appear vertical. I am using the same code as in the tutorial. Any ideas?

Thanks

[F8] Vertical Image Pan
OK. I have modified the ActionScript in this file to create a vertical image pan onMouseMove. When you hover your mouse over the image, the image moves up and down, depending on mouse direction.

My issue is the contstrainedMove. The target constrains to the Stage.height. Now, since the MC is behind a mask, I would like to know how to constrain the MC to the mask as opposed to the Stage.height. In other words, when the pan runs successfully from the top to bottom (and vice-versa), the image MC should run flush to the mask (mask height), not the Stage.height.

I would also like to be able to plug and play this file to another .fla. Is it possible that this MC can run independantly from any constraints other than the mask that contains the MC? I can foresee issues with different Stage.heights being the target of the MC constraints, thus running the pan outside of its preferred visual location.

Example : vertical-image-pan.zip

Any takers?

Copyright © 2005-08 www.BigResource.com, All rights reserved