-
Notifications
You must be signed in to change notification settings - Fork 3
/
macros.bas
282 lines (220 loc) · 8.16 KB
/
macros.bas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
Sub UnderlineCardOpenAI()
Application.ScreenUpdating = False
Dim StartParagraph As Word.paragraph
Dim start As Long
Set StartParagraph = Selection.paragraphs(1)
StartParagraph.range.Select
start = Selection.start
Dim TagText As String
TagText = Selection.Text
TagText = Replace(TagText, "\n", "")
TagText = Trim(TagText)
Dim BodyText As String
BodyText = ""
Dim paragraph As Word.paragraph
Set paragraph = Selection.paragraphs(1).Next(2)
Dim locStart As Long
Dim locEnd As Long
Dim paragraphs As String
paragraphs = "0"
locStart = paragraph.range.start
Do While paragraph.outlineLevel <> 1 And paragraph.outlineLevel <> 2 And paragraph.outlineLevel <> 3 And paragraph.outlineLevel <> 4
BodyText = BodyText & paragraph.range.Text
paragraphs = paragraphs & "," & CStr(paragraph.range.End)
Set paragraph = paragraph.Next(1)
Loop
locEnd = paragraph.Previous(1).range.End
If Len(TagText) > 300 Then
Application.ScreenUpdating = True
MsgBox "Invalid card"
Exit Sub
End If
Result = AppleScriptTask("openaipythoninterface.scpt", "openaihandler", TagText & "$$$" & BodyText & "$$$underline$$$n" & "$$$" & paragraphs)
Result = Replace(Result, "[", "")
Result = Replace(Result, "]", "")
' MsgBox Result
resultArr = Split(Result, "), ")
UnderlineTextAsRanges resultArr, "Underline", locStart, locEnd
Application.ScreenUpdating = True
End Sub
Sub EmphasizeCardOpenAI()
Application.ScreenUpdating = False
Dim StartParagraph As Word.paragraph
Dim start As Long
Set StartParagraph = Selection.paragraphs(1)
StartParagraph.range.Select
start = Selection.start
Dim TagText As String
TagText = Selection.Text
TagText = Replace(TagText, "\n", "")
TagText = Trim(TagText)
Dim BodyText As String
BodyText = ""
Dim paragraph As Word.paragraph
Set paragraph = Selection.paragraphs(1).Next(2)
Dim locStart As Long
Dim locEnd As Long
Dim paragraphs As String
paragraphs = "0"
locStart = paragraph.range.start
Do While paragraph.outlineLevel <> 1 And paragraph.outlineLevel <> 2 And paragraph.outlineLevel <> 3 And paragraph.outlineLevel <> 4
BodyText = BodyText & paragraph.range.Text
paragraphs = paragraphs & "," & CStr(paragraph.range.End)
Set paragraph = paragraph.Next(1)
Loop
locEnd = paragraph.Previous(1).range.End
If Len(TagText) > 300 Then
Application.ScreenUpdating = True
MsgBox "Invalid card"
Exit Sub
End If
Dim startLocation As Long
Dim endLocation As Long
startLocation = locStart
endLocation = locEnd
UnderlineText = ""
Dim range As Word.range
Set range = ActiveDocument.range(start:=locStart, End:=locEnd)
' Set formatting conditions
range.Find.ClearFormatting
range.Find.Font.Underline = wdUnderlineSingle
range.Find.Wrap = wdFindStop
range.Find.Text = ""
' Initialize the search
Dim found As Boolean
found = range.Find.Execute
' Loop through the found underlined phrases
Do While found
If Len(UnderlineText) > 0 Then
UnderlineText = UnderlineText & ", "
End If
UnderlineText = UnderlineText & Trim(range.Text)
' Set the new search range and execute the search again
range.start = range.End
range.End = locEnd
If range.start >= range.End Then
Exit Do
End If
found = range.Find.Execute
Loop
If Len(UnderlineText) < 10 Then
Application.ScreenUpdating = True
MsgBox "Invalid underlining"
Exit Sub
End If
Result = AppleScriptTask("openaipythoninterface.scpt", "openaihandler", TagText & "$$$" & BodyText & "$$$emphasis$$$" & UnderlineText & "$$$" & paragraphs)
Result = Replace(Result, "[", "")
Result = Replace(Result, "]", "")
' MsgBox Result
resultArr = Split(Result, "), ")
UnderlineTextAsRanges resultArr, "Emphasis", startLocation, endLocation
Application.ScreenUpdating = True
End Sub
Sub HighlightCardOpenAI()
Application.ScreenUpdating = False
Dim StartParagraph As Word.paragraph
Dim start As Long
Set StartParagraph = Selection.paragraphs(1)
StartParagraph.range.Select
start = Selection.start
Dim TagText As String
TagText = Selection.Text
TagText = Replace(TagText, "\n", "")
TagText = Trim(TagText)
Dim BodyText As String
BodyText = ""
Dim paragraph As Word.paragraph
Set paragraph = Selection.paragraphs(1).Next(2)
Dim locStart As Long
Dim locEnd As Long
Dim paragraphs As String
paragraphs = "0"
locStart = paragraph.range.start
Do While paragraph.outlineLevel <> 1 And paragraph.outlineLevel <> 2 And paragraph.outlineLevel <> 3 And paragraph.outlineLevel <> 4
BodyText = BodyText & paragraph.range.Text
paragraphs = paragraphs & "," & CStr(paragraph.range.End)
Set paragraph = paragraph.Next(1)
Loop
locEnd = paragraph.Previous(1).range.End
If Len(TagText) > 300 Then
Application.ScreenUpdating = True
MsgBox "Invalid card"
Exit Sub
End If
Dim startLocation As Long
Dim endLocation As Long
startLocation = locStart
endLocation = locEnd
UnderlineText = ""
Dim range As Word.range
Set range = ActiveDocument.range(start:=locStart, End:=locEnd)
' Set formatting conditions
range.Find.ClearFormatting
range.Find.Font.Underline = wdUnderlineSingle
range.Find.Wrap = wdFindStop
range.Find.Text = ""
' Initialize the search
Dim found As Boolean
found = range.Find.Execute
' Loop through the found underlined phrases
Do While found
If Len(UnderlineText) > 0 Then
UnderlineText = UnderlineText & ", "
End If
UnderlineText = UnderlineText & Trim(range.Text)
' Set the new search range and execute the search again
range.start = range.End
range.End = locEnd
If range.start >= range.End Then
Exit Do
End If
found = range.Find.Execute
Loop
If Len(UnderlineText) < 10 Then
Application.ScreenUpdating = True
MsgBox "Invalid underlining"
Exit Sub
End If
Result = AppleScriptTask("openaipythoninterface.scpt", "openaihandler", TagText & "$$$" & BodyText & "$$$highlight$$$" & UnderlineText & "$$$" & paragraphs)
' MsgBox Result
Result = Replace(Result, "[", "")
Result = Replace(Result, "]", "")
resultArr = Split(Result, "), ")
UnderlineTextAsRanges resultArr, "Highlight", startLocation, endLocation
Application.ScreenUpdating = True
End Sub
Private Function UnderlineTextAsRanges(DataArr As Variant, style As String, locStart As Long, locEnd As Long)
Dim rngSearch As Word.range
Dim found As Boolean
Set rngSearch = ActiveDocument.range(start:=locStart, End:=locEnd)
Dim styleStr As String
styleStr = style
' If styleStr = "Highlight" Then
' styleStr = "Underline"
' End If
Dim phrase As Variant
Dim start As Long
Dim Length As Long
For Each phrase In DataArr
phrase = Replace(phrase, "(", "")
phrase = Replace(phrase, ")", "")
phraseSplit = Split(phrase, ", ")
start = CLng(phraseSplit(0))
Length = CLng(phraseSplit(1))
' Create a new range for each phrase
Dim rngPhrase As Word.range
Set rngPhrase = ActiveDocument.range(start:=locStart + start, End:=locStart + start + Length)
' MsgBox CStr(locStart + start) & CStr(Length)
' Apply the underline style to the range
If styleStr = "Underline" Then
rngPhrase.style = styleStr
End If
If styleStr = "Emphasis" Then
rngPhrase.style = styleStr
End If
If style = "Highlight" Then
rngPhrase.HighlightColorIndex = wdYellow
rngPhrase.Font.Size = 11
End If
Next phrase
End Function