registration in the client help

05/02/2011 13:28 John Noxville#1
Hi everyone! I've a problem with registration button on login... In my last client he work 100% but new with final client of Metin2 Italian don't work... When I press "Register" nothing happens

loginwindow.py

PHP Code:
        ## RegisterBoard
        
{
            
"name" "RegisterBoard",
            
"type" "thinboard",

            
"x" : (SCREEN_WIDTH 208) / 2,
            
"y" : (SCREEN_HEIGHT 410 93),
            
"width" 208,
            
"height" 55,

            
"children" :
            (
                {
                    
"name" "Register",
                    
"type" "text",

                    
"x" 50,
                    
"y" : -10,
                    
"vertical_align" "center",
                    
"text_vertical_align" "center",

                    
"text" uiScriptLocale.LOGIN_REGISTER_MESSAGE,
                },
                {
                    
"name" "RegisterButton",
                    
"type" "button",

                    
"x" 15,
                    
"y" 10,
                    
"vertical_align" "center",

                    
"default_image" "d:/ymir work/ui/public/xlarge_button_01.sub",
                    
"over_image" "d:/ymir work/ui/public/xlarge_button_02.sub",
                    
"down_image" "d:/ymir work/ui/public/xlarge_button_03.sub",

                    
"text" uiScriptLocale.LOGIN_REGISTER_BUTTON,
                    
"text_color" 0xffF8BF24,
                },
            ),
        }, 
intrologin.py

PHP Code:
    def __OnClickRegisterButton(self):    
        
self.wndWeb uiWeb.WebWindow()
        
self.wndWeb.LoadWindow()
        
self.wndWeb.Hide()
        
self.wndWeb.Open("http://site.com/reg_page.php")
        
self.wndChat.CloseChat() 
Any help?
05/02/2011 16:52 .Nguyen#2
did you got this images ?
Code:
default_image" : "d:/ymir work/ui/public/xlarge_button_01.sub",
                    "over_image" : "d:/ymir work/ui/public/xlarge_button_02.sub",
                    "down_image" : "d:/ymir work/ui/public/xlarge_button_03.sub",
Code:
self.wndWeb.Open("http://site.com/reg_page.php")
insert page? :3
05/02/2011 16:57 John Noxville#3
I have got their and site.com it's just an example o.ò