-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ext.json
86 lines (70 loc) · 1.46 KB
/
Ext.json
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
// This file may also be external to your MFX file - just give it the same name
// as your MFX and place it in Data/Runtime. The same goes for the icon.
"About":
{
"Name": "PortAudio"
"Author": "Darkwire Software"
"Copyright": "Copyright © 2011 by Darkwire Software"
"Comment": "Records samples using the PortAudio open-source library, utilizing DirectSound."
"URL": "http://www.dark-wire.com/"
"Help": "Help/PortAudio.chm"
// Four unique characters to identify this object
"Identifier": "PTAD"
}
"ActionMenu":
[
"Separator"
[0, "Start recording from memory"]
[1, "Test Report() and Explode()"]
]
"ConditionMenu":
[
[0, "On error"]
[1, "On report"]
"Separator"
[2, "Darkwire Software", 1]
]
"ExpressionMenu":
[
[0, "Get errors"]
[1, "Get reports"]
]
"Actions":
[
// ID = 0
{ "Title": "Start recording from memory"
}
// ID = 1
{ "Title": "Test Report() and Explode()"
}
]
"Conditions":
[
// ID = 0
{ "Title": "%o : On error",
"Triggered": true
}
// ID = 1
{ "Title": "%o : On report",
"Triggered": true
}
]
"Expressions":
[
// ID = 0
{ "Title": "GetError$("
"Returns": "String"
"Parameters":
[
["Integer", "Clear the current error?"]
]
}
// ID = 1
{ "Title": "GetReport$("
"Returns": "String"
"Parameters":
[
["Integer", "Clear the current reports?"]
]
}
]