India seo web development website designer freelance
How object files work
When a user selects an object by clicking an icon in the Insert bar or by selecting an item in the Insert menu, the following events occur:
- calls the canInsertObject() function to determine whether to show a dialog box.
- The Object file is scanned for a FORM tag. If a form exists and if the Show Dialog When Inserting Objects option is selected in the General preferences, calls the windowDimensions() function, if defined, to determine the size of the dialog box in which to display the form. If no form exists in the Object file, does not display a dialog box, and skips step 2.
- If displays a dialog box in step 1, the user enters parameters for the object (such as the number of rows and columns in a table) in the dialog box and clicks OK.
- The objectTag() function is called, and its return value is inserted into the document after the current selection (it does not replace the current selection).
- If does not find the objectTag() function, it looks for an insertObject() function and calls that function instead.
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117