Jump to content

مساعده ب كود


#Basel

Recommended Posts

السلام عليكم ورحمه الله وتعالى

انا مبرمج جديد

عندي مشكله ب الكود

ممكن تصحيح

        guiWindowSetSizable(GUIEditor.window[1], false) 
  
        GUIEditor.button[1] = guiCreateButton(10, 25, 163, 52, "اف1 - الموتور", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[1], "sa-header") 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF1BCEE3") 
        GUIEditor.button[2] = guiCreateButton(198, 26, 163, 52, "Cars - F1", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[2], "sa-header") 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFEA8C13") 
        GUIEditor.button[3] = guiCreateButton(10, 92, 163, 52, "اف2 - الهاتف ", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[3], "sa-header") 
        guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FF21EB11") 
        GUIEditor.button[4] = guiCreateButton(198, 92, 163, 52, "اف5 - شات الدعم", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[4], "sa-gothic") 
        guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FFEF0CC7") 
        GUIEditor.button[5] = guiCreateButton(9, 163, 352, 68, "##حياكم الله ب سيرفير##", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[5], "sa-gothic") 
        guiSetProperty(GUIEditor.button[5], "NormalTextColour", "FF32DEB4")     
    end 
) 
  
  
GUIEditor_TabPanel = {} 
GUIEditor_Tab = {} 
GUIEditor_Button = {} 
GUIEditor_Memo = {} 
GUIEditor_Label = {}     
        function OpenWin() 
    if guiGetVisible ( GUIEditor.window[1] ) then   
       guiSetVisible ( GUIEditor.window[1], false ) 
       showCursor(false) 
       guiSetInputEnabled(false) 
    else 
        guiSetVisible ( GUIEditor.window[1], true ) 
        showCursor(true) 
        guiSetInputEnabled(true) 
  
    end 
end 
bindKey("F7", "down", OpenWin)  
  

وشكرا

اتمنى معرفه وين الخطاء

مشان ما اكرر الخطاء مره اخرى

:D

Link to comment
    GUIEditor_TabPanel = {} 
    GUIEditor_Tab = {} 
    GUIEditor_Button = {} 
    GUIEditor_Memo = {} 
    GUIEditor_Label = {}     
       guiWindowSetSizable(GUIEditor.window[1], false) 
      
            GUIEditor.button[1] = guiCreateButton(10, 25, 163, 52, "اف1 - الموتور", false, GUIEditor.window[1]) 
            guiSetFont(GUIEditor.button[1], "sa-header") 
            guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF1BCEE3") 
            GUIEditor.button[2] = guiCreateButton(198, 26, 163, 52, "Cars - F1", false, GUIEditor.window[1]) 
            guiSetFont(GUIEditor.button[2], "sa-header") 
            guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFEA8C13") 
            GUIEditor.button[3] = guiCreateButton(10, 92, 163, 52, "اف2 - الهاتف ", false, GUIEditor.window[1]) 
            guiSetFont(GUIEditor.button[3], "sa-header") 
            guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FF21EB11") 
            GUIEditor.button[4] = guiCreateButton(198, 92, 163, 52, "اف5 - شات الدعم", false, GUIEditor.window[1]) 
            guiSetFont(GUIEditor.button[4], "sa-gothic") 
            guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FFEF0CC7") 
            GUIEditor.button[5] = guiCreateButton(9, 163, 352, 68, "##حياكم الله ب سيرفير##", false, GUIEditor.window[1]) 
            guiSetFont(GUIEditor.button[5], "sa-gothic") 
            guiSetProperty(GUIEditor.button[5], "NormalTextColour", "FF32DEB4")     
         
      
  
            function OpenWin() 
        if guiGetVisible ( GUIEditor.window[1] ) then   
           guiSetVisible ( GUIEditor.window[1], false ) 
           showCursor(false) 
           guiSetInputEnabled(false) 
        else 
            guiSetVisible ( GUIEditor.window[1], true ) 
            showCursor(true) 
            guiSetInputEnabled(true) 
      
        end 
    end 
    bindKey("F7", "down", OpenWin) 

Link to comment

الاكواد ناقصة, لعلك ناسخها من مود الإديتور غلط

وبالنسبة لـ

    GUIEditor_TabPanel = {} 
    GUIEditor_Tab = {} 
    GUIEditor_Button = {} 
    GUIEditor_Memo = {} 
    GUIEditor_Label = {}     

ما لها علاقة بكودك, ولو بتستخدمها راح تحطها قبل الأكواد اللي بتستخدم الجداول فيه

مثال:

  
GUIEditor.img[1] = guiCreateStaticImage ( ....... ) 
  
GUIEditor = {  
    img = { }; 
}; 

^ غلط

مو معرفة اصلاً GUIEditor لأن

فـ عشان تعرفها بالمود لازم تحطها قبل الأكواد

  
GUIEditor = {  
    img = { }; 
}; 
  
GUIEditor.img[1] = guiCreateStaticImage ( ....... ) 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...