- 精华
- 活跃值
-
- 积分
- 1704
- 违规
-
- 印币
-
- 鲜花值
-
- 在线时间
- 小时
累计签到:223 天 连续签到:1 天
|
本人不会代码,用AI gpt3.5写的,可以给页面图形编号,把这段代码复制到脚本模块运行就可以了,有会写插件的帮忙弄个gms插件
Sub CreateArtisticTextInCenter()
Dim s As Shape
Dim i As Integer
i = 1
' 遍历选中的形状
For Each s In ActiveSelection.Shapes
' 获取形状的中心坐标
Dim centerX As Double
Dim centerY As Double
centerX = (s.BoundingBox.Left + s.BoundingBox.Right) / 2
centerY = (s.BoundingBox.Top + s.BoundingBox.Bottom) / 2
' 创建艺术字形状,并设置文本内容为数字
Dim textShape As Shape
Set textShape = ActiveLayer.CreateArtisticText(centerX, centerY, CStr(i))
i = i + 1
Next s
End Sub
|
1
赠人玫瑰,手有余香!如单纯感谢,请送花!凡是以文字形式感谢,即被视为水帖,会扣币处理!
鲜花榜单
-
+1
对你表示感谢!
|