Place a 100px by 100px box on the stage (not a movieclip, just a simple shape). enter image description here

Now apply a vertical skew of 30 degrees. You should get this... enter image description here

Click outside of the shape to release the transformation data. The degrees for skew resets to 0 (this is expected), see image below enter image description here

But What skew would you apply to the shape to return it to its original shape. Initially I would've thought it was -30 in the vertical skew, but this seems to return a weird hybrid shape.. See below: enter image description here

link|improve this question

feedback

2 Answers

I just tried it, and the answer was surprisingly obvious...though don't feel bad, I overlook the obvious a LOT!

Click the object, and set the skew angle back to 0 degrees.

And, +1 for an excellently illustrated question!

EDIT: Talked to my animator. She tried the steps in the question, and -30 worked, strangely enough. She uses Flash CS4. As a possible alternative, she suggested making the drawing a symbol, and then skewing that. That way, you can always go back to the original. Not sure if that helps, but hopefully it does you (or someone).

link|improve this answer
I don't think works for a basic shape (not a movieclip, and not a sprite)? Thanks though – Chris Jan 1 at 4:11
I did it with a basic shape, not a movieclip or a sprite. I checked that. – JasonMc92 Jan 1 at 8:03
I wish it were this simple, but are you sure you are clicking outside the shape to reset the transformation data as per my line "Click outside of the shape to release the transformation data. The degrees for skew resets to 0 (this is expected), see image below" So the skew is 0 degrees, so updating it to 0 degrees as per your suggestion won't work. Honestly I wish it did, but it doesn't. I thank you for your help regardless though – Chris Jan 1 at 12:31
I was meticulously careful to ensure that I recreated your problem exactly. I not only recreated the issue, but also the solution. To repeat, I followed your instructions exactly. After clicking outside the shade, CLICK THE SHAPE AGAIN (emphasizing, not shouting there) and set the skew angle on it to 0. I tried this and it works. If this does not work for you, there must be another component of your code (or a bug/glitch in the software or computer) which is affecting this. – JasonMc92 Jan 1 at 16:32
Well this is confusing, we must be using a different version of Flash or the Adobe suite, or as you said different computer setups. Thankyou, and I appreciate your help – Chris Jan 2 at 0:54
show 2 more comments
feedback
up vote 1 down vote accepted

I finally worked it out for my setup (CS5 Flash). The steps are in the diagram, but work along the lines of:

  1. Set the scaleX to (1/cos([skew amount])) * 100. The skew amount needs to be converted to radians.
  2. Set the v-skew to -[skew amount]
  3. Release the shape, then reselect it (all transformation data would be reset)
  4. Set the scaleX to (1/cos([skew amount])) * 100. Yes, you need to do it twice

enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.