Wieso Javascript, Python ist doch viel netter:
Code: Alles auswählen
>>> import random
>>> random.sample(range(1,50), 6)
[9, 23, 47, 5, 30, 22]
>>>
Weitere Fragen ?
Gruß Karo
Moderator: Moderatoren
Code: Alles auswählen
>>> import random
>>> random.sample(range(1,50), 6)
[9, 23, 47, 5, 30, 22]
>>>
Nein. So weit ich weiß sind OOo's JavaScript-Möglichkeiten etwas eingeschränkt. Die Verarbeitung von JavaScript in OOo erfolgt durch Rhino (http://www.mozilla.org/rhino/).Kakao hat geschrieben:kann ich einen JS-Code aus einem html-dokument eins zu eins in ein makro übertragen?
Vielleicht helfen diese Links ein ganz kleines bisschen:Kakao hat geschrieben:Die "Tutorials", die wir uns angeschaut haben, haben da leider wenig geholfen.
Nur Frage ich mich, warum du nicht die Doku liest, auf die ich bereits verwiesen haben? Da wird doch wunderbar erklärt was die Imports machen:Kakao hat geschrieben:Nur Frage ich mich, was die imports zum anfang eines makroscripts machen..
Rhino project page > Scripting Java hat geschrieben:If your scripts access a lot of different Java classes it can get awkward to use the full package name of the class every time. Rhino provides a top-level function importPackage that serves the same purpose as Java's import declaration. For example, we could import all of the classes in the java.io package and access class java.io.File using just the name File: ...
Quellen: http://www.mozilla.org/rhino/ScriptingJava.html und http://www.mozilla.org/rhino/scriptjava.htmlRhino project page > Scripting Java hat geschrieben:Above we saw the use of the importPackage function to import all the classes from a particular Java package. There is also importClass, which imports a single class: ...