ActiveDen

Dynamic Flip Object

  • Has been a member for 3-4 years
  • Bought between 1 and 9 items
Urme says
Purchased

Do you understand what I mean? Would appreciate it a lot if it was possible to change this.

Posted 2 years ago
Author
Webmarbles Webmarbles replied

Can you e-mail me with what you mean exactly? I really am not seeing it :(...

Posted 2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
  • United Kingdom
d311boy says
Purchased

Hi

I am trying to change the link on the second object in example 3 and just cant get my head around where this is, currently to is set to go to www.flashden.net

I found the code on the first object fine but this is not the one I want to use.

Could you point me in the right direction please as I haven’t got a scooby!

Many thanks

Dell

Posted 2 years ago
Author
Webmarbles Webmarbles replied

Is it in the parameters panel of the object? When selecting the object the parameters tab is in the object’s properties panel. Let me know if you get it to work, otherwise I’ll have a closer look :-)!

Posted 2 years ago
Purchased
Default-user d311boy replied

thank you so much….it is simple when yo know how! :)

Posted 2 years ago
Author
Webmarbles Webmarbles replied

Not a problem :) ! Have you rated the file already? Somehow it went from 5 to 4 stars and I think that’s a pitty since much work went into building it and $6 isn’t much :( !

Posted 2 years ago
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
pixele says
Purchased

Hi,

I can’t find how to change the clikreference or the pressevent to launch my own function in flash.

I’ve tried few things but it doesn’t work.

Does someone can help me?

Thanks.

Pixele

Posted 2 years ago
Author
Webmarbles Webmarbles replied

Have you found the parameters tab in the object’s properties panel?

Posted 2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
  • United Kingdom
d311boy says
Purchased

Hove not yet rated but will do it now and will definitely get 5 stars from me :)

Posted 2 years ago
Author
Webmarbles Webmarbles replied

Thanks ;-)!

Posted 2 years ago
  • Has been a member for 4-5 years
  • Bought between 10 and 49 items
douglascox says
Purchased

I have set a square of 500 by 500 and also made sure to change the mask objects, but for some reason is producing a flip that is quite off… do you have any ideas on how to fix that?

Posted 2 years ago
Author
Webmarbles Webmarbles replied

Have you found the Parameters tab? It is in the Properties panel of the object that you can view if you select the object on the stage. In there you will find a property called “Fixed Background”. Make sure that property is set to false. Let me know if this helps :-)!

Posted 2 years ago
Purchased
Default-user douglascox replied

I been trying different settings in the parameters, I have found an option called “Fixed Rotation” but not a “Fix Background” property. I tried setting the Fixed Rotation to false but still does not help. The corners on the box either are cut or completely off. Any other options?

Posted 2 years ago
Purchased
Default-user douglascox replied

I already sent the file… Let me know if you have any ideas. Thanks

Posted 2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
tammlabor says

Hi, I like your object, is it possible to use it as slideshow, I mean without user interactivity? of course some (next, prev) navigation would be nice:)

Posted 2 years ago
Author
Webmarbles Webmarbles replied

It is possible to control the flip object using code. In that case it supports a function called “doFlip”. So: yes you will be able to create that kind of interactivity but it does require some Flash knowledge :-)!

Posted 2 years ago
  • Has been a member for 4-5 years
  • Bought between 100 and 499 items
  • New Zealand
simondarby says
Purchased

Highly recommend. Excellent documentation. Ideal for round objects. Did not seem to like square image shapes if they need to be flipped over. Otherwise perfect.

Posted 2 years ago
Author
Webmarbles Webmarbles replied

Thank you :-), glad you like it!

Posted 2 years ago
  • Has been a member for 2-3 years
  • Bought between 50 and 99 items
JhonRambo says

Loved it, but is it possible to get AS3 ?

Posted 2 years ago
Author
Webmarbles Webmarbles replied

Thank you for your compliment :-)! However, I do not think I’ll come up with an AS3 version anytime soon!

Posted 2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
erynn1 says
Purchased

i have not been able to set a link.

using the default file.

I am in flash 8/action script 2

when i click on parameters pane, there is no info.

Posted 2 years ago
Author
Webmarbles Webmarbles replied

That’s strange! Can you send me an printscreen of what your parameters panel looks like by e-mail :-)?

Posted 2 years ago
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 and 1 000 dollars
  • Bought between 1 and 9 items
  • Netherlands
  • Referred between 1 and 9 users
Tashina says

Very nice! Like it =)

Posted 2 years ago
Author
Webmarbles Webmarbles replied

Thanks :-)!

Posted 2 years ago
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 and 1 000 dollars
  • Bought between 1 and 9 items
  • Brazil
paespedro says

Very cool man! Congratulations!

Posted 1 year ago
Author
Webmarbles Webmarbles replied

Thanks :-)!

Posted 1 year ago
  • Has been a member for 4-5 years
  • Bought between 100 and 499 items
stonefreak says
Purchased

Great file,

im using the example_03 and need to make the red animation smaller as default, but how do i scale the red animation down?

i know that on all other object its just to grab the object and scale it down, but not with the red animation.

Posted 10 months ago
Author
Webmarbles Webmarbles replied

That’s because in the third example the demo shows how to control the flip object by using ActionScript. Have a look in the ActionScript of the timeline to see how the object is attached and scaled to the stage. Let me know if you can’t figure it out by e-mail, I’ll see if I can be of any assistance :-)!

Posted 10 months ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
unwork says

Is it possible to make the animation happen automatically after a certain amount of time, with no user interaction whatsoever?

Thanks in advance

Posted 8 months ago
Author
Webmarbles Webmarbles replied

This probably is possible by using an interval. What you need to do is provide the flip object’s instance with an instance name, let’s say ‘flipper’. Then, add this bit of ActionScript to the main timeline:

this.flipInterval=function(){
    this.flipper.flipObject();
}
this.mD=setInterval(this,"flipInterval",2000);

In this example, 2000 is the amount of time in milliseconds in between two flips. So, this example intervals every 2 seconds.

If you want to stop the interval, all you’ll have to do is:

clearInterval(this.mD);

Let me know if you get it to work :-)!

Posted 7 months ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
sgwd2 says
Purchased

I need to change the width/height to graphic but this is very complex and I could not do.

I referer to example03.fla

you can help me?

Sincerely

Posted 5 months ago
Author
Webmarbles Webmarbles replied

Can you drop me an e-mail with what you have reached till now? I’ll see if I can help you!

Posted 5 months ago

You must sign in or sign up to purchase this item.

$6Regular Licence

$6

Regular Licence a website (commercial, personal, client), free game, e-card, or presentation - Details

$30Extended Licence

$30

Extended Licence an app, paid game, or other software project, a website template for sale - Details

450 Purchases 54 Comments

Buyer Rating
12345 ( 92 ratings )
Webmarbles

Webmarbles

  • Has been a member for 3-4 years
  • Won a Competition
  • Interviewed on the Envato Notes blog
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Netherlands
  • Referred between 50 and 99 users
View Portfolio
Created 27 June 09
ActionScript Version AS2
Documentation Well Documented
Flash Files Included Flash FLA, XML Files
Opens With Flash 8 (8+), Flash CS3 (9+), Flash CS4 (10+)
Published Size 8kb
by
by
by
by
by