ModifyButton

Discuss any general programming issues here
Post Reply
sashapont
Posts: 152
Joined: Thu Aug 03, 2017 2:49 pm

ModifyButton

Post by sashapont »

In help I see ModifyButton -- modify button data / OBSOLETE

Are there any new function to change button position without it removing?
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: ModifyButton

Post by airsoftsoftwair »

You could create a layer button and then move the layer around and the button position will change too.
sashapont
Posts: 152
Joined: Thu Aug 03, 2017 2:49 pm

Re: ModifyButton

Post by sashapont »

I don't understand clearly. Can you give same example?

I write

Code: Select all

CreateLayer(x,y,w,h,{Color = #WHITE, Name = Gadget1})
    SelectLayer(Gadge1)
        TextOut(4, 3, Text$)
MakeButton(1, #SIMPLEBUTTON, x, y, w, h, events)
    EndSelect
And have error.
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: ModifyButton

Post by airsoftsoftwair »

You have to use #LAYERBUTTON. See MakeButton().
Post Reply