Many
Manuals
search
Categorie
Marchi
Home
Adobe
Software
Extending Dreamweaver CS4
Manuale Utente
Adobe Extending Dreamweaver CS4 Manuale Utente Pagina 198
Scaricare
Condividere
Condivisione
Aggiungi ai miei manuali
Stampa
Pagina
/
387
Indice
SEGNALIBRI
Valutato
.
/ 5. Basato su
recensioni clienti
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
192
EXTENDING DREAMWEAVER CS4
Toolbars
Example
function showif()
{
var retval = false;
var dom = dw.getDocumentDOM();
if(dom)
{
var view = dom.getView();
if(view == 'design')
{
retval = true;
}
}
return retval;
}
1
2
...
193
194
195
196
197
198
199
200
201
202
203
...
386
387
DREAMWEAVER
1
Copyright
2
Contents
3
Chapter 1: Introduction
7
Creating an extension
8
Introduction
9
Ways to customize Dreamweaver
10
• Normal HTML-style tags
12
• String-delimited tags
12
<tagspec>
13
Customizing Dreamweaver
14
• Remove Extra Closing Tags
15
<deleteditems>
17
Changing FTP mappings
18
5 Save the file
19
Defining dynamic templates
24
See also
25
Providing localized strings
26
Customizing workspace layouts
27
<application>
28
<document>
28
<panelframe>
29
<panelcontainer>
30
<panel>
30
About code hints
36
JavaScript code hinting
37
Customizing Code view
38
Code hints tags
41
<menugroup>
42
<description>
42
<function>
44
<method>
45
<parammenu>
46
<parammenuitem>
47
<optionparammenu>
47
<optionparammenuitem>
48
<property>
48
<event>
49
About code coloring
50
<scheme>
51
<blockEnd>
52
<blockStart>
53
<brackets>
53
<charStart>
53
<charEnd>
54
<charEsc>
54
<commentStart>
54
<commentEnd>
54
<cssImport/>
55
<cssMedia/>
55
<cssProperty/>
55
<cssSelector/>
56
<cssValue/>
56
<defaultAttribute>
56
<defaultTag>
56
<defaultText/>
57
<endOfLineComment>
57
<entity/>
57
<functionKeyword>
58
<idChar1>
58
<idCharRest>
58
<ignoreCase>
59
<ignoreMMTParams>
59
<ignoreTags>
59
<isLocked>
59
<keyword>
60
<keywords>
60
<numbers/>
60
<operators>
61
<regexp>
61
<sampleText>
61
<stringStart>
62
<stringEnd>
63
<stringEsc>
63
<tagGroup>
63
Scheme processing
65
Wildcard characters
66
Escape characters
67
Maximum string length
67
Scheme precedence
68
Editing schemes
69
Code coloring examples
70
About Code validation
73
<css-support>
74
<value>
75
About Vertical Split view
76
About related files
77
About Live view
79
Reloading extensions
84
Extension APIs
85
Localizing an extension
86
Extending Dreamweaver
87
Editable select lists
89
Database controls
91
Tree controls
93
Creating a tree control
94
A Smart Object example
99
Object Model
101
The Dreamweaver DOM
102
EXTENDING DREAMWEAVER CS4
103
The site object
109
Chapter 7: Insert bar objects
110
Insert bar definition tags
111
<category>
112
<menubutton>
112
<insertbar>
112
<button />
113
<checkbutton />
113
<separator />
114
Insert bar objects
115
Modifying the Insert bar
117
Create the HTML file
119
Adding a dialog box
122
1 Create an HTML file
124
2 Add the following code:
124
The objects API functions
126
How detection works
131
An Issues example
131
The issues API functions
133
Chapter 9: Commands
137
A simple command example
138
Writing the JavaScript code
139
1 Create a new blank file
140
3 Save the file
141
Commands
142
The commands API functions
143
The menus.xml file
147
<menubar>
148
<menu>
148
<menuitem>
149
<separator>
150
<shortcutlist>
151
<shortcut>
151
<tool>
152
<action>
153
<activate>
153
<override>
154
Change keyboard shortcuts
155
Menus and menu commands
156
Menu commands
157
How menu commands work
158
A simple menu command example
159
A dynamic menu example
162
Chapter 11: Toolbars
173
How toolbar commands work
174
A simple toolbar command file
175
The toolbar definition file
176
<toolbar>
177
Toolbars
178
<include/>
179
<itemtype/>
179
<itemref/>
179
<separator/>
180
Toolbar item tags
181
<radiobutton>
182
<dropdown>
183
<combobox>
184
<editcontrol>
185
<colorpicker>
185
Item tag attributes
186
• Clicks a button
190
Chapter 12: Reports
199
A simple site report example
200
Stand-alone reports
201
How stand-alone reports work
202
Write the JavaScript code
203
The reports API functions
204
Tag library file format
209
The Tag Chooser
212
Create a tag editor UI
215
Tag libraries and editors
216
Add a tag to Tag Chooser
217
The tag editor API functions
218
Property inspector files
220
Property inspectors
221
Create the user interface
222
Create the image
225
Test the Property inspector
225
Chapter 15: Floating panels
228
Creating the floating panels
229
Floating panels
231
Creating a menu item
233
About performance
238
Chapter 16: Behaviors
240
A simple behavior example
241
Create the behavior extension
242
Behaviors
243
The behaviors API functions
245
Chapter 17: Server behaviors
252
Dreamweaver architecture
253
The script file
254
Defining the code to insert
255
Server behaviors
256
The server behavior API
257
EDML files
264
Group EDML file tags
265
<group> attributes
266
<title>
268
<groupParticipants>
268
<groupParticipant>
269
Participant EDML files
271
<quickSearch>
272
<insertText>
272
<insertText> attributes
273
<searchPatterns>
275
<searchPattern>
276
<updatePatterns>
280
<updatePattern>
280
<delete>
282
<delete> attributes
282
<translator>
283
<translations>
284
<translation>
284
<openTag>
286
<attributes>
287
<attribute>
287
<display>
288
<closeTag>
288
Server behavior techniques
289
Search pattern resolution
292
Updating server behaviors
293
Deleting server behaviors
294
Chapter 18: Data sources
296
Data sources
297
A simple data source example
298
2 Enter the following:
299
MyDatasource Variable
301
Test the new data source
303
Chapter 19: Server formats
309
Server formats
310
Chapter 20: Components
315
Properties of tree control
317
Components
319
• When server model changes
326
Chapter 21: Server models
328
Server models
329
• ASP version 2.0
334
• ADODB version 2.1
334
Chapter 22: Data translators
335
Data translators
336
Create the tagspec tag
342
Create the icon
342
2 Enter the following code:
345
• The dom argument
351
• A pointer to the function
354
Data types
355
The C-level API
355
JSBool JS_DefineFunction()
356
JSBool JS_ValueToInteger()
357
JSBool JS_ValueToDouble()
357
JSBool JS_ValueToBoolean()
358
JSBool JS_ValueToObject()
358
JS_ValueToUCString()
358
JSBool JS_StringToValue()
359
JSBool JS_UCStringToValue()
359
JSBool JS_DoubleToValue()
360
JSVal JS_BooleanToValue()
360
JSVal JS_IntegerToValue()
360
JSVal JS_ObjectToValue()
361
JSObject *JS_NewArrayObject()
361
JSBool JS_GetElement()
362
JSBool JS_SetElement()
362
JSBool JS_ExecuteScript()
363
JSBool JS_ReportError()
363
C-level extensibility
364
JSBool MM_ConfigFileExists()
366
JSBool MM_DeleteConfigFile()
370
Chapter 24: The Shared folder
373
The MM folder
374
The Scripts subfolder
375
The Class folder
375
The CMN folder
376
Other folders
377
Using the Shared folder
378
Commenti su questo manuale
Nessun commento
Publish
Prodotti e manuali riguardandi Software Adobe Extending Dreamweaver CS4
Software Adobe Dreamweaver CS3 Manuale Utente
(738 pagine)
Software Adobe Extending Flash Professional CS5 Manuale Utente
(565 pagine)
Software Adobe Flash Professional CC 2014 v.13.0 Manuale Utente
(701 pagine)
Software Adobe Extending Flash Professional CS4 Manuale Utente
(560 pagine)
Software Adobe Flash Professional CS3 Manuale Utente
(527 pagine)
Software Adobe Premiere Pro CC v.7.xx Manuale Utente
(575 pagine)
Software Adobe Premiere Pro CS4 Manuale Utente
(491 pagine)
Software Adobe Premiere Pro CS6 Manuale Utente
(485 pagine)
Software Adobe Premiere Pro CS3 Manuale Utente
(455 pagine)
Software Adobe Photoshop Lightroom CC Manuale Utente
(261 pagine)
Software Adobe Photoshop CC 2014 v.14.xx Manuale Utente
(686 pagine)
Software Adobe Photoshop CS4 Manuale Utente
(707 pagine)
Software Adobe Photoshop CS3 Manuale Utente
(681 pagine)
Software Adobe Elements Organizer 9 Manuale Utente
(180 pagine)
Software Adobe Elements Organizer 12 Manuale Utente
(238 pagine)
Software Adobe Premiere Elements 12 Manuale Utente
(319 pagine)
Software Adobe Premiere Elements 8 Manuale Utente
(313 pagine)
Software Adobe Illustrator CC 2015 Manuale Utente
(556 pagine)
Software Adobe Illustrator CS4 Manuale Utente
(499 pagine)
Software Adobe Illustrator CS3 Manuale Utente
(495 pagine)
Stampa documento
Stampa pagina 198
Commenti su questo manuale