This is some cool drawings u got here its insane!!!!
Posted 8 months ago
Hey Everyone!
I proudly present this Fullscreen advanced flash file! It cost me quite allot of work but I think the result is very cool and will be of use for many of you. I listed a couple of special features of this fullscreen I think are making this file very special:

If you have any questions about the fullscreen flash file, mail me at mennorichardson@gmail.com
Posted about 1 year ago
Yes, I think flashjunkie is right. content is refered to alot insode the AS there is also some code on content itself.. But what is wrong with calling it the way its called now..?
Posted 8 months ago
Your talent is unbelievable! My hat is off and I’m bowing to you. Thanks!
Posted 8 months ago
Just wanted to point out, that..
... if your content MC (in the file its instance name is ‘mid’
is SMALLER than the browser windows height, it disabled the scrollbar properly, but the mouse wheel function still is active, and causes a bug which just scrolls your content down.
To fix it, put the same ‘if’ check on the mouse wheel function as is on the scrollbut onPress function. Below is the mousewheel code fixed:
mouseListener = new Object();
mouseListener.onMouseWheel = function(delta) {
if (Stage.height <= mid._height) {
MouseWheelInt = Stage.height/100;
delta = MouseWheelInt*delta;
scrollbut._y -= delta;
if (scrollbut._y < 0) {
scrollbut._y = 0;
}
if (scrollbut._y > (Stage.height-scrollbut._height)) {
scrollbut._y = (Stage.height-scrollbut._height);
}
}
}
Mouse.addListener(mouseListener);
Great file btw Richardson, I’ve used it countless times and love it to death
If you’ve already fixed this, then disregard!
Im about ready to purchase this, however I would like to know if the images are loaded into it by xml and how I would go about having a menu that would change the content thats being scrolled and move the scroll bar back up to the top if its not. Thanks!
Matt
Posted 7 months ago
Is it possible to make “scroll arrows” on top and bottom of the scroller like in the standard browser scroller like the one you can see to the right?
And by the way. Nice file. Keep em coming
Posted 6 months ago
Are those content (with the drawings) external movies?
if not, it would be better! ex: if someone had a portfolio, it would load as many content as possible, not increasing the file.
Posted 6 months ago
Nice File, Excellent work!!!
Was wondering if anyone who has purchased this file or if Richardson would know the answer to my question.
If i create a button within the content symbol “Mid” with the on release AS code to go to the third frame it doesn’t work. But if i take that same button with the same code assigned to it and put in on the actions layer on frame two, it then works? But obviously isn’t included in the scroll and is defaulted top left in a fixed position?
Am i being daft, can a button with AS assigned even work within an existing symbol?
Posted 6 months ago
I could you make the mouse wheel button work as soon as the page load, without having to click somewhere on the page to enable it ?
Posted 5 months ago
Do you have version of this for cs3? When I publish for player 9 the full screen goes away. I linked the html page to the swfobject_source.js file, but it still didn’t work. Please assist.
Posted 5 months ago
@gabrielsantana
No they are not. Since the point of this file isn’t to increase usability, it’s so showcase the fullscreen code among a few other useful code snippets.
@djlaw
I don’t quite understand what your saying, but it is absolutely possible to have a button with AS assigned to it inside an existing symbol (a MovieClip symbol of course).
Instead of putting the code directly on the button, give the button an instance name of ‘theBtn’ and then apply the below Actionscript to the frame the button exists on:
theBtn.onRelease = function() { //put your desired executed code here }
@JPB
That’s a general flash usability error. Even go to a highly developed site such as www.thefwa.com and it will have the same error. I’m not saying there isn’t a fix though…but I’m almost positive no one has found one yet.
@lenwonwu
Are you sure that you are exporting the movie for AS2 and not AS3 . The actionscript in this file is not written for AS3 and if you export it many of the functions will not work.
Posted 5 months ago
Any known issues with the scroller (both mouse and wheel) on Mac, PC and/or Browsers suchs as Safari, Firefox, IE? A few fullscreen scrollers on this site have had problems with Safari (Mac & PC). I can’t afford to have my clients viewers be scrolless because the majority of the content is on the bottom of the page. Using 100% 100% content placement. Thanks.
Posted 4 months ago
Also.. it seems that I have some components and AS2 that loads within the site which blows the mid (content) way up and leaving a large amount of open space below.
Is there a way to force the .y height of the scroller to 950px?
I uncommented the y = 100; and changed it to 950? but that didn’t seem to work.
Thanks again
Posted 4 months ago
Am I the only one with this problem. The content ease from top to bottom but not left to right and right to left. Any Clue ????
Posted 4 months ago
It’s ok now the _root.x was missing the _ at _root.mid._x = now every thing is fine. Great script.
Is it possible to scale the size of the scroll like a regular windows scroll ? If there is not many content to scroll, the scroller is large and if there’s a lot of content to scroll the scroll is smaller. Like windows scroll…
Posted 4 months ago
Hey whats up dude! I want to put a toggle icon anywhere on this file for fullscreen on monitor. i already bought one (toggle full/normal screen) but when you press it, it doesnt work in this file. can you help me out editing your actionscript or combine them with the other for its functionality? Thanks.
Posted 3 months ago