Flash CS3 - Flash CS4

Free tutorials and scripts for all.
Actionscript 3.0

Elastic Gallery

This is a discussion on Elastic Gallery within the FlepStudio utilities forums, part of the Tutorials category; Hey, i have a small question to anybody intrested- how i can put a FlepStudio Events Scroller (First One) in ...


Go Back   Forum Flash CS3 Flash CS4 > English Forums > Tutorials > FlepStudio utilities

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #11 (permalink)  
Old 23-07-08, 12:34
Junior Member
 
Join Date: Jul 2008
Posts: 1
Rep Power: 0
inqu is on a distinguished road
Re: Elastic Gallery

Hey, i have a small question to anybody intrested- how i can put a FlepStudio Events Scroller (First One) in one swf with this gallery? I just want to make a scroll menu with categories/albums of the pictures.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #12 (permalink)  
Old 29-07-08, 05:18
IKONG's Avatar
Junior Member
 
Join Date: Jul 2008
Posts: 4
Rep Power: 0
IKONG is on a distinguished road
Re: Elastic Gallery

im a newbie here... this was an awesome work flep.... praise you man... thanks..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #13 (permalink)  
Old 30-07-08, 12:16
Junior Member
 
Join Date: Nov 2007
Posts: 4
Rep Power: 0
nilayvakil is on a distinguished road
Re: Elastic Gallery

Great Gallery Flep.

Actually I am a very new guy with AS3 and I may not pronounce my problem with a lot of high end words.

I have been working on this and I find it extremely well built. There were some questions I wanted to ask.

1. Is there anyway I can create MOUSE_OVER function for thumbs so that when mouse is over any thumbs the des_text shows up?

2. Is there any way to create a pop up for bigger picture so that when I click on it it pops up to a bigger image?

These I was working on. But I could not figure out how to do it..

If anyone can help me on this..?

Thank you very much in Advance.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #14 (permalink)  
Old 31-07-08, 03:04
IKONG's Avatar
Junior Member
 
Join Date: Jul 2008
Posts: 4
Rep Power: 0
IKONG is on a distinguished road
Re: Elastic Gallery

Quote:
Originally Posted by nilayvakil View Post
Great Gallery Flep.

Actually I am a very new guy with AS3 and I may not pronounce my problem with a lot of high end words.

I have been working on this and I find it extremely well built. There were some questions I wanted to ask.

1. Is there anyway I can create MOUSE_OVER function for thumbs so that when mouse is over any thumbs the des_text shows up?

2. Is there any way to create a pop up for bigger picture so that when I click on it it pops up to a bigger image?

These I was working on. But I could not figure out how to do it..

If anyone can help me on this..?

Thank you very much in Advance.
i think this is exactly what your looking for....

http://www.paulvanroekel.nl/picasa/coolfullscreen/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #15 (permalink)  
Old 31-07-08, 03:28
Junior Member
 
Join Date: Nov 2007
Posts: 4
Rep Power: 0
nilayvakil is on a distinguished road
Re: Elastic Gallery

That is a very nice Gallery but I am not looking for that effect. Ok I will try to explain again.

When we open Elastic Gallery all the Thumbnails Lineup and come down to the lower portion of the screen. When we click on any of thumbnails it shows the image on the left hand side of flash and description comes on the right hand side of the screen.

Now I was looking for a solution to show this description when we move mouse over any of the thumbnails. Right now Elastic Gallery does not have a facility to show the description of thumbnails. I was thinking that this will help in case we have too many pictures with different categories together. Just by moving mouse over thumbnails will reveal their description should be a good feature.

I tried to add some coding by myself but as I am a big duffer I could not finish it. I hope someone can help me.

Thank you
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Flash Multi Gallery
  #16 (permalink)  
Old 01-08-08, 04:04
Junior Member
 
Join Date: Nov 2007
Posts: 4
Rep Power: 0
nilayvakil is on a distinguished road
Re: Elastic Gallery

Dear All,

I did some experiments. I am complete new so I did something wrong and I can not debug it. I will explain,

1. I separated code to show description in Pic.as like this,
Code:
private function showPic():void
        {
            removeEventListener(Event.ENTER_FRAME,checkX);
            loader.alpha=0;
            loader.x=x-loader.width/2;
            loader.y=y-loader.height/2;
            _fla.addChild(loader);
            
            Tweener.addTween(loader,{alpha:1,time:1,transition:'linear'});
            
            //_fla.addThumbsEvents();
            
            //_fla.des_txt.visible=true;
            //_fla.des_txt.text=_fla.obj_array[id].des;
        }
        
        //Separating description with these lines of Code
        private function showDes():void
        {
            _fla.addThumbsEvents();
            
            _fla.des_txt.visible=true;
            _fla.des_txt.text=_fla.obj_array[id].des;
        }
        //Ends Here
This came out perfect no problem since there is no major change.

2. Now I copied
Code:
private function showDes():void
        {
            _fla.addThumbsEvents();
            
            _fla.des_txt.visible=true;
            _fla.des_txt.text=_fla.obj_array[id].des;
        }
to Main.as and gave
Code:
public function addThumbsEvents():void
        {
            for(var i:int=0;i
            {
                thumbs_array[i].mouseChildren=false;
                thumbs_array[i].buttonMode=true;
                thumbs_array[i].addEventListener(MouseEvent.MOUSE_OVER,showDes);
                thumbs_array[i].addEventListener(MouseEvent.MOUSE_DOWN,loadPic);
            }
        }
        
        public function removeThumbsEvents():void
        {
            for(var i:int=0;i
            {
                thumbs_array[i].mouseChildren=true;
                thumbs_array[i].buttonMode=false;
                thumbs_array[i].removeEventListener(MouseEvent.MOUSE_OVER,showDes);
                thumbs_array[i].removeEventListener(MouseEvent.MOUSE_DOWN,loadPic);
            }
        }
Now the problem is that I am getting an error
ArgumentError: Error #1063: Argument count mismatch on org.flepstudio::Main/showDes(). Expected 0, got 1.

Anybody please can you help?

Thanks again in Advance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #17 (permalink)  
Old 04-08-08, 03:06
Junior Member
 
Join Date: Aug 2008
Posts: 2
Rep Power: 0
juliezhu is on a distinguished road
Re: Elastic Gallery

Really awesome!! Thanks Flep!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #18 (permalink)  
Old 20-08-08, 14:00
Junior Member
 
Join Date: Jun 2008
Posts: 6
Rep Power: 0
ganji is on a distinguished road
Thumbs up Re: Elastic Gallery

Thanks~ master~
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads

Thread Thread Starter Forum Replies Last Post
Elastic Gallery Flep Utilità di FlepStudio 21 27-10-08 13:11
xml gallery z1784 Actionscript 3.0 newbies 6 04-10-08 19:30
3D Gallery clast22 FlepStudio users utilities 3 23-06-08 15:02
Elastic Gallery - aggiungere tween Eugene AIUTO utilità free 6 02-04-08 13:03
Elastic Gallery - link esterno a sito Eugene AIUTO utilità free 2 15-02-08 11:08


All times are GMT. The time now is 19:08.


Powered by vBulletin versione 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC4
Forum SiteMap


FlepStudio
by Filippo Lughi
P.IVA 03605860406