Hello, I used this tutorials for menu functions.

I've got error like that:
Click image for larger version. 

Name:	shot0066.jpg 
Views:	24 
Size:	28.0 KB 
ID:	328

It's something bad with first argument.
Line in error message (185) is this line:
PHP Code:
BUTTON_TITLE(ORIGIN_TITLE_1"robson_title_locked""ui_robson_list_1""-2"); 
And the function:

PHP Code:

#define ORIGIN_TITLE_1 220 130
#define ORIGIN_TITLE_2 220 190
#define ORIGIN_TITLE_3 220 250
#define ORIGIN_TITLE_4 220 310

#define ORIGIN_TITLE_5 420 130
#define ORIGIN_TITLE_6 420 190
#define ORIGIN_TITLE_7 420 250
#define ORIGIN_TITLE_8 420 310

#define BUTTON_TITLE(_origin, _image, _dvartest, _id) \
itemDef \
{ \
    
name            "titles" \
    
origin            _origin \
    
visible            1 \
    
rect            0 0 128 32 \
    
forecolor        GLOBAL_UNFOCUSED_COLOR \
    
type            ITEM_TYPE_BUTTON \
    
style            WINDOW_STYLE_SHADER \
    
background        _image \
    
dvartest        _dvartest \
    
showDvar        "title_" ## _id } \
    
mouseEnter \
    { \
        
play "mouse_over"; \
    } \
    
action \
    { \
        
play "mouse_click"; \
        
scriptmenuresponse "select_" ## _id; \
    
} \

I tried aslo

PHP Code:
BUTTON_TITLE(220 130"robson_title_locked""ui_robson_list_1""-2"); 
but still got error.

Thanks for help.