Good design barisintepe,just the way i like it.
Posted about 1 year ago
These are so cool! 5/5
compliments.
An idea is to put the script for each main button in a single .as file so all buttons could be customized at once.
Posted about 1 year ago
Ditto to the comments above – great work – simple and effective – will buy the file when I can think of something to use with it 
Hi,
Just downloaded this script. Was wondering how to add hyperlinks to each button.
Thanks
Posted 10 months ago
Hi flashharry.. hyperlinks = html links?..Please sent to me email.. barisintepe@gmail.com
Posted 10 months ago
hi barisintepe.
rated this 5/5 – the icons look like a million and there is lots of them. like it alot. but…
what if I wanna use these buttons in a AS3 .0 project?
I guess I need to change this code:
// icon up limit value
limit = -5;
flip = true;
flip_count_max = 6;
// icon up and down speed
speed = 1;
// When mouse pointer over the button
hit_area_mc.onRollOver = function() {
icon_up = true;
};
// When mouse pointer out of the button
hit_area_mc.onRollOut = function() {
icon_up = false;
};
// When mouse pointer click to button
hit_area_mc.onRelease = function() {
//_root.gotoAndPlay(“your_label”
;
// play the box_highlight_mc animation
flip_count=flip_count_max
flipflop = true;
};
icon_up_mc.onEnterFrame = function() {
if (flipflop) {
if (flip_count>0) {
flip_count -= 1;
icon_up_mc._visible = flip;
icon_mirror_mc._visible=flip
flip=!flip;
} else {
icon_up_mc._visible=true
icon_mirror_mc._visible=true
flipflop = false;
}
}
if (icon_up) {
if (icon_up_mc._y>limit) {
icon_up_mc._y -= speed;
icon_mirror_mc._y += speed;
}
} else {
if (icon_up_mc._y<0) {
icon_up_mc._y += speed;
icon_mirror_mc._y -= speed;
}
}
};
but to what?
Posted 9 months ago
How can I put some of these icons in my html page? Sorry but I have no idea… Thanks for your time.
Posted 9 months ago
Hi..Felisan..I dont know AS3 ..I can’t help you..
Hi Foureux..I dont understand..please give me details..
Posted 8 months ago
@felisan, this should do the trick :
import flash.events.MouseEvent;
import flash.display.SimpleButton;
// icon up limit value
var limit = -5;
var flip = true;
var flip_count_max = 6;
// icon up and down speed
var speed = 1;
var icon_up;
var flip_count;
var flipflop;
hit_area_mc.addEventListener( MouseEvent.MOUSE_OVER, RollOver);
hit_area_mc.addEventListener( MouseEvent.MOUSE_OUT, RollOut);
hit_area_mc.addEventListener( MouseEvent.MOUSE_UP, Release);
hit_area_mc.addEventListener( Event.ENTER_FRAME, EnterFrame);
// When mouse pointer over the button
function RollOver(event:MouseEvent):void{
icon_up = true;
};
// When mouse pointer out of the button
function RollOut(event:MouseEvent):void{
icon_up = false;
};
// When mouse pointer click to button
function Release(event:MouseEvent):void{
//_root.gotoAndPlay("your_label");
// play the box_highlight_mc animation
flip_count=flip_count_max
flipflop = true;
};
function EnterFrame(event:Event):void{
if (flipflop) {
if (flip_count>0) {
flip_count -= 1;
icon_up_mc.visible = flip;
icon_mirror_mc.visible=flip
flip=!flip;
} else {
icon_up_mc.visible=true
icon_mirror_mc.visible=true
flipflop = false;
}
}
if (icon_up) {
if (icon_up_mc.y>limit) {
icon_up_mc.y -= speed;
icon_mirror_mc.y += speed;
}
} else {
if (icon_up_mc.y<0) {
icon_up_mc.y += speed;
icon_mirror_mc.y -= speed;
}
}
};
Posted 8 months ago
Hello Barisintepe,
I would like to buy your file but i have some questions, i’m good in html, php and many siftwares. I know bit of Flash too. Previously i’ve bought files and used in my projects. I want to know will it be easy for me to edit the files in Flash as i’m not an advance user and plus will i be able to place on html website?
Other thing is i don’t know how to add html links in Adobe Flash and if you could teach me or tell me it’ll be really nice. Love the file!
Thank you!
Posted 3 months ago
Hi ekanse..Please send to me email..I can try help you..
Posted 3 months ago
Hi Baris
Firstly I would like to thank you for this great set. : ) As we say in Turkey it is cheaper than wather too. However I could not open the file with the FlashMx that I have.
I have the version 6 and actually this might be the problem. Whenever I tried to open the big fla file It crashed.
I will send you an email trough sineksekiz@yahoo.co.uk regarding my problem. I would apperaciate if you would help me.
Thank you.
Posted 2 months ago