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
30 lines (18 loc) · 798 Bytes
/
Copy pathadClicked.lcdoc
File metadata and controls
30 lines (18 loc) · 798 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
Name: adClicked
Type: message
Syntax: adClicked <adName>
Summary: Sent when the user clicks on an ad.
Associations: stack
Introduced: 5.5
OS: ios,android
Platforms: mobile
Example:
on adClicked pAdName
goToAddInfo pAdName
end adClicked
Parameters:
adName: 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> messge 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)