Er der virkelig ingen, der kan OO nok til at hjælpe?
Sprog: asp/vbscript.
Klassen FSKeditor har (bl.a.) disse properties:
Public Property Let Height( heightValue )
sHeight = heightValue
End Property
Public Property Let Config( configKey, configValue )
oConfig.Add configKey, configValue
End Property
Den første sætter man med
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.height = "800px"
Men hvordan giver man denne sine to parametre?
Public Property Let Config( configKey, configValue )
oFCKeditor.Config = ("EditorAreaCSS", "
http://www.mysite.dk/webstyle.css")
eller andre kombinationer, jeg kan tænke på, accepteres ikke pga syntaxfejl.
Leif