Hello!
I found similar question in Russian part of forum. There is is solution:
Code:
const
SkinName = 'Skin loaded from stream';
begin
sSkinManager1.IsDefault := True;
sSkinManager1.InternalSkins.Add;
sSkinManager1.InternalSkins[sSkinManager1.InternalSkins.Count – 1].Name := SkinName;
sSkinManager1.InternalSkins[sSkinManager1.InternalSkins.Count – 1].PackedData.LoadFromfile('c:SkinsAir.asz');
sSkinManager1.SkinName := SkinName;
sSkinManager1.Active := True;
You can try to use LoadFromStream instead LoadFromfile. I hope, it will be useful for you.