Preloader Making Scrollbar Not Work
This scrollbar works just fine until I add the preloader. Can someone please take a look and see if they can find the problem?
Thanks!
FlashKit > Flash Help > Flash Newbies
Posted on: 04-28-2005, 07:03 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Making My Own Scrollbar Work Is Driving My Totally Insane
Hi everyone!
I have made a movie in flash that contains a textfield wich receives its to be displayed data via php.
The content is asigned to the textfield bij the textfields instance name.
Now, I want to have a scrollbar&buttons, that simply scroll that textfield. Not the standard thing form mx, but My own design. I found several tutorials on the internet, but they all work only if the text is asigned to the textfields variable... And not as in my case, the textfileds instance name. I can't get any of them to work, and I'm near insanity.
So please!, anyone???
Making A Preloader Bar Work?
how do i make a preloader bar to work?
i already drew the images. 1st image is the outline of where the bar would load (shows how much loaded, how much left). 2nd image is the actually bar, and i put it into a movieclip.
now what code must i enter into either the movieclip bar, or the keyframe to make the bar actually grow with the percent of the movie downloaded?
please help, need urgent. (using flash version 5)
Making A Preloader Work With Mx 2004 Pro Components
Hi all - according to the rule books, the components included with a flash movie are loaded before anything else, including a preloader - so my current % loader doesn't show (I get a blank screen) until the components have loaded and then it appears (Setting itself automatically to 60-odd percent) before carrying on as it should.
To stop this, I've read that I should set all components so that they do not export in the first (Or 0 by the looks of it) frame. This seems to cause a problem as all my flash objects load, but the components don't.
How do I get both to work hand in hand??
thanks
frank
Making A Preloader Work With A _root Loaded Clip
Hello,
I have a main clip.
I load the mainclip into a preloader.swf
does ANYONE have a preloader.swf that works without loading the main clip into another clip? I have to load it on the stage, but when I do that, the preloader ceases to function.
Thanks in advance.
Scrollbar Doesn't Work (tutorial: Object-oriented Scrollbar)
(tutorial --> object-oriented scrollbar: http://www.gotoandlearn.com/play?id=71).
I followed the tutorials instructions and this is the code that i have now:
import caurina.transitions.*;
var yOffset:Number;
var yMin:Number = 0;
var yMax:Number = sb.track.height - sb.thumb.height;
sb.thumb.addEventListener(MouseEvent.MOUSE_DOWN, thumbDown);
stage.addEventListener(MouseEvent.MOUSE_DOWN, thumbUp);
function thumbDown(e:MouseEvent):void
{
stage.addEventListener(MouseEvent.MOUSE_MOVE, thumbMove);
yOffset = mouseY - sb.thumb.y;
}
function thumbUp(e:MouseEvent):void
{
stage.removeEventListener(MouseEvent.MOUSE_MOVE, thumbMove);
}
function thumbMove(e:MouseEvent):void
{
sb.thumb.y = mouseY - yOffset;
if(sb.thumb.y <= yMin)
sb.thumb.y = yMin;
if(sb.thumb.y >= yMax)
sb.thumb.y = yMax;
var sp:Number = sb.thumb.y / yMax;
Tweener.addTween(content, {y:(-sp*(content.height-masker.height)),
time:1});
e.updateAfterEvent();
}
Does anybody see what's going wrong? I'm a beginner beginner, so all could think of to do is check if everything was typed correct. (i double checked instance names and code). But can't seem te get it to work, nothing happens when i preview swf.
No compilers errors and no syntax error. Tweener class is installed properly. PLEASE help me i've been looking for hours now.
If someone could help me, would be great!!
Sorry for my english, thank you for your time.
Making A Scrollbar
im using flash mx pro
im doing a flash website.
i want to know how can i make a scrollbar for this flash file.
i already go to the tutorials but i cant get any results.
please help me...
Help With Making A Scrollbar
Hey,
Im trying to make a scroll bar in Flash MX 2004
I followed this tutorial http://www.kirupa.com/developer/mx/textscroller.htm
but when i got the the part where you darg-and-drop the scroll bar component over top of your text box, it is supposed to automatically resize, but mine does not,and i have tried everything, it doesnt work,
what am i doing wrong?
I definatly make a text box, and have dynamic text selected,
HELP!! plzz
Im trying to improve my dodgy website www.missjanneke.com and create a flash version instead....
its coming along very slowly.
Help With Making A Scrollbar
Hey,
Im trying to make a scroll bar in Flash MX 2004
I followed this tutorial http://www.kirupa.com/developer/mx/textscroller.htm
but when i got the the part where you darg-and-drop the scroll bar component over top of your text box, it is supposed to automatically resize, but mine does not,and i have tried everything, it doesnt work,
what am i doing wrong?
I definatly make a text box, and have dynamic text selected,
HELP!! plzz
Im trying to improve my dodgy website www.missjanneke.com and create a flash version instead....
its coming along very slowly.
Tutorial For Making My Own Scrollbar?
I'm developing a site in which I have a fixed content area. (My background image cannot repeat.) I originally thought I would just put together some sort of DHTML script with a few layers and some onMouseOver effects. However, I've decided it would simply look and function much better if I did it in Flash. The problem is, I don't know a thing when it comes to Flash. I was hoping to find a tutorial so that I could create my own scrollbar. I'd like this scrollbar to emulate your standard windows scrollbar and be linked to an external .txt file.
Is all of this possible for a newbie?
Making A Scrollbar Invisible ...
Hi,
It's been a while since I posted, but I'm stuck here !
The situation :
I've got a dynamic textfield 180px wide and 480px high (instancename: 'column') which gets data from an XML file and a Movieclip (instancename: 'bar') acting like a scrollbar on the right of it. Now, this works just fine.
Point is that the text may vary in length quite a bit.
What I want is to make the scrollbar invisible when the text is shorter than the height of the dynamic textfield.
I've been fooling around a bit, but I can't get the necessary information
I've been using trace(); to find out what information I could get, but even _width and _height are said to be 'undefined'
Any suggestions on how to fix this ?
Making The Scrollbar Invisible If There Is No Need For It
Hello peeps,
Hope you are all OK. For the record, I'm using Flash MX 2004 and have used the Flash MX Scrollbar component in my movie.
I have succesfully fetched content from a .txt file after following this tutorial. Here is the code I have used (it's in the same frame as where the text box first appears):
Quote:
//tell Flash to display special characters
System.useCodepage=true;
// set the text field to use HTML tags
aboutuscontent.html=true;
//create a new "LoadVars" object
myLoadVar = new LoadVars ();
//load the contents of the text file into the LoadVars object
myLoadVar.load("aboutus.txt");
//check to see if the loading is completed and, if so, put the contents in the text field
myLoadVar.onLoad = function (success){
if (success == true) {
aboutuscontent.htmlText=myLoadVar.aboutTxt;
}
}
It works fine! However, I'm trying to make the scrollbar invisible if there is no need for it, by adding this code:
aboutussb._visible = (aboutuscontent.maxscroll > 1);
at the bottom, however... this has just made the frame scrollable while the scrollbar stays invisible. I'm a bit confused!
Any help would be v much appreciated.
Thanks, Sion
Making A Scrollbar Slideshow
Hi everyone
I am a newbie to the group and to Flash, but I have done a lot of work in HTML and with Frontpage. I am currently getting to grips with Swish Max and also Flash MX profesional. I would like to make a slideshow for a website
EXACTLY like the one here
http://www.unit.nl/
Eg just a plain pannel with a plain scroll bar at the bottom that you can drag left or right and the pictures above scroll with it so you can view them.
Can ANYONE PLEASE HELP ME!!!
I have tried downloading the site to see how it works and getting the flash movies from my internet browser to see how they work in order to make my own, to no avail. I have also tried various pieces of flash slideshow software , but nothing lets me get the effect like the site above. I would just like a few ideas or pointers, is there any way to do it in HTML or with a Java Aplet or would it have to be flash? Could I take the 5 or six photos I want in the slideshow, join them together in photoshop so its a long , wide single photo and then animate that somehow ? I have looked at the masking command and thought about making one long photo of 6 or 7 seperate photos and then masking it off with a rectangel window that can be scrolled along. BUT how do I make the drag bar underneath drag the photos along behind the mask, or the mask over the photos!
Any ideas and help would be greatly apreciated!!!
[f8] Help Making Scrollbar Component
ello
in making my scrollbar component I've run into a problem. Each time the text of the associated textfield changes I need to scrollbar to either enable/disable itself according to the maxscroll property of the textfield. Pretty simple stuff really, but here's my problem:
I can't use onChanged event because thats only triggered by a users changes and not programatic changes, so I then tried using a watch but the problem with that is when the watch function is triggered, the value of the variable it is watching hasn't at that time changed, so if I check the maxscroll property it's still applicatble to the old value of text, not the new. If I force the textfield to update with the new value before checking maxscroll I envoke the watch function again (whilst still inside the watch) and enter into a recursive loop
as a quick work around I've got my watch function initiating an interval to check a few milliseconds later but this is far from idea
this is really frustrating as its such a simple thing I want to get working!!
cheers
Help And Explanation In Making A Scrollbar
Hello people I am a newbie here, I need help and explanation in making a scrollbar like the one in http://www.3d-sign.com/3d-sign/ under profile tab. I know a slider and a textbox is needed but I need to know the trick behind it. Help will be appreciated. Thanks~
Help And Explanation In Making A Scrollbar
Hello people I am a newbie here, I need help and explanation in making a scrollbar like the one in http://www.3d-sign.com/3d-sign/ under profile tab. I know a slider and a textbox is needed but I need to know the trick behind it. Help will be appreciated. Thanks~
SCROLLBAR Issues, Making Me Want To STROLL To A BAR
I am using the same "textbox" TextArea Component in a movie to load external XML files. I want the scrollbar to reset everytime it loads a new file.
I would have to put an action on each nav button.
see what i mean:
www.austinfitmagazine.com
Uggg... I hate those boots.
Angel-a-Danza
Proud wife of Tony, Proactive Spokesperson
Making A Custom Scrollbar With ActionScript 3.0
Hey all,
I am trying to learn how to make my own custom scrollbar, but I am running into a delema. Started learning flash with CS3 so the tutorials I have gone through have used actionscript 3.0, i.e linking to buttons to different keyframes. When I have searched for tutorials on line I have found a few really good ones, but I'm pretty sure that they are using actionscript 2.0. So my problem is i have to either re learn how to link buttons to keyframes in 2.0 or find a tutorial on custom scrollbars that uses actionscript 3.0. I think ideally i need to just purchase the Actionscript 3.0 bible and learn it so I actually understand the language and could just figure it out on my own. Thats another question. Do I learn 2.0 or 3.0? Anyway, here is the link to the tutorial I found...
http://www.oman3d.com/tutorials/flas...mscrollbar.php
If someone could just post a project file with an example that would be pretty cool too!!
Thanks,
Brett
Help Making MC Scrollable With Dragable Scrollbar...
I need help in finding an example or a tutorial. I can't seem to find one that does exactly what I need. What I need is to put a wide graphic/mc under a mask and then be able to scroll it only horizontally with a draggable scrolling bar (the 'middle' part of a normal scroller, but not the end arrows, per the designer). Also in another file I need to do the same thing, but have it scroll just up and down vertically. It also needs to have the logic to stop scrolling on reaching either end of the graphic/mc that is scrolling.
I have done several similar scrollers in that past, but my programming skill isn't quite robust enough to re-purpose them to do what I need. I have a scroller that does what I want this one to do visually, but it scrolls an external text file and counts the number of lines in the file to make the scroller etc. I don't know how to make this one scroll a graphic instead. (I can post this as an example if it will help anyone).
I have another file where I have put the 'scrolling' as animation in the MC itself, and have just the left and right arrows (with no dragable center) triggering the MC to advance/backup one frame at a time (and keep going as long as the mouse is down) , but I don't know how to program a dragable bar to have this same logic. I can post an example of this one as well if it will help.
Thanks in advance for any help or pointing me in the right direction!
Making A Custom Scrollbar With Easing?
hey was just wondering if anyone could give me a kickstart with any tutorials or anything? i was hoping to make one like the flashloaded one etc..
aiming to make it work with dynamic text though
The Oringe Scrollbar - Making A ScrollTo Function?
Hello.
I am currently making a site that uses Oringe.com's old fullscreen scrollbar. It's really perfect.
I was just wondering how hard it would be to implement some sort of scrollTo function. For example, I would have all of the content inside the scrollbar window. In this content, I would have a list of movieclips acting as buttons that would scroll to a specific y value (all of which would be in say 200px increments).
so I would love to have a simple function where I could execute scrollTo(n); where n=a givin y value. Basically acting as HTML anchor tags.
It seems like it wouldn't be too hard, but the code is a bit over my head.
Here is the code (the fla is located at http://www.oringe.com/download/blurScroll.fla):
Thank You!
Code:
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
////BLUR SCROLL v 0.1
////copyright (c) 2006 Benjamin Wong
////http://www.oringe.com
////
////NOTICE:
////Feel free to re-use and modify, but if you do use it, please link
////back to www.oringe.com! Thank you!
////
//////////////////////////////////////////////////////////////////////
//MODIFY the below variables to suit your needs:
//
//set your flash stage width here:
initStageWidth = 872;
//
//set how many pixels you want your content to move when you move
//the mousewheel here:
mouseWheelIncrement = 90;
//////////////////////////////////////////////////////////////////////
//DO NOT TOUCH the below code
//unless, of course, you want to change the script and
//workings of this code.
////////////////////////////
//import the blur filter (requires Flash 8 & actionscript 2)
import flash.filters.BlurFilter;
//blur = new BlurFilter(0, 1, 1);
////////////////////////////
//create a listener for the mouse wheel so the mouse wheel works
mouseListener = new Object();
mouseListener.onMouseWheel = function(delta) {
if (delta < 0) {
mainTargetY -= mouseWheelIncrement;
if (mainTargetY < Stage.height - main._height) {
mainTargetY = Stage.height - main._height;
}
}
if (delta > 0) {
mainTargetY += mouseWheelIncrement;
if (mainTargetY > mainInitY) {
mainTargetY = mainInitY;
}
}
}
Mouse.addListener(mouseListener);
////////////////////////////
//actions for scrollbar
//first init some frequently used variables
mainInitY = main._y;
scrollbarInitY = scrollbar.scrollbutton._y;
scrollOn = false;
mainTargetY = mainInitY;
scrollbarTargetY = scrollbarInitY;
//don't want to use hand cursor for scrollbar
scrollbar.scrollbutton.useHandCursor = false;
//actions for scrollbar button behavior
scrollbar.scrollbutton.onRollOver = function() {
if (!scrollOn) {
this.gotoAndPlay("over");
}
}
scrollbar.scrollbutton.onDragOver = scrollbar.scrollbutton.onRollOver;
scrollbar.scrollbutton.onRollOut = function() {
this.gotoAndPlay("out");
}
scrollbar.scrollbutton.onPress = function() {
scrollOn = true;
this.startDrag(false, this._x, scrollbarInitY, this._x, scrollbarInitY + scrollAreaHeight);
}
scrollbar.scrollbutton.onMouseUp = function() {
if (scrollOn) {
scrollOn = false;
this.stopDrag();
if (!scrollbar.scrollbutton.hitTest(_xmouse, _ymouse)) {
scrollbar.scrollbutton.gotoAndPlay("out");
}
}
}
//this is where the animation happens, within this function:
scrollbar.scrollbutton.onEnterFrame = function() {
if (scrollOn) {
mainTargetY = mainInitY-(main._height-Stage.height)*(scrollbar.scrollbutton._y - scrollbarInitY)/scrollAreaHeight;
} else {
scrollbarTargetY = -(main._y - mainInitY)*scrollAreaHeight/(main._height - Stage.height) + scrollbarInitY;
if (Math.abs(scrollbar.scrollbutton._y - scrollbarTargetY) > 0.2) {
scrollbar.scrollbutton._y += (scrollbarTargetY - scrollbar.scrollbutton._y)/2;
}
}
if (Math.abs(main._y - mainTargetY) > 0.2) {
//this is where we calculate the blur distance
mainOldY = main._y;
main._y += Math.ceil((mainTargetY - main._y)/2);
mainMovement = mainOldY - main._y;
//we flur the blur distance for performance gains
//(in theory, at least; this hasn't been tested)
blur.blurY = Math.floor(Math.abs(mainMovement));
main.filters = [blur];
}
}
////////////////////////////////////
//actions for stage resizing
Stage.align = "T";
Stage.scaleMode = "noScale";
resizer = new Object();
resizer.onResize = function () {
scrollbar._x = Math.ceil((Stage.width - initStageWidth)/2 + initStageWidth - scrollbar._width);
scrollAreaHeight = Stage.height - scrollbarInitY*2 - scrollbar.scrollbutton._height;
}
Stage.addListener(resizer);
resizer.onResize();
UI Scrollbar: Bolding, Italics, Making Paragraphs?
hi
im new to flash and i've recently made a scrollbox w/ a uiscrollbar
the scroll will only work if i put all of my text on one line in the actionscripting, but i need to make paragraph breaks, change colors and bold/italicize certain words
is there any way i could do this?
it would be GREATLY appreciated
Making Up/Down Arrows On Object-Oriented Scrollbar 1
Hey guys,
I have implimented the Object-Oriented Scrollbar 1 into a project I am working on, and now the client wants to add Up/Down arrows to the functionality.
Can someone help me figure out what to do to add that functionality? I was trying to just move the content, but it didnt update the scroller bar, and I am unsure of how to go about this.
This is for a large client, and I do not have the time to re-impliment a new scrollbar system.
Thanks so much!
Howto: Making A Fixed-size Scrollbar Thumb Tab
This might be a bit of a hack, but in customizing my FScrollBar skin, I wanted to have a thumb bar that was static in height, as opposed to scaling to a height proportional to the amount of text.
What I did was build the top thumb and bottom thumb to a height total to what I desired. I left the middle out completely.
Then, in the actionscript portion of the ScrollBar component, edit thusly:
(starting on line 92)
Code:
this.thumbHeight = 15 // this should be the height of your desired thumb
this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid;
this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop;
this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot;
this.thumbHeight = 15 // this should be the height of your desired thumb
this.midHeight = 0 // zero-out the middle portion
this.thumbMid_mc._yScale = 0 // zero-out the middle portion
this.thumbMid_mc._y = 0 // zero-out the middle portion
Taa-daa!
- Chris
Why Won't My Scrollbar Work?
Using a scrollbar component on a dynamic text field - rendered as HTML, multiline. I dragged the scrollbar component right onto the field and it configured automatically, but it's not working. What's the deal?
Help Please - Can't Get Scrollbar To Work
i dragged my scroll bar onto my dynamic text box (with the instance name "box") and it snapped to it, but i cant get it to scroll anything when i preview the movie.
if anyone can help i would really appreciate it. i am supposed to be done with this project tomorrow and it's like 90% done... everything except the scrollbar
thank you
Scrollbar Will Not Work
I'm having problems adding a scrollbar to this movie. Could anyone try attaching a dynamic textbox anywhere and a scrollbar. If it works than I might just be really slow tonight. If not then I think that there's a bug in it or something.
this is the fla
Tab Key Won't Work With Scrollbar
I have noticed that when you use the Tab key to tab through the buttons in a swf it will not work if there is a scrollbar on the timeline. the scrollbar is the component of flash.
does anyone know how to fix this?
thanks,
dawn
Tab Key Won't Work With Scrollbar
I have noticed that when you use the Tab key to tab through the buttons in a swf it will not work if there is a scrollbar on the timeline. the scrollbar is the component of flash.
does anyone know how to fix this?
thanks,
dawn
Scrollbar Doesn't Work?
hi all,
i'm trying to attach a scrollbar to my guestbook and for some reasons it just doesn't scroll?!
please look at the attached file and let me know if you're able to get it to work.
thanks!
michael
ps. the file is in flash mx version
Scrollbar Components That Just Don't Work?
Hello! I was wondering if I could get a bit of assistance on an issue I've been having with the Flash scrollbar component. Well, here goes.
I know I've used the scrollbar component in the past, and I know I've made it work, but for the life of me I can't make them function right now. I follow the instructions in the help file to the letter, but when I preview my file it utterly fails to display a working scrollbar. I simply get a greyed-out bar.
Here's a sample file I created. When I preview it on my machine, I don't get a working scrollie. Oh, and yes, that's AOLspeak I've tagged onto the end of the datafile so as to make it longer. Don't take it to heart. It's only a datafile.
Scrollbar Does Not Work For Xml Text In Pop-up Box?
Hello,
I'm having problems with creating a working scrollbar inside a pop-up box that contains XML text. I do have a scrollbar that works outside of the pop-up box, but when I place it inside the box, it does not work. The scrollbar on the outside of the box (that works) I hate and would love to have a scrollbar that when you press the arrows, the text scrolls. Simple, but when I tried using _root to refer to the XML variable of the textbox (title), it did not work. I don't know how to fix it... I need expert advice!!
Can you take a look at my .fla and see what is wrong here?
Scrollbar To Work With Text
Hey.
I got flash a long time ago thinking it would be easy, and im trying to start up. I have NO expirence with Action Script. so.........
I have a tutorial to make a whole website in flash, and im trying to edit it.
on the news page i want to have a text box but (the noob part) i try to drag a scroller from the components on-to it but it doesnt work with the text. can someone help me.
sorry for being a newb
peace.
tyler
aim-thebomb2
How Do You Make A Scrollbar Work?
Hello
Sorry for the stupid question...
I have made a movie clip of the content, and I want to put a scrollbar on the right hand side of the window so the viewer can scroll down.
So far all the tutorials I've read deal only with adding scrollbars to dynamic text fields.
Thanks,
Pipistrello
How Do You Make A Scrollbar Work?
Hello,
Sorry for the stupid question...
I've made a movie clip of the content page and I want to add a scrollbar to the right hand side of the page.
So far the tutorials I've read have only dealt with adding scrollbars to dynamic text fields.
Thanks,
Pipistrello
Scrollbar Does Not Work For Xml Text In Pop-up Box?
Hello,
I'm having problems with creating a working scrollbar inside a pop-up box that contains XML text. I do have a scrollbar that works outside of the pop-up box, but when I place it inside the box, it does not work. The scrollbar on the outside of the box (that works) I hate and would love to have a scrollbar that when you press the arrow, the text scrolls. Simple, but when I tried using _root to refer to the XML variable of the textbox (title), it did not work. I don't know how to fix it... I need to keep the structure of the file because it refers to my mp3 player.
Can you take a look at my .fla and see what is wrong here?
Scrollbar Doesn't Work With This
Hi,
I have created a button that when pressed it loads up some text from an external source. Since there is more text than the actual size of the text box I wanted to add a scrollbar to it but when I drop it onto the text and run it, it doesn't work can anyone help me please. this is really important to me.
Scrollbar Doesn't Work With This
Hi,
I have created a button that when pressed it loads up some text from an external source. Since there is more text than the actual size of the text box I wanted to add a scrollbar to it but when I drop it onto the text and run it, it doesn't work can anyone help me please. this is really important to me.
Why Won't My Flash UI Scrollbar Work?
I've attached a very simple FLA file and an associated XML file which all works perfectly. The only thing I don't understand is why I can't seem to get the scrollbar working. I'm sure I've named everything properly but it just won't associate with the text box. If anyone can shed some light on this and re-post my file with it working I'd be very grateful.
Thanks : )
Scrollbar Component Doesn't Work
hello, I'm having trouble getting my scrollbar component to work with a dynamic text box. I have another input box that you type into and press enter to pass the content to the second text box. The problem is, when the text is passed, the scrollbar doesn't seem to realize that text has been passed to it's object.
The files are found here:
http://www.fusionmedia.net/help/
there's an SWF and a ZIP containing the FLA used.
Please Help?
Thanks Guys!
Can't Get Scrollbar Component To Work Properly
I'm using MX and trying to add a scrollbar to a dynamic text field that pulls in its text from a separate text file. When I drag the scrollbar component onto the text field, it snaps in place and picks up the name of the text area, but when I test it, it does not allow the text to scroll even though there is more text. If you look at my sample, jump to slide 3, which has text that extends beyond the text window, but will not scroll. You can select the text and it will reveal what's not showing, but won't scroll. What's going on here?
Lecture sample (jump to slide 3)
.fla file
Scrollbar Does Not Work When Loaded Into Target
Hey guys!
Okay, I have a scrolling text file that is four frames long. It works great when opened up by itself. No problems.
I have a one frame main file that loads the scrolling text file into a target. It loads the file, but the scroll bar does not work! I've tried several different things like increasing the frames in the main file but nothing seems to work. I've ran out of ideas to try.
PLEASE HELP!
Scrollbar Does Not Work When Loaded Into Target
Hey guys!
Okay, I have a scrolling text file that is four frames long. It works great when opened up by itself. No problems.
I have a one frame main file that loads the scrolling text file into a target. It loads the file, but the scroll bar does not work! I've tried several different things like increasing the frames in the main file but nothing seems to work. I've ran out of ideas to try.
PLEASE HELP!
Scrollbar Doesn't Work-Whyyyyy?
Hey everybody!
I've already posted this message before but I haven't solved the problem yet. For some reason the scrollbar doesn't work who knows why. Can anybody help me, please?
The files are attached to this message so you can take a look at them. I would REALLY appreciate your help. If you help me, I'll send you a virtual kiss!
Thanks a lot!
|