Poppin' The Browser's Scroller
I'm working on one of those full-browser Flash sites where the swf is set to 100% of the browser's width and height, and I am wondering if it's possible to resize the content, say changing the content's height from 800 to 3000 and have the scroller on the browser pop up so the user is able to scroll down to the contents on the bottom. But when the content is only 800 tall, the scroller is gone. Possible??
Thanks, Al
Ultrashock Forums > Flash > Flash Professional
Posted on: 2005-11-08
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Poppin Graphics
hey im making a banner for a friend but whne i go from the bitmap to the animation it looks like the whole thing jumps even though its at the same palce, can someone help me?
Pop Up Window X Poppin
i am trying to pop up a window of a set size from my swf. i am currently having a hard time. can anyone help?
i tried using this method
getURL("javaScriptopGame01()");
with the javascript in the head of html
works while publishing in the player but not on mozilla
then i tried
getURL("javascript:window.open('http://www.yahoo.com', '', 'width=400,height=400,menu=no,scrollbars=no')");
also pop up in player but not on broswer
then only script that makes the browser pop up
is getURL("file.html","_blank");
and i want to be able to able the size. what am i doing wrong? i double check my pop up are not blocked on browser.
raskolnikov
Scroller Resize When Browser Resizes Please Help
Please does anyone know what I'm missing? I need when the browser resizes to resize the scroller bar and mask also, I have got it to that stage it works fine when you resize the swf but when its embedded in a browser like explorer and you resize the browser the swf and scroller will not resize.
What I'm trying to achieve is something like this:
http://www.createthe.com
My script is this:
Stage.align = "LT";
// prevent the Flash movie from resizing when the browser window changes size.
Stage.scaleMode = "noScale";
// create a listener object
stageListener = new Object();
// add a methods for it to do certain things when the Stage is resized by our user
stageListener.onResize = function() {
scroller_ex();
}
Stage.addListener(stageListener);
scroller_ex = function() {
_root.body_txt.theMask._height = Stage.height - _root.body_txt.theMask._y - 10;
}
Heres the page
http://www.invert.com.au/proto/invertmain.html
and fla
http://www.invert.com.au/proto/invertmain.fla
Any Ideas thanks guys and gals
Scroller - Browser Vs. External Flash Player
Hi,
Having a strange problem with a vertical scrolling menu - here is the script:
on(press){
startDrag(this,0,0,0,0,_parent._parent.thelist.bar Dis);
_parent._parent.thelist.clicked = true;
}
on(release, releaseOutside){
stopDrag();
_parent._parent.thelist.clicked = false;
}
This script is on a sliding button that when clicked and dragged scrolls a menu movie to the left of it. When I view it by opening the SWF in Flash MX 2004, it scrolls fine (when you click, the cursor turns into a pointing hand). When it's in a browser, when I click it the cursor turns into a circle with a line through it, and won't scroll. When I release the mouse, however, the slider jumps to the right place and the movie moves. It just doesn't scroll. Is this a verion issue? My IE Flash plugin is up to date.
Thanks!
Html Fulscreen But Keep Scroller If Browser Is Small
hi there mates!
just finishing a website, and got up with a real big problem....
i cant use the fulscreen if the browser is small....
the site proportions are 900x600px, wich cant be seen in as 800x600 resolution...the menus get cutted out...
how can i keep the fullscreen apearence but use the html scroller if the browser is smaller than that 900x600px proportion ?
thanks in advance mates!
regards
Full Screen Flash With Browser Scroller
Hello,
I've made this full flash website (www.toledoarquitetura.com.br) but I got a problem. It was design to a minimum screen size of 955x600 px, but when visualized on smaller screens I can scroll the page because it got no scrollers bars!
I wanna know a way to active the scrollers bars with a screen size smaller than 955x600 for example...
Can someone help me in this quest ?!
thanks!
How To Print From Flash Wihtout Print Dialog Box From Poppin
Is there a way in flash 8 to print from a flash button in where the print dialog box does not pop up? Im developing a kiosk app and I need th user to print the screen without having to select the printer. I also dont want the app sitting in a browser in order for it to auto print.
Any help would be great
thanks
Stage Align Problem - Full Browser Wlash With Scroller
Hello everyone,
I've been searching how to make full browser flash site with flash scroller in it, just like here:
http://www.stilva.com/#/book/
and hopefully, I've found the solution at this forum. Everything looks great (even the scroller appears to be identical), but there seems to be one problem... The flash content is not centered in the browser window in fact, it is aligned to the left. I had my flash centered horizontally, but with this scroller it just cannot work this way. I used
ActionScript Code:
Stage.align = "TC";
which aligned flash exactly in center, but it made scroller go far right even beyond browser itself o.O ; unfortunately, the scroller uses the same AS
ActionScript Code:
Stage.align = "TL";
which makes stage and it's content go to the left side of the browser window.
So, my question is - how to make everything centered horizontally, while scaling browser window, so the scroller can stick to the right border?
Could someone help me find a solution?
Sorry for my English, check the demo file so you can understand what I mean...
http://www.filefactory.com/file/a8c4e2/n/FBF_scroll_rar
Convert Movieclip Scroller To Dynamic Text Scroller
I have code I borrowed that is set up to scroll a movie clip image. However, it doesn't work well if I replace the graphics with a text box as the scrolling becomes "jerky" as I think there is too much information for it to process with the complexity of the text. So I was hoping to change the scrolling content from a movie clip image with text to a dynamic textbox. But it will not function when I do that change. In this currrent setup, the movieclip instance name is "contentmain". I tried naming the instance of the dynamic textbox with that name, but no text shows up next to the scroller when I play the movie.
Here's the code:
scrolling = function () {
var scrollHeight:Number = scrollTrac._height;
var contentHeight:Number = contentMain._height;
var scrollFaceHeight:Number = scrollFace._height;
var maskHeight:Number = maskedView._height;
var initPosition:Number = scrollFace._y=scrollTrac._y;
var initContentPos:Number = contentMain._y;
var finalContentPos:Number = maskHeight-contentHeight+initContentPos;
var left:Number = scrollTrac._x;
var top:Number = scrollTrac._y;
var right:Number = scrollTrac._x;
var bottom:Number = scrollTrac._height-scrollFaceHeight+scrollTrac._y;
var dy:Number = 0;
var speed:Number = 10;
var moveVal:Number = (contentHeight-maskHeight)/(scrollHeight-scrollFaceHeight);
// Setup easing event
contentMain.desiredX = contentMain._y;
contentMain.onEnterFrame = function() {
this._y -= (this._y - this.desiredX) / 3;
};
scrollFace.onPress = function() {
var currPos:Number = this._y;
startDrag(this, false, left, top, right, bottom);
this.onMouseMove = function() {
dy = Math.abs(initPosition-this._y);
contentMain.desiredX = Math.round(dy*-1*moveVal+initContentPos);
};
};
scrollFace.onMouseUp = function() {
stopDrag();
delete this.onMouseMove;
};
btnUp.onPress = function() {
this.onEnterFrame = function() {
if (contentMain._x+speed<maskedView._x) {
if (scrollFace._x<=left) {
scrollFace._x = left;
} else {
scrollFace._x -= speed/moveVal;
}
contentMain._x += speed;
} else {
scrollFace._x = left;
contentMain._x = maskedView._x;
delete this.onEnterFrame;
}
};
};
btnUp.onDragOut = function() {
delete this.onEnterFrame;
};
btnUp.onRelease = function() {
delete this.onEnterFrame;
};
btnDown.onPress = function() {
this.onEnterFrame = function() {
if (contentMain._x-speed>finalContentPos) {
if (scrollFace._x>=right) {
scrollFace._x = right;
} else {
scrollFace._x += speed/moveVal;
}
contentMain._x -= speed;
} else {
scrollFace._x = right;
contentMain._x = finalContentPos;
delete this.onEnterFrame;
}
};
};
btnDown.onRelease = function() {
delete this.onEnterFrame;
};
btnDown.onDragOut = function() {
delete this.onEnterFrame;
};
if (contentHeight<maskHeight) {
scrollFace._visible = false;
btnUp.enabled = false;
btnDown.enabled = false;
} else {
scrollFace._visible = true;
btnUp.enabled = true;
btnDown.enabled = true;
}
};
scrolling();
Any ideas?
Thanks,
Dave
Convert Movieclip Scroller To Dynamic Text Scroller
I have code I borrowed that is set up to scroll a movie clip image. However, it doesn't work well if I replace the graphics with a text box as the scrolling becomes "jerky" as I think there is too much information for it to process with the complexity of the text. So I was hoping to change the scrolling content from a movie clip image with text to a dynamic textbox. But it will not function when I do that change. In this currrent setup, the movieclip instance name is "contentmain". I tried naming the instance of the dynamic textbox with that name, but no text shows up next to the scroller when I play the movie.
Here's the code:
scrolling = function () {
var scrollHeight:Number = scrollTrac._height;
var contentHeight:Number = contentMain._height;
var scrollFaceHeight:Number = scrollFace._height;
var maskHeight:Number = maskedView._height;
var initPosition:Number = scrollFace._y=scrollTrac._y;
var initContentPos:Number = contentMain._y;
var finalContentPos:Number = maskHeight-contentHeight+initContentPos;
var left:Number = scrollTrac._x;
var top:Number = scrollTrac._y;
var right:Number = scrollTrac._x;
var bottom:Number = scrollTrac._height-scrollFaceHeight+scrollTrac._y;
var dy:Number = 0;
var speed:Number = 10;
var moveVal:Number = (contentHeight-maskHeight)/(scrollHeight-scrollFaceHeight);
// Setup easing event
contentMain.desiredX = contentMain._y;
contentMain.onEnterFrame = function() {
this._y -= (this._y - this.desiredX) / 3;
};
scrollFace.onPress = function() {
var currPos:Number = this._y;
startDrag(this, false, left, top, right, bottom);
this.onMouseMove = function() {
dy = Math.abs(initPosition-this._y);
contentMain.desiredX = Math.round(dy*-1*moveVal+initContentPos);
};
};
scrollFace.onMouseUp = function() {
stopDrag();
delete this.onMouseMove;
};
btnUp.onPress = function() {
this.onEnterFrame = function() {
if (contentMain._x+speed<maskedView._x) {
if (scrollFace._x<=left) {
scrollFace._x = left;
} else {
scrollFace._x -= speed/moveVal;
}
contentMain._x += speed;
} else {
scrollFace._x = left;
contentMain._x = maskedView._x;
delete this.onEnterFrame;
}
};
};
btnUp.onDragOut = function() {
delete this.onEnterFrame;
};
btnUp.onRelease = function() {
delete this.onEnterFrame;
};
btnDown.onPress = function() {
this.onEnterFrame = function() {
if (contentMain._x-speed>finalContentPos) {
if (scrollFace._x>=right) {
scrollFace._x = right;
} else {
scrollFace._x += speed/moveVal;
}
contentMain._x -= speed;
} else {
scrollFace._x = right;
contentMain._x = finalContentPos;
delete this.onEnterFrame;
}
};
};
btnDown.onRelease = function() {
delete this.onEnterFrame;
};
btnDown.onDragOut = function() {
delete this.onEnterFrame;
};
if (contentHeight<maskHeight) {
scrollFace._visible = false;
btnUp.enabled = false;
btnDown.enabled = false;
} else {
scrollFace._visible = true;
btnUp.enabled = true;
btnDown.enabled = true;
}
};
scrolling();
Any ideas?
Thanks,
Dave
Text Scroller With Image With Mouse Scroller
Hi to all,
I have problem with flash. that i want to creat dynamic text & image scroller in scroller by creating custom scroller (not inbuilt component) That scroller i can scroll with help of mouse's scroller. (the mouse's scroller & image must be include in to the scroller box)
Help me !
Help me !
Reply me fast if u have solution for it!!!!
Regards,
Samual
Convert Vertical Scroller To Horizontal Scroller
Hi have a cool vertical scroller that I did try to convert to horizontal, but I could not make it work.
Can someone help ??
Below is the code for vertical scroller:
Thanks to anyone who can help.
//code by Billy T
//set a variable
targY=0;
//set the x position of the dragger
dragger._x = 370;
line._x = 370;
//set the drag action of the dragger
//drag is restricted to the height of the mask
dragger.onPress=function(){
startDrag(this,false,this._x,0,this._x,theMask._he ight-this._height);
}
//stop the drag
dragger.onRelease=dragger.onReleaseOutside=functio n(){
stopDrag();
}
//set the mask for the text
theText.setMask(theMask);
//the scrolling animation
theText.onEnterFrame=function(){
/*set a variable
this variable basically stores info regarding what fraction of the total text
is being displayed through the mask and ensures that dragging the dragger
from top to bottom will reveal all the text.
this allows you to change the amount of text and the scroller will update itself
*/
scrollAmount=(this._height-(theMask._height/1.3))/(theMask._height-dragger._height);
//set a new target y position
targY=-dragger._y*scrollAmount;
//set the y of the text to 1/5 of the distance between its current y and the target y
//change the 5 to a lower number for faster scrolling or a higher number for slower scrolling
this._y-=(this._y-targY)/5;
}
Horizontal Scroller...NOT Vertical Scroller
Hi all:
I was just curious if anyone knows of a good tutorial for a horizontal scroller ... I want to use arrows not a bar, and I can find the vertical tutorials, but I was curious if anyone knew of a horizontal one.
THanks in advance
Image+text Scroller, Form Scroller, And Loading External Text Files - Urgent
Hi everybody!
Does anybody know how to do the following things in Flash MX?
1.Make a scroller with text + images in it;
2.Make a scroller with text + a form in it;
3.I followed the tutorial entitled "Scrolling Dynamically Loaded Text", but the text that I tried to load has over 160 lines, and I can only scroll down to about half way of the total lines. Why is that?
4.I also tried to load xml files using the code <?xml version="1.0" encoding="utf-8"?> on the first line of each xml file, but the ', &, and " " don't work.
Can anybody help me, please? This is urgent!
Thanks in advance!
animind
Image+text Scroller, Form Scroller, And Loading External Text Files - Urgent
Hi everybody!
Does anybody know how to do the following things in Flash MX?
1.Make a scroller with text + images in it;
2.Make a scroller with text + a form in it;
3.I followed the tutorial entitled "Scrolling Dynamically Loaded Text", but the text that I tried to load has over 160 lines, and I can only scroll down to about half way of the total lines. Why is that?
4.I also tried to load xml files using the code <?xml version="1.0" encoding="utf-8"?> on the first line of each xml file, but the ', &, and " " don't work.
Can anybody help me, please? This is urgent!
Thanks in advance!
animind
Text Scroller Help - Scroller Won't Scroll Full Length Of Text?
I have a text scroller that calls for a external text file. I have 16 numbered items in the .txt file but only 12 items will scroll. Why is this and how do I fix it? Also, is there any way to format text in the .txt file so that it appears formatted in flash? Right now there is a bunch of spaces between the numbered items. Thanks anyone!!
Full Browser Flash, Vertical Scrollbar Just Like Browser?
In short:
http://www.subdisc.com/
Look at the right scrollbar, how do I accomplish this?
The height of my site site is bigger than the Stage.height.
I could use a browser scrollbar via Java, but since I want to be free in design of every component I would rather use a flash scrollbar.
But how?
Full Browser Flash Detecting Browser Size Help.
http://akmphoto.net/akmdesign_new.html
Anyone know the AS to make it automatically check the size of the browser for the listeners.... _notice when you resize the browser it works perfectly...but not when it first loads up...any ideas?
Code:
// ***Stage aligned top left
Stage.align = "TL";
// *** Stop the stage from scaling with the browser window.
Stage.scaleMode = "noScale";
stop ();
// initiate postitions and scaling values for objects
fluid._x = (Stage.width + 200)/2
fluid._y = Stage.height/2
bottomstretch._height = Stage.height;
rightstretch._height = Stage.height;
topstretch._width = Stage.width;
rightstretch._x=201;
tutoriobutton._x = Stage.width - tutoriobutton._width
bottomo._x = (Stage.width + 200)/2
// end initial position setting
//create a listner that checks to see if the browser window is resized
sizeListener = new Object();
sizeListener.onResize = function() {
// change movieclip properties when the window is resized.
topstretch._width = Stage.width;
fluid._y = Stage.height/3;
fluid._x = (Stage.width + 200)/3;
bottomstretch._height = Stage.height;
rightstretch._height = Stage.height;
//*note* 200 is the width of the left column
tutoriobutton._x = Stage.width - tutoriobutton._width
bottomo._y = Stage.height/1;
bottomo._x = (Stage.width + 200)/2;
};
Stage.addListener(sizeListener);
Full Browser Movie, But Use Browser Scrollbar When Needed
Is there any way to make a full browser swf that, at a certain point, stops scaling to the stage and allows the browser to use it's native scrollbars?
For example, say my flash site has a top bar (it's y is always 0) and a bottom bar (it's y might be stageHeight - 15). Is there any way to tell the movie to stop scaling if the bottom bar's y is less than say 300, and from that point have the browser display it's scrollbars allowing you to scroll the content?
Where To Get New Browser Profiles For Browser Compat Checks?
Does anybody know where I can get updated browser profiles for the browser compatibility check tool ("target browsers") in Dreamweaver MX 2004? My current list only goes up to IE 6 and Mozilla 1. I've looked around on the Adobe website and can't find anything, even in the Exchanges.
Thanks for your help,
Stephen
Fullscreen Swf In Browser Without Any Of The Browser Elements...
Hi Guys,
I've made a demo using FlashMX.Naturally, its a fullscreen demo (800x600) involving a lot of different movies loading & unloading at different levels.
I want to post this demo on the web, maybe a leaner version of what it is. And i want to keep it fullscreen. Obviously enough, i will have to embed it in a browser. Therein lies the problem. I wanted only the swf to be visible, and none of the browser-window elements to be visible. How do i go about it???!!!!
Any ideas...do i need to embed the flash movie using some javascript?? If yes, then what is it???
plz HELP!!!!
Regards & thanx,
Avrinder
How Do I Open Browser In The First Browser ?
I made the function..
getUrl("http://www.flashkit.com")
in the same browser of www.flashkit.com i want to open a new browser
of google.com... how do I do that??
I tried do geturl again but it open me a new browser.. .[/url]
Browser Inside A Browser
Hello all.
This is my first post. I have a question that might not even be possible but we'l give it a shot anyway. I would like to have a browser inside my flash movie. Basically I have a portfolio of sites that I have done and would like the sites to pop up in the flash movie with in a small window with all the browser functionality.
I know that I can do this by re-creating the sites inside flash and doing a screen print of a browser, then creating the site in the browser img. But that is not completely what I want. I want the browser inside Flash to be dependant upon the browser the user is using. Say the user is using Firefox, I want the browser to come up in Firefox vs. IE, Opera or anything else...
Does anyone know if this can be done? I am using Flash MX 2004 Pro. Thank you very much for any help or direction.
Pc Browser Vs Mac Browser Problems
My flash movie takes up the whole screen on a MAC and doesn't on a PC. It looks really small. first of all, I want the movie to be scalable but I want it to show up smaller than it does on a MAC. All i have on the source code is "width=100%" "height=100%" what the hell should I do?
also, I want to make the first page animation a separate flash movie, then load another URL so people don't have to see the first page over and over again. how do you make it so when the first animation ends, the next URL window pops up? any ideas guys?
www.dirtypop.org
thanks for your help, anyone.
Pc Browser Vs Mac Browser Problems
My flash movie takes up the whole screen on a MAC and doesn't on a PC. It looks really small. first of all, I want the movie to be scalable but I want it to show up smaller than it does on a MAC. All i have on the source code is "width=100%" "height=100%" what the hell should I do?
also, I want to make the first page animation a separate flash movie, then load another URL so people don't have to see the first page over and over again. how do you make it so when the first animation ends, the next URL window pops up? any ideas guys?
www.dirtypop.org
thanks for your help, anyone.
Browser Display Size Of Flash Movie / Need To Have Browser Match Movie Size
Hello,
I am having a problem getting my flash movies to come up in the broswer w/out any extra space around the movie. I have published all 3 ways out of flash, and even made may changes to the Dreamwever file with no luck.
Is it possible to have my movie pop up and the browser be 600x440 w/out extra background?
Please send help!
Thanks,
xcaliber_1
Scroller Help
Hi,
OK, I have a scoller and I was wondering if their is a way to skew it and have it scroll at a slant? Its a vert scroller and I would like to slant it to the left and have it scroll...you know slanted..
thanks
Mätt
Scroller Help
What I want to know is
if you make a scroller you have to make restrictions to the StartDrag ( top, bottom, left and right)
And now I'm wondering If you have a MC (MAIN)
and in that mc have an other MC (SCROLLER)(with the scroller and the scrolled text in it)
then how can you set the Startdrag properties(top,bottom, left right) with the _X position and _y position of the SCROLLER Mc instead of the MAIN mc
Help For Scroller
Well, my english is very bad, but i can read something.
I need help for to do an object accompanying the mouse moviment. For ex.: a menu that moviments to right, and the person puts the mouse on it, so it stops at that position.
I really like you understand this message, thanks.
Scroller
Please can someone help me, I'm looking for a scroller wich allows me to scroll dynamic text and pics
Thanks Mike
Scroller
How can i Ad links and pictures to a Flash scroller do i have to ad a script for this scroller cuz it only suports text but pictures and links it wont ..
Scroller Or Not
OK I have a problem....I am making a movie that uses an external text file....it will be in the form of a scroller but it will be a movie that scrolls on its own....for ex...
the movie will scroll the text automatically no scroll bar just a pane....
it will scroll to the first part of the text, then stop for about 5 seconds, then proceed to the second part of the .txt file and then stop for the same time and so on. then it will replay.....Help please.....
Scroller Within MC
I've got a simple text scroller worked out iwth actionscript but i want to place the whole thing within another movie clip. The problem is I don't know how to self refrence the clip for the buttons to control the text object.
onClipEvent (enterFrame)
{
if (hitTest( _root._xmouse, _root._ymouse, false))
{
for (i = 0 ; i < 5 ; i++)
{
if (_root.Myobject._x > -50)
_root.Myobject._x--;
}
}
}
I don't want to use the root command as it references back to the Scene1 timeline. I've tried "this" but that doesn't seem to work either.
If anyone can come up with an answer i'll be well chuffed.
Cheers
Scroller? How To?
I know there is a tutorial on it , but I tried it and didnt made it work! plaese help me out!!
I know it must be dynamic texte...HARRRRGGG!
I'm going crazy!
Scroller
Hi u all
maybe this question is already asked but plz help me its urgent
Plz i wanna creat a scroller by mouse, i mean when u move the mouse down in the scroll zone so the zone will scroll down and if the mouse move up so the zone will scroll up
I hope u understand
Thx in advance
c ya
Scroller. Can U Help Me With This?
Hello,
i am creating a scroller which has the buttons Up, Down and the small bar inside the scroll bar which u can drag up and down.
i want to scroll a MC.
I made everything work but if i drag the small bar in the end the position of the MC will be a few pixels (sometimes 5 to 10) different from the position i would get using the down or up button.
Does anyone has some kind od code which does this?
If u want i can also send my code so u can see what is wrong. I think it's because of the way i did it and the aproximations...
Anyway, if someone knows some really good code which scrolls a MC with Up, Down buttons, and dragable bar, let me know.
Do the components have the dragable bar? until now i couldn't find any.
Thanks,
Miguel
Scroller Help
Hi, is there a way to dupilcate a scroller from one frame to the next, even changing the text would not effect the other one?
Mine is a movieclip, and I am not sure how to go about to duplicate and make changes without effecting the other one.
Please help, great thanks.
Scroller Help
I have a movie clip called holder that holds a movie clip called textbar0. Textbar0 is duplicated using script on the main frame. with everything I have done to this file, this should be easy, but I can't figure out for the life of me how to make the textbar clips scroll depending on how many of them there are. can anyone help?
Scroller
Hi , i'm searching for a fla file for a movie.
It needs to be a textscroller where people that visit my site can add there own text and the scroller scrolls all the texts that are saved in the file.
I have been searching in the movie section but can't find what i'm looking for :-)
Greetz
Scroller
hi everyone,
ive submitted on much forums and with the question:
HOW DO YOU MAKE A SCROLLER.
I have got a lot of response, but for me itwas all crap!!!(no offense)
So please...do YOU know how to make a scroller(and wich actions you must use!?)
i hope someone knows how frustrated i feel right now, and have a solution.
thanks for your time.
Scroller Help
Hi, I am hoping someone could help me understand and change this movie clip i have (Flash - 5 btw).
The movie clip is a scroller which I download a while back (I can't remember where from now).
The contents of the scroller which i want to scroll is a seperate movie clip which loads it's contents from a .txt file.
The problems I am having are:
1 - I cannot seem to change the height of the text box movie, I can change it in flash, but when i publish and play it just appears at a set size.
2 - the last link in the contents jumps like crazy when I hoover over it.
3 - when there is less content than the size of the text box I would like the scroller to disapear.
4 - If I add a mask around the text box, the contents disapear, i have in place a custom mask for the mean time but this will have to go.
Thanks in advance for any help on this.
Deef
Help Me With My Scroller
I tried to create a simple scrolling text box in flash using a turorial i found on this site - for some reason i cannot understand it's not working - would anyone mind giving it a look and chekcing out what's wrong for me ?
thanks so much
Scroller
ok I want to create a simple scroller that will scroll a movie with static text in it. I've tried a million and a half tutorials and I can't figure it out. Please help!
-= greendog =-
Scroller
I want to change the actionscript so i fits my page, because I have the scroler in the middle of the page and I dont want the scroller to scoll when I am below y380 and over 300
if (_ymouse>300) {
reelSpeed = (_xmouse-center)/10;
reelPos = Math.round (reelPos+reelSpeed);
if (reelPos<leftStop) {
reelPos = leftStop;
}
if (reelPos>rightStop) {
reelPos = rightStop;
}
reel._x = reelPos;
}
tried to use || and && in this if (_ymouse>300) {
with _ymouse<380 so its stops below the but nothing works =/
Please help....sorry 4 my bad english....
/RaZorCleaN
Scroller
I am looking to make something like this: http://www.rcarecords.com/artists.html
If anyone knows tutorials or something that I can download to learn how they made it, that would be great.
Thanks!
Michael
SCROLLER - Please Help
In regarding to :
http://www.flashkit.com/movies/Scrip...y-87/index.php
I was wondering, if it may be possible to stop the scrolling when it reaches one end of the numbers (when it reaches 1 on the left side and 10 on the right side) instead of snapping back into the other set of numbers? If so, how? Can someone PLEASE show me how to do that?
Scroller...but Not?
hey can someone tell me how to do like a scroll bar thing?..
not a norm scroll bar but one where you click one of four links and you see that 1/4 of a screen.
if you dont get that then look at http://www.kurtnoble.com/ (posted by someone else on this forum)
on the details of websites they've done
(click portfollio then click on the "now" website [bottom right] on that look at the "details 1-7")
that effect!!!!!
thanks for reading and any help you may have
Scroller
Can anyone tell me where to locate a tutorial on how to make a scroll page?
Thanks
|