Quote:
Originally Posted by audiofeel
@hitman797
 Let's make the code a little smaller. It does not affect anything in my opinion except for the size of the script file. O = Optimization
Code:
var
SSImg: String;
i: Integer;
begin
for i:= 1 to 20 do
begin
FMXITEM[i].FCreateEx(FMXTAB.Handle);
FMXRECT[i].FCreate(FMXITEM[i].Handle);
FMXRECT[i].Align(Client);
SSImg:= 'Background' + IntToStr(i) + '.jpg';
FMXRECT[i].FillPicture(ExtractAndLoad(SSImg), wmTileStretch);
end;
 Is it possible to place various other objects on top of the slide show? Won't they float with the picture?
|
Other component can be added by adding TabControl2
and Handle TabControl2 in FMXForm.
and add objects to TabControl2.