mikkelbarker: have a look at scotty’s v2 zip, that will work for prev/next buttons…After looking through that code, figure out what parts you don’t understand in particular and I’m sure someone (including me) will be able to help you out further…
But, here is the part of the code (in the V2 fla…) that controls the next/prev buttons. for this to work, you need to make mc buttons with instance names of ‘prevb’ and ‘nextb’ (your buttons don’t have any instance names)
[AS]
//function on ‘previous’ button on release
prevb.onRelease = function() {
//checks the current pic in containerMC, loads the last image of array if its first pic up
if (cur == 0) {
containerMC.loadPic(pArray.length-1);
// if pic in containerMC is not first pic in array, loads the pic before the current in array
} else {
containerMC.loadPic(cur-1);
}
};
//same thing only reversed for next button. if its the last pic of array, goes to first
nextb.onRelease = function() {
if (cur == pArray.length-1) {
containerMC.loadPic(0);
} else {
containerMC.loadPic(cur+1);
}
};
[/AS]
Actually i have tried looking at it. But I have a lot of problems with it due the difficulty understanding the languege. I have made it work showing my pictures, but my buttons get moved around. Also i don’t yet understand the gallery_xml.load(“gallery.xml”);
As you can see i am quite a newbe, but eager to learn. I have though come to the point were I for the time being would like just a simple gallery to work. Once Therefor, if you would have a look at my fla. and get it to work I would be greatfull.
Thanks
Bedankt Scotty,
With regards to this issue how to stop the autoplay to continously looping - when they reach the last image in the array?
Shine on.
Hi dr.ew,
So, your xml looks like this?:
<?xml version="1.0" encoding="UTF-8"?>
<gallery path="animation/">
<image title= "1/6"source="gallery/img_txt/images/setOne/pic1.jpg" desc="description text"/>
....
</gallery>
I did this aswell and added a third array to the Actionscript. This works and it loads the right text, but how do you apply the formatting tags?
Could you show me your xml file? Or do you somehow set the tags from Flash?
Thanks,
Rufus
Hi i had some luck producing a dynamic buttons.
Heres my final fla(mx) i want to replace the old menu but not sure how attatch movie works in relation to alignment.
Could someone have a look and maybe amend so the buttons appear where the old menu is with the text description underneath.
Thanks for you help…!
Well heres my version with dynamic buts.
Thanks goes to all
looks good! one thing i noticed is that if you have lots of images ( and therefore lots of buttons) the button list goes off the stage, or juts out beyond container_mc.
if you put this in your resizeMe function, the button row will adhere to the width of the displayed image.
nav._width = containerMC._width;
the drawback is that the buttons individual width will also skew; for long images, the buttons are wide, for narrow images the buttons become narrow. but at least they will be visible=]
Okay, I figured it out. The resizer won’t properly load swf’s that have been exported in Flash 7 player, only 6 or below. If you try to load a Flash 7 swf file then the entire movie freezes up. just FYI about an issue. It took a long night of experimenting to figure out that the error was in the export settings, lol!
Hello from Sweden
Thats my first post in this GREAT forum…I play with “resizeBorder_V2” and I have two questions
1.Is it posible that the images of the thumbnails are loading external via xml like the pictures?
2.I have see at: http://www.amivitale.com 2 nice effects…
On RollOver the thumbs are loading a image and it apears a blue information arrow that (if you rollOver) show a textinfo about the photo
is this posible to include this in resizeBorder_V2
Regards and sorry for my bad english
Vman, very nice site. This is almost exactly what I’d like to do with my family photos. I am fairly new to Flash programming and brand new to this thread. It has been a tremendous help. I have mainly been working with V3, but I’m hoping to add a couple of things like the menu you used to navigate to other thumbs and sets of pictures. If I could get a copy of your source (.fla and whatever else), I would really appreciate it. Thanks in advance for any help. I can attach my .fla if it would help.
Thanks
mathdaddy,
Thanks for the comp. Unfortunately, I won’t be around my computer till next Sunday as I am on vacation. I’ll post something when I get back. Just didn’t want you to think I was ignoring you.
This works: Create a clip or button with instance of stop and one for start. Also these functions disable the appropriate instances, thus “start” cannot be clicked more than once. There are no prev/next buttons.
Global var is the key here.
[AS]
function slideshow(){
if (cur == 0) {
containerMC.loadPic(pArray.length-1);
} else {
containerMC.loadPic(cur-1);
}
};
start.onRelease = function () {
start.enabled = 0;
stop.enabled = 1;
_global.slideInterval = setInterval(slideshow, 2000);
}
stop.onRelease = function () {
start.enabled = 1;
stop.enabled = 0;
clearInterval(slideInterval);
}
[/AS]
-rm
I’ve noticed that after changing the gallery.xml file Mozilla caches the xml data until the browser is shut down and restarted. I found this solution to the problem which might be useful to others:
[AS]
// Prevents caching of loaded files (TXTs, SWFs, XMLs etc…)
String.prototype.noCache = function(){
if ((_root._URL.substr(0,5)).toLowerCase()!=“file:”){
if(this.indexOf("?")==-1){
return this+="?noCache="+(new Date().getTime());
}else{ return this+="&noCache="+(new Date().getTime());
}
}else{ return this;
}
}
gallery_xml.load(“gallery.xml”.noCache());
[/AS]
this is the best thread ever i vonder if ther is any one out ther thet knows hov to change the fade to somting like this.
/M
yes of course that’s brightOffset
here add this to yur movie…
brightOffset();
}
};
}
MovieClip.prototype.brightOffset = function(alpha){
this.c = new Color(this.containerMC)
this.o = {rb:100,gb:100,bb:100}
this.up = true
this.onEnterFrame = function(){
if(this.containerMC._alpha < 100){
this.containerMC._alpha += 10
}
if(this.up == false){
this.o.rb -= 10
this.o.bb -= 10
this.o.gb -= 10
} else {
if(this.o.rb < 255){
this.o.rb *= 1.5
this.o.bb *= 3
this.o.gb *= 1.5
} else {
this.o = {rb:255,gb:255,bb:255}
this.up = false;
}
}
if(this.o.rb < 0){
this.o = {rb:0,gb:0,bb:0}
delete this.onEnterFrame;
}
this.c.setTransform(this.o)
}
}
thank you but i have no ide wher to put it in te script.
i download the mx.zip from thread 364
/M
HERE ARE BOTH VERSION OF THE FLA…
i hope this help…ok if not let me know
take care
this version of the mx. fla as the brightOffset AS on it…
GREAT JOB!!!
My questions is if it is posible that the button have a lite thump of the Pictures
or on (on RollOver) like att http://www.amivitale.com/main.html
Lambis
Thank you so very much it look´s excellent. . I wonder if its possible to have the same effeckt when image fades away ???
-thanks !
/M
Hey Sipher I’m on MX and got “unexpected file format” when trying to open your file. Any chance you could repost it?
:hr: