function [] = GUI_400()
hFig = figure('units','pixels',...
'position',[300 300 424 430],...
'menubar','none',...
'name','GUI_3',...
'numbertitle','off',...
'resize','off');
Im = imread('0.png');
hAxes = axes('Parent',hFig,'Units','pixels','Position',[0 72 424 359]); %# so the position is easy to define
image(Im,'Parent',hAxes); %# Plot the image
set(hAxes,'Visible','off', 'handlevisibility', 'off'); %# Turn the axes visibility off
S.tx = uicontrol('style','text',...
'unit','pix',...
'position',[0 32 424 40],...
'string','מכין תמונה 1 מתוך 3',...
'backgroundcolor','r',...
'fontsize',23);
mystr = 'alon';
temp = uicontrol('style','text',...
'unit','pix',...
'position',[0 0 424 40],...
'string',mystr,...
'backgroundcolor','r',...
'fontsize',23);
for i = 1:1000
set(temp,'string',num2str(i));
drawnow;
end
end