Posted: 2013-03-21 17:48:47
potwierdzam u mnie to samo próbowałem wielu skryptów i nic żadnego efektu
OK.Dizney wrote:Poprawile skrypt - wyszukiwanie filmow i odczytywanie komentarzy. Skrypt do pobrania z http://sdrv.ms/VxjO9u
A tutaj przykład pozostałych pół oryginalnie zapisywanych w polu obsada, a po moich przeróbkach dane zapisywane są do pól niestandardowych// Scenariusz (2013-05-10 by MaAd)
Value := GetMaterials(Page, 'role-screenwriter');
if (Length(Value) > 0) then
SetField(fieldWriter, Trim(Value));
// Muzyka (2013-05-10 by MaAd)
Value := GetMaterials(Page, 'role-music');
if (Length(Value) > 0) then
SetField(fieldComposer, Trim(Value));
To tyle moich przeróbek, ale fajnie by było jakby skrypt pobierał fotosy aktorów, fotosy z filmu (dane na film web dostępne), zwiastun (link).if GetOption('CzyDodDaneWPoluAktorzy') >= 2 then
begin
// Zdjęcia (2009-02-17 by jlatk)
Value := GetMaterials(Page, 'role-cinematographer');
if (Length(Value) > 0) then
SetCustomField('Cinematographer', Trim(Value));
// Montaż (2009-02-17 by jlatk)
Value := GetMaterials(Page, 'role-montage');
if (Length(Value) > 0) then
SetCustomField('Editor', Trim(Value));
// Scenografia (2009-02-17 by jlatk)
Value := GetMaterials(Page, 'role-productionDesigner');
if (Length(Value) > 0) then
SetCustomField('ProductionDesigner', Trim(Value));
// Kostiumy (2009-02-17 by jlatk)
Value := GetMaterials(Page, 'role-costumeDesigner');
if (Length(Value) > 0) then
SetCustomField('CostumeDesigner', Trim(Value));
// Dźwięk (2009-02-17 by jlatk)
Value := GetMaterials(Page, 'role-sound');
if (Length(Value) > 0) then
SetCustomField('Sound', Trim(Value));
end;
To są pola standardowe w wersji 4.2 beta.athe wrote:witam, almas, jestem ciekaw jak udało ci się utworzyć pola niestandardowe w głównym oknie programu. Chodzi o pole "Scenariusz" i "Muzyka".