Looking for 3D animation Macro

dave_man

New Member
Joined
Jul 6, 2011
Messages
1
I am trying to create a Macro to animate rotation of a 3D disc ( I made the disc ****ed in reference to the axis of rotation, so that rotation is visible ).

When trying to record a Macro, I :
  1. inserted a Circle shape, squizzed it, and tilted
  2. went to shape properties
  3. selected 3-D rotation property
  4. did multiple clicks on X axis icon
  5. stopped recording
To my surprise Macro code was empty inside :confused:

I'll appreciate any help on that.

Dave
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Is this any help?
Code:
For i = 0 To 360
  ActiveSheet.Shapes("Lightning Bolt 1").Rotation = i
  DoEvents
Next i
or:-
Code:
i = 0
Do
  i = (i + 1) Mod 360
  ActiveSheet.Shapes("Lightning Bolt 1").Rotation = i
  DoEvents
Loop
I'm sure you get the idea.
 
Upvote 0

Forum statistics

Threads
1,224,578
Messages
6,179,652
Members
452,934
Latest member
mm1t1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top