India seo web development website designer freelance
How stand-alone reports work
- The custom command opens a new results window by calling dw.createResultsWindow and storing the returned results object in a window variable. The remaining functions in this process should be called as methods of this object.
- The custom command initializes the title and format of the Results window by calling setTitle() and SetColumnWidths() as methods of the results window object.
- The command can either start adding items to the Results window immediately by calling addItem() , or it can begin iterating through a list of files by calling setFileList() and startProcessing() as methods of the Results window object.
- When the command calls resWin.startProcessing() , calls the function processFile() for each file URL in the list. Define the processFile() function in the stand-alone command. It receives the file URL as its only argument. Use the setCallbackCommands() function of the Results window object if you want to call processFile() in some other command.
- To call addItem() , the processFile() function needs to have access to the Results window that was created by the stand-alone command. The processFile() function can also call the stopProcessing() function of the Results window object to stop processing the list of files.
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