Jump to content

خطأ بالكود غير معروف


#Rmad~>

Recommended Posts

  • Replies 65
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

يعني انت الحين شايف ان الكود هذا مو هريسة ؟

GUIEditor = { 
    window = {} 
} 
GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "ok", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
             guiSetVisible ( GUIEditor.window[1] , false ) 
  
bindKey ( "F2" , "down" , 
    function () 
        if guiGetVisible ( GUIEditor.window[1] , true ) then 
            guiSetVisible ( GUIEditor.window[1] , false ) 
            showCursor ( false ) 
            outputChatBox ( "Closed" , 255 , 0 , 0 , true ) 
        else 
            guiSetVisible ( GUIEditor.window[1] , true ) 
            showCursor ( true ) 
            outputChatBox ( "Opened" , 0 , 255 , 0 , true ) 
        end 
    end 
)     
  
  
  
addEventHandler ("onClientGUIClick",guiRoot,function() 
if source == GUIEditor.button[1] then 
guiSetVisible(GUIEditor.window[1], false) 
 showCursor ( false ) 
end 
end 
) 

جرب كذآ : /

بعدين انت ليه حاط هذول بكودك

GUIEditor_Window = {}

GUIEditor_Button = {}

وانت بل اساس مومستخدمهم ؟ كوبي بست ؟

Edited by Guest
Link to comment

يعني انت الحين شايف ان الكود هذا مو هريسة ؟

GUIEditor = { 
    window = {} 
} 
GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "ok", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
             guiSetVisible ( GUIEditor.window[1] , false ) 
  
bindKey ( "F2" , "down" , 
    function () 
        if guiGetVisible ( GUIEditor.window[1] , true ) then 
            guiSetVisible ( GUIEditor.window[1] , false ) 
            showCursor ( false ) 
            outputChatBox ( "Closed" , 255 , 0 , 0 , true ) 
        else 
            guiSetVisible ( GUIEditor.window[1] , true ) 
            showCursor ( true ) 
            outputChatBox ( "Opened" , 0 , 255 , 0 , true ) 
        end 
    end 
)     
  
  
  
addEventHandler ("onClientGUIClick",guiRoot,function() 
if source == GUIEditor.button[1] then 
guiSetVisible(GUIEditor.window[1], false) 
 showCursor ( false ) 
end 
end 
) 

جرب كذآ : /

يآقلبي : )

عندكك خطآء هنا

GUIEditor = {

    window = {}

}

و هو ماحط اسم النافذه في الزر يعني مخبص ام الكود : /

وانت برضهه نفس الكلام

شوف

    GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "close", false) 

^ وين اسم النافذه بالله ؟

عدلتهآ انا وخليتهآ

enksar = guiCreateButton(872, 269, 329, 216,"close",false,wnd) 

Link to comment

بعدين انت ليه حاط هذول بكودك

GUIEditor_Window = {}

GUIEditor_Button = {}

وانت بل اساس مومستخدمهم ؟ كوبي بست ؟

:lol: معليش راحت علي ,, بس انا يوم اصلح الكود مانتبهتلها بس يمكن صاحب الكود مخلي الزر خارج الوحه او شي من هذا القبيل

ولو تلاحظ ان صاحب الكود من طرح الكود وهو كان مو داخل الوحه نفسها

EDIT#

ترا انا جربت الكود شغال والوحه تفتح بس الزر موموجود بلوحه اعتقد صاحب الموضوع حاط احداثيات

الزر خارج الوحه -_-"

Link to comment

بعدين انت ليه حاط هذول بكودك

GUIEditor_Window = {}

GUIEditor_Button = {}

وانت بل اساس مومستخدمهم ؟ كوبي بست ؟

:lol: معليش راحت علي ,, بس انا يوم اصلح الكود مانتبهتلها بس يمكن صاحب الكود مخلي الزر خارج الوحه او شي من هذا القبيل

ولو تلاحظ ان صاحب الكود من طرح الكود وهو كان مو داخل الوحه نفسها

EDIT#

ترا انا جربت الكود شغال والوحه تفتح بس الزر موموجود بلوحه اعتقد صاحب الموضوع حاط احداثيات

الزر خارج الوحه -_-"

عوآفي يآرآقل: )

Link to comment

شباب ابغا افهم الزر يكون بداخل النافذة !؟

انا مابيه كذا ابيه لما يظغط الزر يفتح له نافذة

مو بداخل الزر الي ظغطت عليه

نافذة غير

+

جربت كل الاكواد ياشباب ومالقيت شي جاب نتيجه

Link to comment
GUIEditor = { 
    window = {} 
    button = {} 
} 
GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "open wind", false,GUIEditor.window[1]) 
guiSetVisible ( GUIEditor.window[1], false ) 
     
function OpenWin() 
    if guiGetVisible ( GUIEditor.window[1] ) then   
        guiSetVisible ( GUIEditor.window[1], false )   
        showCursor(false)   
    else 
        guiSetVisible ( GUIEditor.window[1], true )   
        showCursor(true)   
    end 
end   
bindKey("F2", "down", OpenWin) 
     
     
addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
    if ( source == GUIEditor.button[1] ) then 
        guiSetVisible ( YourWindo_Two, true )   
    end 
end)  

شوف عاد انت سو الوحه وعدل اسمها تحط اسم الوحه الثانيه بسطر 24

sleep_Time :mrgreen:

Link to comment

تمام الله لايهينك ياذيب

بس بغيت اخر طلب الله لايهينك ياذيب

بغيته اول مايخلص من النافذة ويقفلها

تنقفل كل النوافذ

لاني جربت اقفل قفلت النافذة الاصلية الي فيها الازرار

والثانية لا

وابيه الله لايهينك اذا فتح نافذة وفتح ثانية غيرها تروح الاولى وتبقا الثانية

والله لايهينك ياذيب وننتظرك لما تقوم ان شاءالله

Link to comment
تمام الله لايهينك ياذيب

بس بغيت اخر طلب الله لايهينك ياذيب

بغيته اول مايخلص من النافذة ويقفلها

تنقفل كل النوافذ

لاني جربت اقفل قفلت النافذة الاصلية الي فيها الازرار

والثانية لا

وابيه الله لايهينك اذا فتح نافذة وفتح ثانية غيرها تروح الاولى وتبقا الثانية

والله لايهينك ياذيب وننتظرك لما تقوم ان شاءالله

  
GUIEditor = { 
    window = {} 
    button = {} 
} 
GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "open wind", false,GUIEditor.window[1]) 
guiSetVisible ( GUIEditor.window[1], false ) 
    
function OpenWin() 
    if guiGetVisible ( GUIEditor.window[1] ) then   
        guiSetVisible ( GUIEditor.window[1], false )   
        showCursor(false)   
    else 
        guiSetVisible ( GUIEditor.window[1], true )   
        showCursor(true)   
    end 
end   
bindKey("F2", "down", OpenWin) 
    
    
addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
    if ( source == GUIEditor.button[1] ) then 
        guiSetVisible ( YourWindo_Two, true )   
    end 
end) 
  
addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
    if ( source == GUIEditor.button[2] ) then   <<< اسم زر الاغلاق 
        guiSetVisible ( YourWindo_Two, false )  <<< اسم النافذهه الثانيه 
        guiSetVisible ( GUIEditor.window[1], false )  <<< اسم النافذه الاولى 
  
    end 
end) 

اتمنى افدتك : )

Link to comment
  
GUIEditor = { 
    window = {} 
    button = {} 
} 
GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "open wind", false,GUIEditor.window[1]) 
guiSetVisible ( GUIEditor.window[1], false ) 
    
function OpenWin() 
    if guiGetVisible ( GUIEditor.window[1] ) then   
        guiSetVisible ( GUIEditor.window[1], false )   
        showCursor(false)   
    else 
        guiSetVisible ( GUIEditor.window[1], true )   
        showCursor(true)   
    end 
end   
bindKey("F2", "down", OpenWin) 
    
    
addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
    if ( source == GUIEditor.button[1] ) then 
        guiSetVisible ( YourWindo_Two, true )   
    end 
end) 
  
addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
    if ( source == GUIEditor.button[2] ) then   <<< اسم زر الاغلاق 
        guiSetVisible ( YourWindo_Two, false )  <<< اسم النافذهه الثانيه 
        guiSetVisible ( GUIEditor.window[1], false )  <<< اسم النافذه الاولى 
  
    end 
end) 

X

      
  GUIEditor = { 
    window = {}, 
    button = {} 
  } 
  
  GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
  guiWindowSetSizable(GUIEditor.window[1], false) 
  GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "open wind", false,GUIEditor.window[1]) 
  guiSetVisible ( GUIEditor.window[1], false ) 
        
    function OpenWin() 
        if guiGetVisible ( GUIEditor.window[1] ) then   
            guiSetVisible ( GUIEditor.window[1], false )   
            showCursor(false)   
            else 
            guiSetVisible ( GUIEditor.window[1], true )   
          showCursor(true)   
       end 
   end   
 bindKey("F2", "down", OpenWin) 
        
        
    addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
        if ( source == GUIEditor.button[1] ) then 
            guiSetVisible ( YourWindo_Two, true )   
        end 
    end) 
      
    addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
        if ( source == GUIEditor.button[2] ) then   
            guiSetVisible ( YourWindo_Two, false )  
            guiSetVisible ( GUIEditor.window[1], false )  
          showCursor(false)   
        end 
    end) 
Link to comment
GUIEditor = { 
    window = {}, 
    button = {} 
  } 
  
  GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
  guiSetVisible ( GUIEditor.window[1], false ) 
  guiSetAlpha(GUIEditor.window[1], 0.76) 
  GUIEditor.button[1] = guiCreateButton(53, 126, 231, 131, "open wind", false,GUIEditor.window[1]) 
        
   
  GUIEditor.window[5] = guiCreateWindow(495, 206, 328, 265, "T", false) 
  guiSetVisible ( GUIEditor.window[5], false ) 
  
  
bindKey ( "F2" , "down" , 
    function () 
        if guiGetVisible ( GUIEditor.window[1] , true ) then 
            guiSetVisible ( GUIEditor.window[1] , false ) 
            showCursor ( false ) 
            outputChatBox ( "Closed" , 255 , 0 , 0 , true ) 
        else 
            guiSetVisible ( GUIEditor.window[1] , true ) 
            showCursor ( true ) 
            outputChatBox ( "Opened" , 0 , 255 , 0 , true ) 
        end 
    end 
)     
addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
        if ( source == GUIEditor.button[1] ) then 
            guiSetVisible ( GUIEditor.window[5], true )   
        end 
    end) 
  
    addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
    if ( source == GUIEditor.button[1] ) then   
            guiSetVisible ( GUIEditor.window[5], false ) 
            guiSetVisible ( GUIEditor.window[1], false ) 
          showCursor(false)   
        end 
    end)     

Edited by Guest
Link to comment

جرب كذا طيب

GUIEditor = { 
    window = {}, 
    button = {} 
  } 
  
  GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) 
  guiSetVisible ( GUIEditor.window[1], false ) 
  guiSetAlpha(GUIEditor.window[1], 0.76) 
  GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "open wind", false,GUIEditor.window[1]) 
        
  GUIEditor.window[5] = guiCreateWindow(495, 206, 328, 265, "T", false) 
  guiSetVisible ( GUIEditor.window[5], false ) 
  
  
bindKey ( "F2" , "down" , 
    function () 
        if guiGetVisible ( GUIEditor.window[1] , true ) then 
            guiSetVisible ( GUIEditor.window[1] , false ) 
            showCursor ( false ) 
            outputChatBox ( "Closed" , 255 , 0 , 0 , true ) 
        else 
            guiSetVisible ( GUIEditor.window[1] , true ) 
            showCursor ( true ) 
            outputChatBox ( "Opened" , 0 , 255 , 0 , true ) 
        end 
    end 
)     
        
    addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
        if ( source == GUIEditor.button[1] ) then 
            guiSetVisible ( GUIEditor.window[5], true )   
            showCursor(true)  
        end 
    end) 
      
    addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
    if ( source == GUIEditor.button[1] ) then   
            guiSetVisible ( GUIEditor.window[5], false ) 
            guiSetVisible ( GUIEditor.window[1], false ) 
          showCursor(false)   
        end 
    end)  

Link to comment

يالغلا ابيه لما يظغط الزر

وتفتح له النافذة

ولما يخلص منها ويظغط اف 2 الي هو يقفل تنقفل النافذة الثانية الي تنفتح بالزر مع النافذة الاولى

وابيه لما يفتح نافذة وكمان يفتح نافذة ثانية النافذة السابقة تنقفل

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...