You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
put url ("binfile:"&builderInstallerEngine("macosx") &slash &"Contents/Resources/Installer.icns") into url ("binfile:"&tOutputFileStub&".app"& slash &"Contents/Resources/Installer.icns")
397
+
put url ("binfile:"&builderCommunityResourceFolder() &"/Installer.icns")into url ("binfile:"&tOutputFileStub&".app"& slash &"Contents/Resources/Installer.icns")
394
398
else
395
399
put url ("binfile:"& builderCommercialResourceFolder() &"/Installer.icns") into url ("binfile:"&tOutputFileStub&".app"& slash &"Contents/Resources/Installer.icns")
<p>if tLaunchData is an array and tLaunchData["action"] is kActionView then</p>
22
+
<p> -- view content specified in tLaunchData["data"]</p>
23
+
<p>else</p>
24
+
<p> -- launched as main application</p>
25
+
<p>end if</p></example>
26
+
</examples>
27
+
28
+
<history>
29
+
<introducedversion="7.0">Added.</introduced>
30
+
<deprecatedversion=""></deprecated>
31
+
<removedversion=""></removed>
32
+
33
+
</history>
34
+
35
+
<objects>
36
+
</objects>
37
+
38
+
<platforms>
39
+
<android/>
40
+
</platforms>
41
+
42
+
<classes>
43
+
<mobile/>
44
+
</classes>
45
+
46
+
<security>
47
+
</security>
48
+
49
+
50
+
<classification>
51
+
</classification>
52
+
53
+
<references>
54
+
</references>
55
+
56
+
<description>
57
+
<overview>>Returns an array containing information set by the launcher of the application.</overview>
58
+
59
+
<parameters>
60
+
<parameter>
61
+
<name/>
62
+
<description/>
63
+
<optionstitle="Launch Data - The application launch data is stored as an array and has the following keys:">
64
+
<option>
65
+
<item>action</item>
66
+
<description>The general action the app was launched to perform.</description>
67
+
</option>
68
+
<option>
69
+
<item>data</item>
70
+
<description>The data to operate on.</description>
71
+
</option>
72
+
<option>
73
+
<item>type</item>
74
+
<description>The MIME type of the data provided.</description>
75
+
</option>
76
+
<option>
77
+
<item>categories</item>
78
+
<description>Additional information about the action to perform.</description>
79
+
</option>
80
+
</options>
81
+
</parameter>
82
+
</parameters>
83
+
84
+
<value>Use the <b>mobileGetLaunchData</b> function to get the application launch parameters.<p></p><p>The returned array will contain the information that is set by the launching application</p></value>
85
+
<comments>The <b>mobileGetLaunchData</b> function returns the information that was set by the launching application. This can be used to perform specific actions supported by an application on the provided data. <p></p>
86
+
<p></p>
87
+
<note> On Android, custom Intent filters can be specified in the manifest to allow an application to perform actions for other applications</note><p></p>When the application is launched to handle one of these actions, its launch Intent can be queried to determine what action was requested, and the data to use to fulfil that request.</comments>
0 commit comments