1
![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() |
You can change language in Profile - Account Settings - Language. Men kan de taal veranderen in Profiel - Accountinstellingen - Taal.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
window(666, 666);
char s[99];
int n;
button(0,0, "Test", test);
run;
:test;
popup(99, 99, "one|two|three", test1);
return;
:test1;
strset(s, "%d %d", n, menunumber);
setcaption(s);
n += 1;
return;
window(0, 0);
button(10, height - 30, "Menu", NULL);
command(BUTTON, 0, 10, 0);
command(MENU, 0, 12, 0);
button(0, 0, "hi", NULL);
command(BUTTON, buttonnumber, 0, 0); ` operate on the previously made button
int i = button(0, 0, "hi", NULL);
command(BUTTON, i, 0, 0); ` operate on the previously made button
menu(4, "Show Radix Lines", go);
menu(4, "Show Radix Planets", go);
menu(4, "Show House Lines", go);
command(MENU, 4, AUTOCHECK, 1);
command(MENU, 5, AUTOCHECK, 1);
command(MENU, 6, AUTOCHECK, 1);
menu(4, "Show Radix Lines", go);
command(MENU, menunumber, AUTOCHECK, 1);
menu(4, "Show Radix Planets", go);
command(MENU, menunumber, AUTOCHECK, 1);
menu(4, "Show House Lines", go);
command(MENU, menunumber, AUTOCHECK, 1);