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!
Page 1 of 1
Can somebody please help me with AS2 for flash gallery/dock menu?
#2
Posted 17 April 2011 - 07:49 AM
SirStancelot, 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!
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
#3
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.
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.
#4
Posted 18 April 2011 - 09:35 AM
SirStancelot, 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.
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
#6
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
Share this topic:
Page 1 of 1
Help

















