dugasz1 Posted August 16, 2013 Share Posted August 16, 2013 skins = {"101","102","104","106","109",} function createShop() ablak = guiCreateWindow(565, 335, 408, 415, "", false) guiWindowSetSizable(ablak, false) grid = guiCreateGridList(23, 40, 196, 317, false, ablak) column = guiGridListAddColumn( grid, "Skinek", 0.85 ) for _, v in pairs( skins ) do local gunRow = guiGridListAddRow ( grid ) guiGridListSetItemText ( grid, gunRow, column, v, false, false ) end guiGridListSetSelectedItem ( grid, 0, 1) skinImg = guiCreateStaticImage(257, 124, 120, 160, "images/101.png", false, ablak) load = guiCreateButton(25, 385, 194, 20, "Megnézem", false, ablak) addEventHandler ( "onClientGUIClick", load, loadImg, false) close = guiCreateButton(379, 23, 19, 17, "X", false, ablak) addEventHandler ( "onClientGUIClick", close, function() destroyElement(ablak) showCursor(false) isAblakOpen = false end, false) megvesz = guiCreateButton(233, 385, 165, 20, "Megveszem", false, ablak) guiSetProperty(megvesz, "NormalTextColour", "FF11FE00") infoLbl = guiCreateLabel(232, 43, 166, 71, "Minden skin ára: 250 zp!\n\nEgy skin megvétele után\nakármikor felveheted itt!", false, ablak) guiSetFont(infoLbl, "default-bold-small") guiLabelSetColor(infoLbl, 252, 2, 2) end function loadImg() local r, _ = guiGridListGetSelectedItem(grid) local theSkin = guiGridListGetItemText(grid, r, 1) guiStaticImageLoadImage ( load, "images/101.png" ) end This is the error: http://kepfeltoltes.hu/130816/gta_sa_2013-08-16_15-02-29-84_www.kepfeltoltes.hu_.jpg I dont know why cant load it:/ Link to comment
tosfera Posted August 16, 2013 Share Posted August 16, 2013 Your problem is this little guy; guiStaticImageLoadImage ( load, "images/101.png" ) He's searching for an image called; load. But your image is called skinImg; skinImg = guiCreateStaticImage(257, 124, 120, 160, "images/101.png", false, ablak) change line 38 to this; guiStaticImageLoadImage ( skinImg , "images/101.png" ) Link to comment
dugasz1 Posted August 16, 2013 Author Share Posted August 16, 2013 -.- Im very blind thx (Im 186cm not little:D) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now