Page 1 of 1

[Done] Options Before Flags

Posted: Wed Mar 27, 2013 4:57 am
by electrochrisso
When selecting #PB_Calendar_Borderless option for calendar gadget this code is produced

Code: Select all

Calendar_0 = CalendarGadget(#PB_Any, 12, 63, 258, 197, #PB_Calendar_Borderless)
It will not work because there also needs to be at least a 0 or a date inserted before the flag

Code: Select all

Calendar_0 = CalendarGadget(#PB_Any, 12, 63, 258, 197, 0, #PB_Calendar_Borderless)
This is something to look out for with gadgets that use more optional/s before the flags as values need to be there too.

Re: Options Before Flags

Posted: Thu Apr 11, 2013 5:09 pm
by Polo
Fixed.