[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 86: htmlspecialchars(): Charset "utf8-bin" is not supported, assuming UTF-8
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 151: htmlspecialchars(): Charset "utf8-bin" is not supported, assuming UTF-8
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 152: htmlspecialchars(): Charset "utf8-bin" is not supported, assuming UTF-8
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/user.php on line 329: htmlspecialchars(): Charset "utf8-bin" is not supported, assuming UTF-8
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4130: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3009)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4130: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3009)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4130: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3009)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4130: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3009)
DesignCAD DC Toolkit FileLinker Forum • Demo Makro aus Dokumentation reagiert unerwartet
Seite 1 von 1

Demo Makro aus Dokumentation reagiert unerwartet

Verfasst: Mittwoch 19. August 2020, 09:24
von Luv
Hallo,

um die Arbeitsweise von BASIC- Makro zu verstehen habe ich zum Lernen das Beisp. aus der Dokumentiation ausprobiert:

SETPOINT "Setzen Sie den ersten Punkt für den Quader" 1
POINTVAL X1,Y1,Z1 1
INPUT "Geben Sie den Wert für X ein:",X2
INPUT "Geben Sie den Wert für Y ein:",Y2
INPUT "Geben Sie den Wert für Z ein:",Z2
>Box
{
<Color 0,0,0
<Layer 1 <PointXYZ [X1,Y1,Z1]
<Pointrel [X2,Y2,Z2]
}

Ein Rechteck mit den Eingabe- Maßen entsteht nicht. Man sieht zunächst gar nichts auf dem Monitor,
klickt man dann blind auf eine leere Stelle im Monitor zeigt sich ein Rechteck mit ungewollten Abmessungen.

Entscheidend scheint zu sein, dass man den Abschluss des Makros nicht richtig hinbekommt weil man nichts sieht.

Wie geht es richtig?

Mit freundlichen Grüßen

Re: Demo Makro aus Dokumentation reagiert unerwartet

Verfasst: Mittwoch 19. August 2020, 09:27
von Luv
Erforderlicher Nachtrag

DC V 25.2 R. 27.09.2018

Entschuldigung

luv

Re: Demo Makro aus Dokumentation reagiert unerwartet

Verfasst: Freitag 21. August 2020, 14:42
von DcUser
Kleine Verbesserung - dann sollte es funktionieren (natürlich nur im 3D-Zeichnungsmodus):

SETPOINT "Setzen Sie den ersten Punkt für den Quader" 1
POINTVAL X1,Y1,Z1 1
INPUT "Geben Sie den Wert für X ein:",X2
INPUT "Geben Sie den Wert für Y ein:",Y2
INPUT "Geben Sie den Wert für Z ein:",Z2
>Box
{
<Color 0,0,0
<Layer 1
<PointXYZ [X1,Y1,Z1]

<Pointrel [X2,Y2,Z2]
}

Re: Demo Makro aus Dokumentation reagiert unerwartet

Verfasst: Freitag 21. August 2020, 15:57
von Luv
"Es sollte nicht nur" -> Es hat funktioniert.

Danke

luv