Created
September 29, 2013 10:50
-
-
Save andy0130tw/6751422 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'Pixel & Twip 的換算 | |
Public Function pixelToTwip(ByVal pixel As Long) As Long | |
pixelToTwip = Screen.TwipsPerPixelX * pixel | |
End Function | |
'LoadMovie | |
Public Function loadMovie(moviePath As String) | |
ShockwaveFlash1.Movie = moviePath | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment