-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocks.xml
More file actions
executable file
·43 lines (38 loc) · 1.54 KB
/
blocks.xml
File metadata and controls
executable file
·43 lines (38 loc) · 1.54 KB
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<palette>
<block tag="share" spec="Share message: %0 with website: %1 [c:simpleshare]" code="Share.shareContent(~,~);" type="action" color="blue" returns="void">
<fields>
<text order="0"></text>
<text order="1"></text>
</fields>
</block>
<block tag="sharewithimage" spec="Share message: %0 with website: %1 and with image: %2 [c:simpleshare]" code="Share.shareContentWithImage(~,~,~);" type="action" color="blue" returns="void">
<fields>
<text order="0"></text>
<text order="1"></text>
<image order="2"></image>
</fields>
</block>
<!--<block tag="share" spec="Share message: %0 with website: %1 and take a screenshot: %2 [c:simpleshare]" code="Share.shareContent(~,~,~);" type="action" color="blue" returns="void">
<fields>
<text order="0"></text>
<text order="1"></text>
<dropdown order="2">
<choices>
<c text="yes" code="true"></c>
<c text="no" code="false"></c>
</choices>
</dropdown>
</fields>
</block>-->
<block tag="getShareResult" spec="Message %0 [c:simpleshare]" code="Share.getShareResult(~)" type="normal" color="blue" returns="boolean">
<fields>
<dropdown order="0">
<choices>
<c text="did successfully shared" code="0"></c>
<c text="did fail to shared" code="1"></c>
</choices>
</dropdown>
</fields>
</block>
</palette>