Page 1 of 1

Mcall and Button creation help

Posted: Thu Mar 20, 2014 10:04 am
by vipin
Hi Guys.
I a beginner maybe you can say .
im new here and need help with the button
specifically when we create a button we do it like

Code: Select all

mcall 8,<>,<>,id,color
right
now let me say if the id is 1

Code: Select all

mcall 8,<>,<>,1,color
inc edx
mcall 8<>,<>, ,
inc edx
mcall 8,<>,<>, , 
and use mcall 17 to id it
then

Code: Select all

cmp ah,1 
je func
cmp ah,2
je func2
cmp ah,3
je func3
is this how it is?

Re: Mcall and Button creation help

Posted: Thu Mar 20, 2014 10:56 am
by SoUrcerer
Well, http://websvn.kolibrios.org/filedetails ... xample.asm
Something like you said.
Btw, there are [ code ] tag.

Re: Mcall and Button creation help

Posted: Thu Mar 20, 2014 12:02 pm
by vipin
this is nice... buttons i can create but identifying a created button?
for eg:

Code: Select all

mcall 8,<>,<>,5,color
will be identified by

Code: Select all

mcall 17
cmp ah,5
je some_func

Re: Mcall and Button creation help

Posted: Thu Mar 20, 2014 12:46 pm
by 0CodErr