实现在PPT演示过程中-用鼠标拖动图片

上传人:人*** 文档编号:568409628 上传时间:2024-07-24 格式:PDF 页数:5 大小:64.08KB
返回 下载 相关 举报
实现在PPT演示过程中-用鼠标拖动图片_第1页
第1页 / 共5页
实现在PPT演示过程中-用鼠标拖动图片_第2页
第2页 / 共5页
实现在PPT演示过程中-用鼠标拖动图片_第3页
第3页 / 共5页
实现在PPT演示过程中-用鼠标拖动图片_第4页
第4页 / 共5页
实现在PPT演示过程中-用鼠标拖动图片_第5页
第5页 / 共5页
亲,该文档总共5页,全部预览完了,如果喜欢就下载吧!
资源描述

《实现在PPT演示过程中-用鼠标拖动图片》由会员分享,可在线阅读,更多相关《实现在PPT演示过程中-用鼠标拖动图片(5页珍藏版)》请在金锄头文库上搜索。

1、实现在实现在 PPTPPT 演示过程中,用鼠标拖动图片演示过程中,用鼠标拖动图片1新建一个 ppt 空白文档。2点击菜单: “工具宏宏” ,出现对话框。3对话框中“宏名”写:drop其他也可以 ,再点“创建” ,就进入代码模式。4 “Sub drop()End Sub” ,类似的三句全删掉。把下面的代码全拷贝进去。Option ExplicitDeclare Function GetKeyState Lib user32 (ByVal nVirtKey As Long) As IntegerPrivate Declare Function WindowFromPoint Lib user32

2、(ByVal xPoint As Long, ByVal yPointAs Long) As LongPrivate Declare Function GetWindowRect Lib user32 (ByVal hwnd As Long, lpRect As RECT)As LongPrivate Declare Function GetCursorPos Lib user32 (lpPoint As PointAPI) As LongPrivate Declare Function SetCursorPos Lib user32 (ByVal x As Long, ByVal y As

3、Long) AsLongPublic Declare Function MonitorFromPoint Lib user32.dll (ByVal x As Long, ByVal y As Long,ByVal dwFlags As Long) As LongPrivate Declare Function GetSystemMetrics Lib user32 (ByVal nIndex As Long) As Long学习文档 仅供参考Private Const SM_SCREENX = 0Private Const SM_SCREENY = 1Private Const sigPro

4、c = Drag & DropPublic Const VK_SHIFT = &H10Public Const VK_CTRL = &H11Public Const VK_ALT = &H12Private Type PointAPIx As Longy As LongEnd TypePublic Type RECTLeft As LongTop As LongRight As LongBottom As LongEnd TypePublic mPoint As PointAPI, dPoint As PointAPI学习文档 仅供参考Public ActiveShape As ShapeDi

5、m dragMode As BooleanDim dx As Double, dy As DoubleSub DragandDrop(sh As Shape)dragMode = Not dragModeIf dragMode Then Drag shEnd SubPrivate Sub Drag(sh As Shape)Dim i As Integer, sx As Integer, sy As IntegerDim mWnd As Long, WR As RECTdx = GetSystemMetrics(SM_SCREENX): dPoint.x = dxdy = GetSystemMe

6、trics(SM_SCREENY): dPoint.y = dyGetCursorPos mPoint学习文档 仅供参考mWnd = WindowFromPoint(mPoint.x, mPoint.y)GetWindowRect mWnd, WREnd WithIf dx dy Thensx = sx + (dx - dy) * ActivePresentation.PageSetup.SlideWidth / 2dx = dyEnd IfIf dy dx Thensy = sy + (dy - dx) * ActivePresentation.PageSetup.SlideHeight / 2dy = dxEnd IfWhile dragModeGetCursorPos mPoint学习文档 仅供参考sh.Left = (mPoint.x - sx) / dx - sh.Width / 2sh.Top = (mPoint.y - sy) / dy - sh.Height / 2DoEventsi = i + 1: If i 2000 Then dragMode = False: Exit SubWendEnd Sub5点击保存后,关闭代码模式,回到 ppt 设计页面。在你需要拖动的图片上点右键,选择“动作设置单击鼠标运行宏确定” 。然后就看效果吧。学习文档 仅供参考

展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 建筑/环境 > 施工组织

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号