Web Design Forum: Can somebody please help me with AS2 for flash gallery/dock menu? - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Can somebody please help me with AS2 for flash gallery/dock menu? Rate Topic: -----

#1 User is offline   SirStancelot 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 4
  • Joined: 17-April 11
  • Reputation: 0
  • Gender:Male
  • Location:Ecuador
  • Experience:Intermediate
  • Area of Expertise:Designer

Posted 17 April 2011 - 05:36 AM

Hi there,

I'm working on a website for a photographer and she wants something similar like on this site: daisygilardini.com/portfolio.html

(click next to the big picture, if the page starts with that, to get the photo menu I'm referring to)

The difference with the above mentioned site is that when the mouse hovers over an image it should enlarge in the same animation and link to another page when clicked.

Also do I want the flash page to automatically adjust to the screen resolution/size of the visitor.

(I don't have a lot of experience in creating websites with flash)

Can somebody help me with information or code on how to do this?

Thanks!
0

#2 User is offline   web-itec 

  • Expert
  • PipPipPipPip
  • Group: Members
  • Posts: 533
  • Joined: 23-March 11
  • Reputation: 53
  • Gender:Male
  • Location:United Kingdom
  • Experience:Advanced
  • Area of Expertise:Web Developer

Posted 17 April 2011 - 07:49 AM

View PostSirStancelot, on 17 April 2011 - 05:36 AM, said:

Hi there,

I'm working on a website for a photographer and she wants something similar like on this site: daisygilardini.com/portfolio.html

(click next to the big picture, if the page starts with that, to get the photo menu I'm referring to)

The difference with the above mentioned site is that when the mouse hovers over an image it should enlarge in the same animation and link to another page when clicked.

Also do I want the flash page to automatically adjust to the screen resolution/size of the visitor.

(I don't have a lot of experience in creating websites with flash)

Can somebody help me with information or code on how to do this?

Thanks!


what exactly is it you wanted in the first part? it made no sense whatsoever, put it simple so people can understand like i would like to be able to have something like that but i would like it enlarges the image when you rollover? is that what you meant and for the second part you need to get a javascript and it detects screen resolution and whatever the screen resolution the flash will adjust to, you have to sort the figures yourself, i think you may be able to set the flash object on the html code to 100% if you want it continueously filling the screen
0

#3 User is offline   SirStancelot 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 4
  • Joined: 17-April 11
  • Reputation: 0
  • Gender:Male
  • Location:Ecuador
  • Experience:Intermediate
  • Area of Expertise:Designer

Posted 18 April 2011 - 07:49 AM

Thanks Web-Itec for your response.

Maybe the first part wasn't that clear indeed. Anyway, the way you understood it is correct "i would like to be able to have something like that but i would like it enlarges the image when you rollover?"

Can you help me with that?

As for the second part I think I already found a solution for it with, like you mentioned, JavaScript.
0

#4 User is offline   web-itec 

  • Expert
  • PipPipPipPip
  • Group: Members
  • Posts: 533
  • Joined: 23-March 11
  • Reputation: 53
  • Gender:Male
  • Location:United Kingdom
  • Experience:Advanced
  • Area of Expertise:Web Developer

Posted 18 April 2011 - 09:35 AM

View PostSirStancelot, on 18 April 2011 - 07:49 AM, said:

Thanks Web-Itec for your response.

Maybe the first part wasn't that clear indeed. Anyway, the way you understood it is correct "i would like to be able to have something like that but i would like it enlarges the image when you rollover?"

Can you help me with that?

As for the second part I think I already found a solution for it with, like you mentioned, JavaScript.


on the frame your images load on the flash document, set the images so they load inside a movieclip (click the object, press f8 and set to movieclip) then go to properties and name it something like img1, and name that for each one incrementing

and on the actions on the frame do something like

img1.onRollOver = function() {
img1._xscale = this._xscale * 1.5;
img1._yscale = this._yscale * 1.5;
}
img1.onRollOut = function() {
img1._xscale = this._xscale / 1.5;
img1._yscale = this._yscale / 1.5;
}

i would have supposed you are already importing the images through some sort of object ? name the object img1 and instance and then obviously it will only work for img1 with that script but change it so that its in a for loop so when you rollover any of the images it works
0

#5 User is offline   SirStancelot 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 4
  • Joined: 17-April 11
  • Reputation: 0
  • Gender:Male
  • Location:Ecuador
  • Experience:Intermediate
  • Area of Expertise:Designer

Posted 19 April 2011 - 06:08 AM

Thanks Web Itec! :)

I'll try that.
0

#6 User is offline   Richard King BWP 

  • Expert
  • PipPipPipPip
  • Group: Members
  • Posts: 511
  • Joined: 11-May 08
  • Reputation: 45
  • Gender:Male
  • Location:Swinderby, Lincoilnshire, UK
  • Experience:Web Guru
  • Area of Expertise:Designer/Coder

Posted 19 April 2011 - 06:21 AM

as for the full screen thing - check out the "supersized" script http://buildinternet...ect/supersized/ infact in a odd way, their demo3 has a lot of the qualities you are looking for
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users