forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadClicked.lcdoc
More file actions
36 lines (24 loc) · 783 Bytes
/
adClicked.lcdoc
File metadata and controls
36 lines (24 loc) · 783 Bytes
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
Name: adClicked
Type: message
Syntax: adClicked <pAdName>
Summary:
Sent when the user clicks on an ad.
Introduced: 5.5
OS: ios, android
Platforms: mobile
Example:
on adClicked pAdName
goToAddInfo pAdName
end adClicked
Parameters:
pAdName:
The name of ad that has been clicked (as specified in <mobileAdCreate>)
Description:
Handle the <adClicked> message if you want to perform an action when a
user clicks on an ad.
The <adClicked> message is sent to the object that created the ad when
the user clicks on ad.
References: mobileAdCreate (command), mobileAdDelete (command),
mobileAdSetVisible (command), mobileAdSetTopLeft (command),
mobileAdRegister (command), mobileAdGetTopLeft (function),
mobileAdGetVisible (function), adLoaded (message), adLoadFailed (message)