Scrollable Frame/Images
Hi, i have been registered on the forums for a while but havent made proper use of them. Sorry if this thread is in the wrong place.
My question is this, how do you create a frame-like object in Flash? In HTML its using the frame tags.
The reason for this is that i want to be able to have a scrollbar to show different images vertically.
Thanx
KirupaForum > Flash > Flash 8 (and earlier) > Flash MX 2004
Posted on: 06-23-2007, 08:03 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Scrollable Images
I'm using Flash 8. I want to have scrollable images, similar to that of scrolling text. My stage isn't large enough to display 10 pictures, so I want to be able to use an arrow button, to show the other images. How can I set this up? Anyone know how to do this, or have a decent tutorial.
Thanks,
nofx1728
Scrollable Images In Flash 5
hey everyone I'm completely new and this is my first time posting.
I was just wondering if it is possible to do scrollable images in Flash 5? And if so give me some a little help. I've been workin with flash for a month now, so i seriously need a kickstart.Basically i need a scrollable Movie Clip I guess.
thanx.
Scrollable HTML Images...
Anyone know how to load html images through flash, and then make them scrollable?
I can get the images to load, but I can't scroll...
Scrollable Area With Images And Text
Hello all. I have a 600x400 movie. The left half has a component that plays video. On the right half I want to place a scrollable area that contains a list of all the available videos that can be played. For each video in the scroallable area I want to have a thumbnail, the video title, and a play button. The play button would move the movie to a certain frame where the appropriate video would play. I just dont know how to place images, and buttons, etc in a scrollable area. Any help would be appreciated. Thanks much.
How Do I Load Images Into A Scrollable Field?
Hi. I've been looking all over the web to figure this out, but I'm at a loss to understand it. I've been using the example found at http://www.actionscript.com/flashweek/00000668.html (the file of the example can be found at http://www.bizwerk.net/preload_jpegs...cript_com2.zip) to construct a kind of picture gallery, however I cannot figure out how to be able to scroll through the images. They just keep loading until they go off the stage area. I've researched loading pictures into a scrollable dynamic text box, but this code I'm using loads them into movie clips first (and then spaces them apart). I've also researched loading them into a list component, but I still haven't figured that out yet. Does anyone know how to use this code to make the list of images scrollable?
(I'm using Flash MX 2004, version 7.2, so if you submit a flash file made with a previous version, I won't be able to see it. )
Make Mc With Text And Images In It Scrollable?
Hi there, i cant find much resources on this, but i have about 2 a4 pages of text which also have some images in it. I'm trying to make it scrollable for the user in a nice smooth way.
I tried using the scrollpane component and attaching the mc as it's .sourse, but the scrollbar scrolls about 50 times further down than it needs to, so it is really ugly
Does anyone have some advice for the best way to scroll a mc with images and text. Just text would be easy, i could use the UIscrollbar component, but i'm not so lucky :>O
Urgent: Images And Scrollable Text Box
ok, here's the problem. i made a flash presentation and i wanted to include some images with the text inside the scrollable textbox area. unfortunately, that route doesn't work. is there a way to include images inside that type of area?
A Scrollable Library Of Images In Flash 5
I need to add a library of images to a garment designer I am developing.
anyone know of any tuts on this sort of thing. The user will need to be able to drag the pics out of the library and drop them onto garments they have coloured.
Thanx in advance.
Scrollable, Dynamic Images & Text
Hey,
I need to create a scroller which includes images and text. It is basically a news panel for a site that I am doing, and they want to include images and text for all news items.
I have done dynamic text before for sites, but it has always been pretty simple. I have a couple of concerns, and googling hasn't really answered any of my questions. Firstly, I want to know: Is it possible to have a scrollable field in Flash that contains both dynamic images and text? Looking at some posts both here and elsewhere, it appears that only Flash MX 2004 supports this, but it is buggy.
Secondly, does anyone know of any decent tutorials / sample movies / just general tips about how I would go about creating the attached design in flash (with the text aligning to the left of the image etc)?
Many thanks for your help!
Help In Makeing Autoloop Scrollable Thumbnail Images In Photogallery
hi everybody,
i have a vertical photogallary in which thumbnail images part i need auto scrollable,in which image is loading through XML,
http://www.evascrivosalon.com/salon.html
this site will take time to load be patient...friends...
this is the which i used in it........
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
image = [];
description = [];
thumbnails = [];
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
image[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
description[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue;
thumbnails[i] = xmlNode.childNodes[i].childNodes[2].firstChild.nodeValue;
thumbnails_fn(i);
}
firstImage();
} else {
content = "file not loaded!";
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("images.xml");
/////////////////////////////////////
listen = new Object();
listen.onKeyDown = function() {
if (Key.getCode() == Key.UP) {
prevImage();
} else if (Key.getCode() == Key.DOWN) {
nextImage();
}
};
Key.addListener(listen);
previous_btn.onRelease = function() {
prevImage();
};
next_btn.onRelease = function() {
nextImage();
};
/////////////////////////////////////
p = 0;
this.onEnterFrame = function() {
filesize = picture.getBytesTotal();
loaded = picture.getBytesLoaded();
preloader._visible = true;
if (loaded != filesize) {
preloader.preload_bar._xscale = 100*loaded/filesize;
} else {
preloader._visible = false;
if (picture._alpha<100) {
picture._alpha += 100;
}
}
};
function nextImage() {
if (p<(total-1)) {
p++;
if (loaded == filesize) {
picture._alpha = 50;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
picture_num();
}
}
}
function prevImage() {
if (p>0) {
p--;
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
picture_num();
}
}
function firstImage() {
if (loaded == filesize) {
picture._alpha = 0;
picture.loadMovie(image[0], 1);
desc_txt.text = description[0];
picture_num();
}
}
function picture_num() {
current_pos = p+1;
pos_txt.text = current_pos+" / "+total;
}
function thumbNailScroller() {
// thumbnail code!
this.createEmptyMovieClip("tscroller", 1000);
scroll_speed = 25;
tscroller.onEnterFrame = function() {
if ((_root._xmouse>=thumbnail_mc._x) && (_root._xmouse<=thumbnail_mc._x+thumbnail_mc._widt h)) {
if ((_root._ymouse>=(hit_right._y-40)) && (thumbnail_mc.hitTest(hit_right))) {
thumbnail_mc._y -= scroll_speed;
} else if ((_root._ymouse<=(hit_left._y+40)) && (thumbnail_mc.hitTest(hit_left))) {
thumbnail_mc._y += scroll_speed;
}
} else {
delete tscroller.onEnterFrame;
}
};
}
function thumbnails_fn(k) {
thumbnail_mc.createEmptyMovieClip("t"+k, thumbnail_mc.getNextHighestDepth());
tlistener = new Object();
tlistener.onLoadInit = function(target_mc) {
target_mc._y =(target_mc._height+0)*k;
///target_mc._y =(target_mc._width-5)*k;
//trace(target_mc._width+"t"+target_mc._parent._rota tion)
target_mc.pictureValue = k;
target_mc._alpha = 50;
target_mc.onRelease = function() {
p = this.pictureValue-1;
nextImage();
};
target_mc.onRollOver = function() {
this._alpha = 100;
thumbNailScroller();
};
target_mc.onRollOut = function() {
this._alpha = 50;
thumbNailScroller();
};
};
image_mcl = new MovieClipLoader();
image_mcl.addListener(tlistener);
image_mcl.loadClip(thumbnails[k], "thumbnail_mc.t"+k);
}
///////////////////////////////////////////
and this code i used in thumbnail_mc to loop but its not looping just it just go to last image and stop there....
onClipEvent (load)
{
//ycenter=0;
speed=1/100;
}
onClipEvent (enterFrame)
{
var distance=_root._ymouse-ycenter;
_y+=(distance*speed);
if (_y > 455) _y=-123
if (_y <-455 ) _y=123;
}
so i just want to where ihave to change in the script to make it Thumbnail images AUTO loopable/ SCROLLABLE
Moving Images Frame-by-frame With Mouse Movement
Hi, I'm new to flash mx, so please help me out in details. thanks.
I have 10 images in 10 frames ( 1 image per frame ). So I'm trying to make the frame to go to the next one when the mouse is moved to the right, and make the frame to go to the prev one when the mouse is moved to the left.
Can someone please help me? I really need to have this done ASAP.
Thanks for all the inputs.
Moving Images Frame-by-frame With Mouse Movement
Hi, I'm new to flash mx, so please help me out in details. thanks.
I have 10 images in 10 frames ( 1 image per frame ). So I'm trying to make the frame to go to the next one when the mouse is moved to the right, and make the frame to go to the prev one when the mouse is moved to the left.
Can someone please help me? I really need to have this done ASAP.
Thanks for all the inputs.
Jagged Images When Not On Frame One
Has anyone else experienced the problem of images (graphpics) getting jagged if they are in anything other than a one frame (root) movie? I've had this problem over and over on different machines and different versions of Flash. I've tried everything to do a work around, put the entire site in a movie clip and put that on frame one of a one frame movie, load it in externally into a container clip, etc. it's just doesn't fix the problem...
Oh yeah, the problem doesn't have to do with the x, y, being integers. They are on exact integers on everytime line (parent on down). It has to do with the movie being longer than one frame on the root... I can post an example if that helps.
(Sorry to keep editing) It also is not that I'm resizing the images in Flash, they are being placed in at 100% and not resized. (just trying to save you time in responding!)
Images Into Frame With Buttons
I wanted to have 10 or so buttons and by clicking each button It would bring up
a different picture from the library (Or a folder on my pc) onto the movie.
But I would like this to be done with one frame (If Possible)
Sort of like a dress up game but adding the pics with buttons instead of dragging them around.
I have tried different codes but nothing works
Anyone know how I can do this ?
Thanks
How Do I Take Several BMP Images, Per Frame, And Lining Them Up?
Okay, I'm making an animation using Pivot Stickfigure beta 3 and I decided the best way I could do this is to save the animation as several different bmp images for quality look, this animation has well over 2500 frames and I'm not even close to done, I'm guessing that the animation when completed will run at least over 10 minutes. Anyhow I'm wondering how do I take those bmp (each has it's own frame) and align them up in the center?
Thank you.
newbyn00b
Images Continue In The Next Frame
This code goes right but the images (book, pencil...) appears again in the next frame. How can I solve this problem?
Help me!
//drag and drop code//
var startX:Number;
var startY:Number;
var counter:Number = 0;
var soundReq:URLRequest = new URLRequest("woodblock.mp3");
var woodblock:Sound = new Sound();
woodblock.load(soundReq);
pencil_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
pencil_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
schoolbag_mc.addEventListener(MouseEvent.MOUSE_DOW N, pickUp);
schoolbag_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
book_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
book_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
notebook_mc.addEventListener(MouseEvent.MOUSE_DOWN , pickUp);
notebook_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
student_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
student_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
teacher_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
teacher_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
friends_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
friends_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
function pickUp(event:MouseEvent):void {
event.target.startDrag(false);
reply_txt.text = "";
event.target.parent.addChild(event.target);
startX = event.target.x;
startY = event.target.y;
}
function dropIt(event:MouseEvent):void {
event.target.stopDrag();
var myTargetName:String = "target" + event.target.name;
var myTargetisplayObject = getChildByName(myTargetName);
if (event.target.dropTarget != null && event.target.dropTarget.parent == myTarget){
reply_txt.text = "Good Job!";
event.target.removeEventListener(MouseEvent.MOUSE_ DOWN, pickUp);
event.target.removeEventListener(MouseEvent.MOUSE_ UP, dropIt);
event.target.buttonMode = false;
event.target.x = myTarget.x;
event.target.y = myTarget.y;
counter++;
woodblock.play();
} else {
reply_txt.text = "Try Again!";
event.target.x = startX;
event.target.y = startY;
}
if(counter == 7){
reply_txt.text = "Congrats, you're finished!";
}
}
pencil_mc.buttonMode = true;
schoolbag_mc.buttonMode = true;
book_mc.buttonMode = true;
notebook_mc.buttonMode = true;
student_mc.buttonMode = true;
teacher_mc.buttonMode = true;
friends_mc.buttonMode = true;
stop();
//next page code//
proximo_BT.addEventListener(MouseEvent.CLICK, release1);
function release1(evt:MouseEvent):void {
nextFrame();
}
Switching Images Within A Frame
Hi, total newbie and totally freaked out, did the search on google and did the search in online help, no use.
Seeking to switch images in a frame (without switching the frame of course). Like DynamicText allows to switch text.
Basically have numbered images which I want to call to the screen from an arrayed index, yes have a good idea of scripting and none of Flash.
Any pointers would be highly appreciated.
Is Loading Many Images In First Frame Efficient?
I am doing something like a company advertisement in flash (for web ofcourse) and i need to display a clip everytime a user clicks a particular button.
There are 8 or 9 such buttons.
I dont want the user to wait for the clip to load in runtime at each button click. Will loading all images in first frame work? How heavy will it be on the memory then?
Random Frame Stops Working When Images Are Used
Hello,
I have built a movie (Flash MX 2004 Porfessional) with the objective of going to a different frame each time the page loads. The movie works fine when I only have text in any of the frames. As soon as I add an image to any of the frames the ramdomization quits working. On top of that, the behavior is Opera/Netscape and IE is different.
In IE, the movie always displaysframe 1 (no content, just the actionscript).
In Opera/Netscape the movie always displays frame 2 (the first frame with content).
The code:
code:
var randomFrame; // Stores the randomly picked frame number
var numFrames; // Stores the total number of frames on the timeline
numFrames = _totalframes; // Assign _totalframes property to numFrames
// Pick a random frame
randomFrame = Math.floor(Math.random( ) * numFrames + 2);
gotoAndStop(randomFrame); // Send playhead to chosen random frame
I have attahed the file for convenience sake.
You can also see the behavior by going to the following two links:
with images (not working)
http://www.prophegy.com/temp/flash.html
w/o images (working):
http://www.prophegy.com/temp/flash2.html
Any insight into why this happens is greatly appreciated!!
John
Loading Frame Images For Movie, Most Effective Way?
Ok, basically i am just wandering what everyone thinks if the best way to load a movie.
I am learning OpenGL, and hopefully DirectX soon as well, and in some of my projects i am going to be displaying them on my website. I am going to be taking a frame by frame screen**** of my OpenGL movies to import them into flash, and i was wandering what everyone thinks is the best way to do it?
In my understanding i have two options,
1.) Take my Fla and load them all into it by hand.
2.) Make it more dynamic and loadthem at runtime via ActionScripts LoadMovie Command.
Now it would be easier on me to do #2, but i am not looking for ease. I am looking for the most effective in FPS at Runtime, Load Speed, and obviously tied into Load Speed, the File Size for people to load.
So which would be faster, better, smaller, ect.?
Thanks to any replies!
Attaching Movies/images To A Specific Frame
Hi,
As far as I know, attaching movies/images, using attachMovie for internal elements, or loadMovie for external ones, always attaches it to the first frame.
So what if I want to attach something, let's say, to the second frame? Is it possible to do?
What I need to do is to dinamically build an animation on a movieclip with external images, so some images go to the 1st frame, and other go to other frames.
How can I do this with AS?
Best regards.
Movie Clip Images Deteriate If Not On Frame 1
Hi,
I'm having a real problem with a flash movie which I desperatly need to get sorted out ASAP.
I've a selection of logo's which simply need to fade in and out one at a time. This short looping animation is in a movieclip. Now if the movieclip is on frame 1 the logo's are in the quality they should be but if I place the movie clip on another frame with a stop(); command the logo's deteriate as if the .jpegs have been stretched slightly out of porportion.
I've tried everything I can think of such as having the logo movieclip in one file and then loading it into another level on a main movie and a later frame.
I really don't think I'm doing anything wrong as I use Flash everyday and generally know what I'm doing but I've never come across this problem before. If anyone has any idea's or know of any bugs in flash which may cause this please let me know.
Thank you, Craig
Trying To Display 2 Random Images In A Single Frame
Im trying to display 2 random images from a directory on my mainpage. I have the files listed in my xml file.... images.xml and using the following script pointing to my instance name picture_mc. all works well for 1 image..how can I get a second image and position it correctly? Do i have to clear the variables? is there an easy way to place the mulitple images into location? Script below...thank you for any help! Please keep explanations simple, I'm very very new at this:
this._x = 400; //Offset from top-left corner (0,0)
this._y = -100; //Offset from top-left corner (0,0)
xmlImages = new XML();
xmlImages.ignoreWhite = true;
xmlImages.onLoad = loadImages;
xmlImages.load("images.xml");
function loadImages(loaded) {
if (loaded) {
xmlFirstChild = this.firstChild;
imageFileName = [];
totalImages = xmlFirstChild.childNodes[0].childNodes.length;
for (i=0; i<totalImages; i++) {
imageFileName[i] = xmlFirstChild.childNodes[0].childNodes[i].attributes.title;
}
randomImage();
}
}
function randomImage() {
if (loaded == filesize) {
var ran = Math.round(Math.random() * (totalImages - 1));
picture_mc.loadMovie(imageFileName[ran],1);
pause();
}
}
Scrollable MC
If I have a movie clip that contains a list of names, and images to go along with those names, how do I make a custom scrollbar that allows you to scroll through the list (including the images)? I've used the scrollpane component in MX, but this needs to be custom, not the generic gray buttons and bar.
This is fairly urgent, as I need it done for a client tonight.
Thanks a lot, I appreciate it.
Carl
Scrollable MC
If I have a movie clip that contains a list of names, and images to go along with those names, how do I make a custom scrollbar that allows you to scroll through the list (including the images)? I've used the scrollpane component in MX, but this needs to be custom, not the generic gray buttons and bar.
This is fairly urgent, as I need it done for a client tonight.
Thanks a lot, I appreciate it.
Carl
Is This Scrollable ?
Hi everyone
I have this array menu wich is loaded from external txt.
the big problem is that I need to put a large number of items, and I have not enough space in the movie to do so.
So I think that the best way to do so is by using an scroller effect(rollover, release, doesnt matter)
I've tried a lot of methods, scrollPane, never worked out, even the mask seems to have no effect.
the menu is composed by:
_root.menu.menuItemBase.(labelName+menuButton)
labelName - dynamic text field
menuItemBase - menuButton
I'm newbie in actionscripting. Any help is very welcome
Here's the code I use in the frame:
code: submenu = "WEBDESIGN";
i = 0;
test1 = new LoadVars();
test1.load("data/menu1.fst");
test1.onLoad = function(success) {
if (success) {
sectionNames = this.nome.split("|");
sectionImages = this.imagem.split("|");
sectionInfo = this.infos.split("|");
sectionCount = sectionNames.length;
sectionCount2 = sectionNames.length-1;
menuItemSpacing = 1;
for (i=1; i<=sectionCount; i++) {
_root.menu.menuItemBase.duplicateMovieClip("menuIt em_"+i, i);
_root.menu["menuItem_"+i].labelName = sectionNames[i-1];
_root.menu["menuItem_"+i].labelImage = sectionImages[i-1];
_root.menu["menuItem_"+i].labelInfo = sectionInfo[i-1];
_root.menu.menuItem_1.gotoAndStop("end");
loadMovie("imgs/"+sectionImages[0], _root.img);
_root.infos = sectionInfo[0];
if (i != 1) {
_root.menu["menuItem_"+i]._y =
_root.menu["menuItem_"+(i-1)]._y+_root.menu["menuItem_"+(i-1)]._height+menuItemSpacing;
}
}
}
};
_root.menu.menuItemBase._visible = false;
function checkButtons() {
for (i=1; i<=_root.sectionCount; i++) {
currentItem = "menuItem_"+i;
if (currentItem != _root.activeItem) {
_root.menu["menuItem_"+i].gotoAndStop(1);
}
}
}
next_btn.onRelease = function() {
i++;
if (i>sectionCount2) {
i = 0;
}
loadMovie("imgs/"+sectionImages[i], _root.img);
_root.infos = sectionInfo[i];
_root.menu["menuItem_"+i].gotoAndStop(1);
trace(i);
};
prev_btn.onRelease = function() {
i--;
if (i<0) {
i = sectionCount2;
}
loadMovie("imgs/"+sectionImages[i], _root.img);
_root.infos = sectionInfo[i];
trace(i);
};
By the way I'm using MX2004
Scrollable Map
Im looking to have a scrollable map much like the one in this example, however I need it to scroll vertically as well as horizontal as in the sample.
Anyone know where I could land a source file for this?
Any help would be appreciated!!!
http://www.leemonlaw.com/scan.html
Thanks
Jesse
Scrollable MC
Ok wondering if anybody can help me out on this one. I have a form I created that needs to be placed inside of a Monster template and the page it goes on does not give me enough room for the form itself, so I need to have the form be able to scroll if this is possible. The form is self contained in one MC and the width is fine for the page, but the length is not. So what I am asking is, does anybody know basically how I can make the form MC scroll. Thanks in advance
Scrollable... Everything?
--------------------------------------------------
Hi
Is it possible to have (exactly like the scrollable text you can make in flash by using dynamic text boxes and scrollbar components) scrollable everything???
How can i do this if it is possible.
i would like it to be able to scroll through text and pictures mainly pictures... also what would be good is if the scrollable content can contain animations.
--------------------------------------------------
--------------------------------------------------
i was wondering if the way to do this is to make a separate movie and put all of the content on and then add a script... or something to make it scroll. This movie would then be loaded in another movie in a target using the load movie actionscript and it would be scrollable within the target.
--------------------------------------------------
stealth
Scrollable... Everything?
--------------------------------------------------
Hi
Is it possible to have (exactly like the scrollable text you can make in flash by using dynamic text boxes and scrollbar components) scrollable everything???
How can i do this if it is possible.
i would like it to be able to scroll through text and pictures mainly pictures... also what would be good is if the scrollable content can contain animations.
--------------------------------------------------
--------------------------------------------------
i was wondering if the way to do this is to make a separate movie and put all of the content on and then add a script... or something to make it scroll. This movie would then be loaded in another movie in a target using the load movie actionscript and it would be scrollable within the target.
--------------------------------------------------
stealth
Scrollable Map
Hi
Q: Can someone direct me to a fla or tutorial on how to create a scrollable map? What I mean by this, I hope to make clear, is a map that is larger than the screen but one where I can 'scroll' around to see different parts of the map....
Please,
freedom
XML Scrollable Txt Box
I have created a dynamic txt box that loads from an xml document.
the buttons on the side will enable the user to scroll through the xml document but I seem to be getting an undifined statement.
traced the output and received
1 Day Month Year
thanks once again slaine
frame 1 scene 1 script
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("timemachine.xml");
function loadXML(loaded) {
if (loaded) {
_root.number = this.firstChild.childNodes[i].childNodes[0].firstChild.nodeValue;
_root.day = this.firstChild.childNodes[j].childNodes[1].firstChild.nodeValue;
_root.month = this.firstChild.childNodes[j].childNodes[2].firstChild.nodeValue;
_root.year = this.firstChild.childNodes[j].childNodes[3].firstChild.nodeValue;
trace(number+" "+day+" "+month+" "+year);
number_txt.text = _root.number;
day_txt.text = _root.day;
day_txt.text = _root.month;
day_txt.text = _root.year;
} else {
content = "file not loaded!";
}
}
i = 0;
j = 0;
button script (button name bt+)
on (press) {
i = i+1;
if (i>=i1) {
i = i1-1;
}
_root.number = number_array[i];
}
button script (button name bt-)
on (press) {
j = j-1;
if (j<=0) {
j = 0;
}
_root.day = day_array[j];
}
Previous Frame Overlay..... Frame By Frame By Frame By Frame By Frame By.....
Hello there.
I am trying to create a small animation just as a little bit of fun. I would like to do it frame by frame.
I have a simple question to ask about frame by frame animation.
When drawing frame by frame, you would usually have a transparent overlay that you can compare with the next frame. Is there a way to do this in flash without having to copy the previous keyframe into a new keyframe on a new layer?
Thanks Emdiesse
"Slideshow" Of Images In A Frame.
I'm wanting to create somewhat of a slideshow that will appear in the corner of a frame. Around it will be text.
Since there isn't any animation other than the slideshow in the scene, I'd like to keep it all in one frame. Is there any way to do this without a billion lines of A.S.? If not, can someone explain an easy way to do it in the first place?
Thanks
Scrollable Text
Please does anyone know where I can find a good tutorial on how to make scrollable text in a text window?
Thanks
Scrollable Picture
I'm trying to make a draggable scrollbar that works with a picture instead of text.
Any Ideas?
Benjo.
Scrollable Menus
Hi all
I've made a scrollable menu which either scrolls up or down 50 pixels depending which arrow you press the problem is i don't know how to set the boundries of this menu so when you click down to the bottom of the menu it won't go any further down when you click the down arrow
Here is the code i have used to scroll the menu movieclip
on (release) {
setProperty ("/target_item", _y, getproperty("/target_item", _y)-50);
Any help would be great!!!!
Cheers
Jon
Scrollable Text
Please, please , please can someone help me. Go to http://www.spineshank.com and check out there scrollable buttons. I NEED TO KNOW HOW TO DO THIS. I know there are plenty of scripts like that on this site but none where you can make the buttons link to a differant frame or scene (Wich is what i'm trying to do) Can anyone help?
Info Box And Scrollable?
hey guys - i need some advice
i have about 25 buttons and i want to make a scrollable info box popup over the current screen - how can i do this (in an easy way!!!!) or do you have better sugggestions?
thanks
yechiel
Scrollable Text
I'm new to Flash MX and Flash in General. I know enough to get by to do the basic stuff. Now I am working with a scollable text....it'll scroll no problem...but I want to insert a scroll bar Vertically that is so I can have it as a visual for my customers who are looking at the text. My scrollable txt is my resume so...it's a scrollable text field now......any ideas how I can attach the bar to work with the scrollable textbox?
Scrollable Text Box
Created swf file w/dynamic text box & 2 scroll buttons up/down. Control/Test Movie works fine. Convert same to MC and text does not appear in box. Text box & scroll buttons are present & buttons work. Get no message that the text file could not be found or loaded. Have checked action script - it looks good. Text file is in same directory as swf and fla file. Any help would be appreciated.
Regards, Ron
Scrollable Links Box
Hi there, I would like to make all my links little pictures but i only have a small space to put them in...
Is there some way to put buttons/pictures into a scrollable text box? or something that can do the same thing?
Thanks for any help people!!!
Scrollable Balls
Probably fairly simple...
A menu system where you click down on left or right arrows to horizontally scroll through a selection of 16 footballs.
here's a rough idea of what it would look like
http://www.ben-baker.co.uk/Flash%20Help
what a load of balls,
thanks
Scrollable Picture Box
I am trying to make a picture box that can be scrolled.
I am sort of making portofolio site, and I want to put a picture window or something with my pieces, and being able to scroll it down so that I don't have to fit it in in one page.
I made a button of small image because I want it to be able to be cricked and open up the new window with enlarged image. and I put all of them together and made it a new button, and put the scroll pane on top of it, hoping that would work, but obviously it didn't
I want it kind of look like this: except I can use generic scroll bar in the components.(is it legal to put the link to the site and wanna do something like this?)
http://www.motown.com/classicmotown/frameset_2.html
So if anyone out there can explain how I can do this, I would appreciate it.
Thanks,
Shun
Scrollable Component?
Hi all,
I've created a component that creates icons and groups, however: some times the icons don't fit in this zone (vertically), how can I make this zone Scrollable?
thanx
PeeWeeK
Scrollable Timeline
is it possible to create a dragable scroll button which allows the user to control the movie timeline?
|