SlideShare a Scribd company logo
1 of 7
A N A L I S A A F T E R E F F E C T :
EXPRESSION LANGUAGE
PADA KINETIC FALLING
TEXT
S I T I I M A R O H N U R F I R D H A V. 4 1 0 3 1 5 1 0 0 6
N O U R M A D W I N D A VA L E N T I N E 4 1 0 3 1 5 1 0 2 3
D W I K I A K B A R 4 1 0 3 1 5 1 0 2 7
EXPRESSION LANGUAGE REFERENCE
Menggunakan elemen ekspresi pada adobe after effect dengan unsur standar javascript
untuk membuat sebuah ekspresi. Pengguna dapat menggunakan Expression Language
menu saat kapanpun untuk memasukkan metode dan atribut dalam ekspression, dan
juga dapat memilih pick whip untuk memasukkan properties pada animasi.
Jika sebuah deskripsi argumen berisi tanda sama dengan (=) dan nilai (seperti t=time
atau width=.2) lalu argumen termasuk standart value jika tidak dispesifikasikan sesuai
dengan nilai yang berbeda.
Pada animasi Kinettic Falling text, menggunakan kode script berbasis java dengan
berikut ini :
GLOBAL OBJECTS, ATTRIBUTES, AND METHODS
(EXPRESSION REFERENCE)
• comp(name)Return type: Comp. Argument type: name is a String. Retrieves another composition by name.
• footage(name) Return type: Footage. Argument type: name is a String. Retrieves a footage item by name.
• thisComp Return type: Comp. Represents the composition containing the expression.
• thisLayer Return type: Layer, Light, or Camera. Represents the layer containing the expression. Because
thisLayer is the default object, its use is optional.
• thisProperty Return type: Property. Represents the property containing the expression. For example, if you
write an expression on the Rotation property, you can start an expression with thisProperty to refer to the
Rotation property. time
• Return type: Number. Represents the composition time, in seconds, at which the expression is being
evaluated.
• colorDepth Return type: Number. Returns the project color depth value. For example, colorDepth returns 16
when the project color depth is 16 bits per channel.
• posterizeTime(framesPerSecond)Return type: Number. Argument type: framesPerSecond is a Number.
• The framesPerSecond value becomes the frame rate from which the rest of the expression operates. This
expression allows you to set the frame rate for a property to be lower than the frame rate of the
composition. For example, the following expression updates the property value with a random value once
per second:
TIME CONVERSION METHODS
(EXPRESSION REFERENCE)
• timeToFrames(t = time + thisComp.displayStartTime, fps = 1.0 /
thisComp.frameDuration, isDuration = false)
• Return type: Number.
• Argument type: t and fps are Numbers; isDuration is a Boolean.
• Converts the value of t, which defaults to the current composition time, to an integer
number of frames. The number of frames per second is specified in the fps argument,
which defaults to the frame rate of the current composition (1.0 /
VECTOR MATH METHODS (EXPRESSION
REFERENCE)
• Vector Math functions are global methods that perform operations on arrays, treating
them as mathematical vectors. Unlike built-in JavaScript methods, such as Math.sin,
these methods are not used with the Math prefix. Unless otherwise specified, Vector
Math methods are lenient about dimensions and return a value that is the dimension
of the largest input Array object, filling in missing elements with zeros. For example,
the expression add([10, 20], [1, 2, 3]) returns [11, 22, 3].
• Source : https://helpx.adobe.com/after-effects/using/expression-language-
reference.html

More Related Content

What's hot

Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)Mohammad Ilyas Malik
 
Reference Parameter, Passing object by reference, constant parameter & Defaul...
Reference Parameter, Passing object by reference, constant parameter & Defaul...Reference Parameter, Passing object by reference, constant parameter & Defaul...
Reference Parameter, Passing object by reference, constant parameter & Defaul...Meghaj Mallick
 
Finite Automata in compiler design
Finite Automata in compiler designFinite Automata in compiler design
Finite Automata in compiler designRiazul Islam
 
Nondeterministic Finite Automata
Nondeterministic Finite AutomataNondeterministic Finite Automata
Nondeterministic Finite AutomataAdel Al-Ofairi
 
Lec16-CS110 Computational Engineering
Lec16-CS110 Computational EngineeringLec16-CS110 Computational Engineering
Lec16-CS110 Computational EngineeringSri Harsha Pamu
 
Presenter name aizaz ali
Presenter name aizaz aliPresenter name aizaz ali
Presenter name aizaz aliAizazAli21
 
push down automata
 push down automata push down automata
push down automatanadiatariq6
 
17432 object oriented programming
17432   object oriented programming17432   object oriented programming
17432 object oriented programmingsoni_nits
 
NFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition DiagramNFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition DiagramAbdullah Jan
 
Maclennan chap5-pascal
Maclennan chap5-pascalMaclennan chap5-pascal
Maclennan chap5-pascalSerghei Urban
 
Introduction TO Finite Automata
Introduction TO Finite AutomataIntroduction TO Finite Automata
Introduction TO Finite AutomataRatnakar Mikkili
 

What's hot (20)

Pixel shaders
Pixel shadersPixel shaders
Pixel shaders
 
25 Jo P Jan 09
25 Jo P Jan 0925 Jo P Jan 09
25 Jo P Jan 09
 
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
Finite Automata: Deterministic And Non-deterministic Finite Automaton (DFA)
 
Reference Parameter, Passing object by reference, constant parameter & Defaul...
Reference Parameter, Passing object by reference, constant parameter & Defaul...Reference Parameter, Passing object by reference, constant parameter & Defaul...
Reference Parameter, Passing object by reference, constant parameter & Defaul...
 
Modern C++
Modern C++Modern C++
Modern C++
 
Finite Automata in compiler design
Finite Automata in compiler designFinite Automata in compiler design
Finite Automata in compiler design
 
Nondeterministic Finite Automata
Nondeterministic Finite AutomataNondeterministic Finite Automata
Nondeterministic Finite Automata
 
Turing machine-TOC
Turing machine-TOCTuring machine-TOC
Turing machine-TOC
 
O 2-o
O 2-oO 2-o
O 2-o
 
Introduction to FSharp
Introduction to FSharpIntroduction to FSharp
Introduction to FSharp
 
Lec16-CS110 Computational Engineering
Lec16-CS110 Computational EngineeringLec16-CS110 Computational Engineering
Lec16-CS110 Computational Engineering
 
Presenter name aizaz ali
Presenter name aizaz aliPresenter name aizaz ali
Presenter name aizaz ali
 
push down automata
 push down automata push down automata
push down automata
 
17432 object oriented programming
17432   object oriented programming17432   object oriented programming
17432 object oriented programming
 
Unit iv
Unit ivUnit iv
Unit iv
 
Lo18
Lo18Lo18
Lo18
 
NFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition DiagramNFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition Diagram
 
Maclennan chap5-pascal
Maclennan chap5-pascalMaclennan chap5-pascal
Maclennan chap5-pascal
 
Automata Theory - Turing machine
Automata Theory - Turing machineAutomata Theory - Turing machine
Automata Theory - Turing machine
 
Introduction TO Finite Automata
Introduction TO Finite AutomataIntroduction TO Finite Automata
Introduction TO Finite Automata
 

Viewers also liked

ONTAP - Paddling Techniques Part 1
ONTAP - Paddling Techniques Part 1ONTAP - Paddling Techniques Part 1
ONTAP - Paddling Techniques Part 1WRDSB
 
Spesifik after effects pada praktikum "2D animation & 2D Animated Typeface
Spesifik after effects pada praktikum "2D animation & 2D Animated TypefaceSpesifik after effects pada praktikum "2D animation & 2D Animated Typeface
Spesifik after effects pada praktikum "2D animation & 2D Animated TypefaceVamelAfganisme Quartz
 
Leachate generation from tsdf and its treatment options
Leachate generation from tsdf and its treatment optionsLeachate generation from tsdf and its treatment options
Leachate generation from tsdf and its treatment optionsAyushi Chaturvedi
 
Branch Transformation Sheet Proof 6
Branch Transformation Sheet Proof 6Branch Transformation Sheet Proof 6
Branch Transformation Sheet Proof 6David Steele
 
Pemikiran Albert Bandura dalam pendidikan
Pemikiran Albert Bandura dalam pendidikanPemikiran Albert Bandura dalam pendidikan
Pemikiran Albert Bandura dalam pendidikantemie20
 
Modulo 3. El tutor y la familia en la eduación
Modulo 3. El tutor y la familia en la eduaciónModulo 3. El tutor y la familia en la eduación
Modulo 3. El tutor y la familia en la eduaciónEnriMedi94
 
Software Maintenance
Software MaintenanceSoftware Maintenance
Software MaintenanceIfan Dhani
 
Equipamentos boxe
Equipamentos boxeEquipamentos boxe
Equipamentos boxeDCRDANYLA
 
Laporan review rpb dki 2016
Laporan review rpb dki 2016Laporan review rpb dki 2016
Laporan review rpb dki 2016Ninil Jannah
 

Viewers also liked (18)

278064571 pancreatitis sdxs
278064571 pancreatitis sdxs278064571 pancreatitis sdxs
278064571 pancreatitis sdxs
 
ONTAP - Paddling Techniques Part 1
ONTAP - Paddling Techniques Part 1ONTAP - Paddling Techniques Part 1
ONTAP - Paddling Techniques Part 1
 
Spesifik after effects pada praktikum "2D animation & 2D Animated Typeface
Spesifik after effects pada praktikum "2D animation & 2D Animated TypefaceSpesifik after effects pada praktikum "2D animation & 2D Animated Typeface
Spesifik after effects pada praktikum "2D animation & 2D Animated Typeface
 
portfolio
portfolioportfolio
portfolio
 
Leachate generation from tsdf and its treatment options
Leachate generation from tsdf and its treatment optionsLeachate generation from tsdf and its treatment options
Leachate generation from tsdf and its treatment options
 
Do not-let-them-die
Do not-let-them-dieDo not-let-them-die
Do not-let-them-die
 
PROdruk №2
PROdruk №2PROdruk №2
PROdruk №2
 
Branch Transformation Sheet Proof 6
Branch Transformation Sheet Proof 6Branch Transformation Sheet Proof 6
Branch Transformation Sheet Proof 6
 
Pemikiran Albert Bandura dalam pendidikan
Pemikiran Albert Bandura dalam pendidikanPemikiran Albert Bandura dalam pendidikan
Pemikiran Albert Bandura dalam pendidikan
 
Modulo 3. El tutor y la familia en la eduación
Modulo 3. El tutor y la familia en la eduaciónModulo 3. El tutor y la familia en la eduación
Modulo 3. El tutor y la familia en la eduación
 
Software Maintenance
Software MaintenanceSoftware Maintenance
Software Maintenance
 
Curriculum del maestro Riccardo Della Godenza
Curriculum del maestro Riccardo Della GodenzaCurriculum del maestro Riccardo Della Godenza
Curriculum del maestro Riccardo Della Godenza
 
ULASAN ARTIKEL 1
ULASAN ARTIKEL 1 ULASAN ARTIKEL 1
ULASAN ARTIKEL 1
 
1. unidad i
1. unidad i1. unidad i
1. unidad i
 
Equipamentos boxe
Equipamentos boxeEquipamentos boxe
Equipamentos boxe
 
Mastografía
MastografíaMastografía
Mastografía
 
Franchising by Kriek
Franchising by KriekFranchising by Kriek
Franchising by Kriek
 
Laporan review rpb dki 2016
Laporan review rpb dki 2016Laporan review rpb dki 2016
Laporan review rpb dki 2016
 

Similar to Analisa Expression pada after effect menggungakan bahasa script

Important notes· NOTE it is usually fine and often encouraged i.docx
Important notes· NOTE it is usually fine and often encouraged i.docxImportant notes· NOTE it is usually fine and often encouraged i.docx
Important notes· NOTE it is usually fine and often encouraged i.docxwilcockiris
 
Typescript language extension of java script
Typescript language extension of java scriptTypescript language extension of java script
Typescript language extension of java scriptmichaelaaron25322
 
Functions in c language
Functions in c language Functions in c language
Functions in c language tanmaymodi4
 
Functions in c language
Functions in c languageFunctions in c language
Functions in c languageTanmay Modi
 
Python Programming Basics for begginners
Python Programming Basics for begginnersPython Programming Basics for begginners
Python Programming Basics for begginnersAbishek Purushothaman
 
typescript.pptx
typescript.pptxtypescript.pptx
typescript.pptxZeynepOtu
 
Functions in C++
Functions in C++Functions in C++
Functions in C++home
 
12 computer science_notes_ch01_overview_of_cpp
12 computer science_notes_ch01_overview_of_cpp12 computer science_notes_ch01_overview_of_cpp
12 computer science_notes_ch01_overview_of_cppsharvivek
 
C++ Function
C++ FunctionC++ Function
C++ FunctionHajar
 
Presentation 5th
Presentation 5thPresentation 5th
Presentation 5thConnex
 
Module 1 notes of data warehousing and data
Module 1 notes of data warehousing and dataModule 1 notes of data warehousing and data
Module 1 notes of data warehousing and datavijipersonal2012
 

Similar to Analisa Expression pada after effect menggungakan bahasa script (20)

Savitch ch 17
Savitch ch 17Savitch ch 17
Savitch ch 17
 
Savitch Ch 17
Savitch Ch 17Savitch Ch 17
Savitch Ch 17
 
Important notes· NOTE it is usually fine and often encouraged i.docx
Important notes· NOTE it is usually fine and often encouraged i.docxImportant notes· NOTE it is usually fine and often encouraged i.docx
Important notes· NOTE it is usually fine and often encouraged i.docx
 
Unit -1 CAP.pptx
Unit -1 CAP.pptxUnit -1 CAP.pptx
Unit -1 CAP.pptx
 
Typescript language extension of java script
Typescript language extension of java scriptTypescript language extension of java script
Typescript language extension of java script
 
Opps concept
Opps conceptOpps concept
Opps concept
 
Functions in c language
Functions in c language Functions in c language
Functions in c language
 
Functions in c language
Functions in c languageFunctions in c language
Functions in c language
 
Python Programming Basics for begginners
Python Programming Basics for begginnersPython Programming Basics for begginners
Python Programming Basics for begginners
 
2CPP18 - Modifiers
2CPP18 - Modifiers2CPP18 - Modifiers
2CPP18 - Modifiers
 
typescript.pptx
typescript.pptxtypescript.pptx
typescript.pptx
 
Functions in C++
Functions in C++Functions in C++
Functions in C++
 
12 computer science_notes_ch01_overview_of_cpp
12 computer science_notes_ch01_overview_of_cpp12 computer science_notes_ch01_overview_of_cpp
12 computer science_notes_ch01_overview_of_cpp
 
C++ Function
C++ FunctionC++ Function
C++ Function
 
Presentation 5th
Presentation 5thPresentation 5th
Presentation 5th
 
CPP homework help
CPP homework helpCPP homework help
CPP homework help
 
Notes(1).pptx
Notes(1).pptxNotes(1).pptx
Notes(1).pptx
 
Module 1 notes of data warehousing and data
Module 1 notes of data warehousing and dataModule 1 notes of data warehousing and data
Module 1 notes of data warehousing and data
 
Algorithm Class at KPHB (C, C++ Course Training Institute in KPHB, Kukatpally...
Algorithm Class at KPHB (C, C++ Course Training Institute in KPHB, Kukatpally...Algorithm Class at KPHB (C, C++ Course Training Institute in KPHB, Kukatpally...
Algorithm Class at KPHB (C, C++ Course Training Institute in KPHB, Kukatpally...
 
Algorithm Class at KPHB (C, C++ Course Training Institute in KPHB, Kukatpall...
Algorithm Class at KPHB  (C, C++ Course Training Institute in KPHB, Kukatpall...Algorithm Class at KPHB  (C, C++ Course Training Institute in KPHB, Kukatpall...
Algorithm Class at KPHB (C, C++ Course Training Institute in KPHB, Kukatpall...
 

Recently uploaded

PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024CristobalHeraud
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
shot list for my tv series two steps back
shot list for my tv series two steps backshot list for my tv series two steps back
shot list for my tv series two steps back17lcow074
 
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一F La
 
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...narwatsonia7
 
How to Be Famous in your Field just visit our Site
How to Be Famous in your Field just visit our SiteHow to Be Famous in your Field just visit our Site
How to Be Famous in your Field just visit our Sitegalleryaagency
 
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Servicejennyeacort
 
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一Fi sss
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdfSwaraliBorhade
 
Call Girls Meghani Nagar 7397865700 Independent Call Girls
Call Girls Meghani Nagar 7397865700  Independent Call GirlsCall Girls Meghani Nagar 7397865700  Independent Call Girls
Call Girls Meghani Nagar 7397865700 Independent Call Girlsssuser7cb4ff
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Roomdivyansh0kumar0
 
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一Fi L
 
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一lvtagr7
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一Fi L
 
PORTAFOLIO 2024_ ANASTASIYA KUDINOVA
PORTAFOLIO   2024_  ANASTASIYA  KUDINOVAPORTAFOLIO   2024_  ANASTASIYA  KUDINOVA
PORTAFOLIO 2024_ ANASTASIYA KUDINOVAAnastasiya Kudinova
 
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130Suhani Kapoor
 

Recently uploaded (20)

PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightCheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
 
shot list for my tv series two steps back
shot list for my tv series two steps backshot list for my tv series two steps back
shot list for my tv series two steps back
 
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
 
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
Housewife Call Girls NRI Layout - Call 7001305949 Rs-3500 with A/C Room Cash ...
 
How to Be Famous in your Field just visit our Site
How to Be Famous in your Field just visit our SiteHow to Be Famous in your Field just visit our Site
How to Be Famous in your Field just visit our Site
 
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
 
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
 
Call Girls in Pratap Nagar, 9953056974 Escort Service
Call Girls in Pratap Nagar,  9953056974 Escort ServiceCall Girls in Pratap Nagar,  9953056974 Escort Service
Call Girls in Pratap Nagar, 9953056974 Escort Service
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf
 
Call Girls Meghani Nagar 7397865700 Independent Call Girls
Call Girls Meghani Nagar 7397865700  Independent Call GirlsCall Girls Meghani Nagar 7397865700  Independent Call Girls
Call Girls Meghani Nagar 7397865700 Independent Call Girls
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
 
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
办理学位证(TheAuckland证书)新西兰奥克兰大学毕业证成绩单原版一比一
 
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
 
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
 
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk GurgaonCheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
 
PORTAFOLIO 2024_ ANASTASIYA KUDINOVA
PORTAFOLIO   2024_  ANASTASIYA  KUDINOVAPORTAFOLIO   2024_  ANASTASIYA  KUDINOVA
PORTAFOLIO 2024_ ANASTASIYA KUDINOVA
 
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
 

Analisa Expression pada after effect menggungakan bahasa script

  • 1. A N A L I S A A F T E R E F F E C T : EXPRESSION LANGUAGE PADA KINETIC FALLING TEXT S I T I I M A R O H N U R F I R D H A V. 4 1 0 3 1 5 1 0 0 6 N O U R M A D W I N D A VA L E N T I N E 4 1 0 3 1 5 1 0 2 3 D W I K I A K B A R 4 1 0 3 1 5 1 0 2 7
  • 2. EXPRESSION LANGUAGE REFERENCE Menggunakan elemen ekspresi pada adobe after effect dengan unsur standar javascript untuk membuat sebuah ekspresi. Pengguna dapat menggunakan Expression Language menu saat kapanpun untuk memasukkan metode dan atribut dalam ekspression, dan juga dapat memilih pick whip untuk memasukkan properties pada animasi. Jika sebuah deskripsi argumen berisi tanda sama dengan (=) dan nilai (seperti t=time atau width=.2) lalu argumen termasuk standart value jika tidak dispesifikasikan sesuai dengan nilai yang berbeda.
  • 3. Pada animasi Kinettic Falling text, menggunakan kode script berbasis java dengan berikut ini :
  • 4. GLOBAL OBJECTS, ATTRIBUTES, AND METHODS (EXPRESSION REFERENCE) • comp(name)Return type: Comp. Argument type: name is a String. Retrieves another composition by name. • footage(name) Return type: Footage. Argument type: name is a String. Retrieves a footage item by name. • thisComp Return type: Comp. Represents the composition containing the expression. • thisLayer Return type: Layer, Light, or Camera. Represents the layer containing the expression. Because thisLayer is the default object, its use is optional. • thisProperty Return type: Property. Represents the property containing the expression. For example, if you write an expression on the Rotation property, you can start an expression with thisProperty to refer to the Rotation property. time • Return type: Number. Represents the composition time, in seconds, at which the expression is being evaluated. • colorDepth Return type: Number. Returns the project color depth value. For example, colorDepth returns 16 when the project color depth is 16 bits per channel. • posterizeTime(framesPerSecond)Return type: Number. Argument type: framesPerSecond is a Number. • The framesPerSecond value becomes the frame rate from which the rest of the expression operates. This expression allows you to set the frame rate for a property to be lower than the frame rate of the composition. For example, the following expression updates the property value with a random value once per second:
  • 5. TIME CONVERSION METHODS (EXPRESSION REFERENCE) • timeToFrames(t = time + thisComp.displayStartTime, fps = 1.0 / thisComp.frameDuration, isDuration = false) • Return type: Number. • Argument type: t and fps are Numbers; isDuration is a Boolean. • Converts the value of t, which defaults to the current composition time, to an integer number of frames. The number of frames per second is specified in the fps argument, which defaults to the frame rate of the current composition (1.0 /
  • 6. VECTOR MATH METHODS (EXPRESSION REFERENCE) • Vector Math functions are global methods that perform operations on arrays, treating them as mathematical vectors. Unlike built-in JavaScript methods, such as Math.sin, these methods are not used with the Math prefix. Unless otherwise specified, Vector Math methods are lenient about dimensions and return a value that is the dimension of the largest input Array object, filling in missing elements with zeros. For example, the expression add([10, 20], [1, 2, 3]) returns [11, 22, 3].
  • 7. • Source : https://helpx.adobe.com/after-effects/using/expression-language- reference.html