0
0
Figmabi_tool~10 mins

Why real-time collaboration improves workflow in Figma - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to enable real-time collaboration in Figma.

Figma
figma.[1] = true
Drag options to blanks, or click blank then click option'
AcollaborationEnabled
BsyncMode
CautoSave
DofflineMode
Attempts:
3 left
💡 Hint
Common Mistakes
Using properties unrelated to collaboration like autoSave or offlineMode.
2fill in blank
medium

Complete the code to broadcast changes instantly to all collaborators.

Figma
figma.on('change', () => { figma.[1](); })
Drag options to blanks, or click blank then click option'
ArefreshView
BsaveChanges
CsyncOffline
DbroadcastUpdate
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing functions that only save locally or refresh views without sharing updates.
3fill in blank
hard

Fix the error in the code to correctly merge simultaneous edits.

Figma
figma.mergeConflicts = [1]
Drag options to blanks, or click blank then click option'
Afalse
Btrue
Cnull
Dundefined
Attempts:
3 left
💡 Hint
Common Mistakes
Setting the property to false or null disables conflict merging.
4fill in blank
hard

Fill both blanks to set user presence and cursor tracking.

Figma
figma.[1] = true
figma.[2] = true
Drag options to blanks, or click blank then click option'
AshowUserPresence
BenableOfflineMode
CtrackCursors
DautoSave
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing offline mode or autoSave with collaboration features.
5fill in blank
hard

Fill all three blanks to configure real-time collaboration notifications.

Figma
figma.notifications.[1] = 'on'
figma.notifications.[2] = 5
figma.notifications.[3] = true
Drag options to blanks, or click blank then click option'
Astatus
Bfrequency
Cenabled
Dmode
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up property names or using unrelated terms like status.