0
0
Figmabi_tool~20 mins

Navigate to frame in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Frame Navigation Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Frame Navigation in Figma
You have a Figma file with multiple frames named 'Dashboard', 'Report', and 'Summary'. Which method correctly navigates to the 'Report' frame using Figma's plugin API?
Afigma.currentPage.selection = [figma.currentPage.findOne(node => node.name === 'Report' && node.type === 'FRAME')]
Bfigma.viewport.scrollAndZoomIntoView([figma.currentPage.findOne(node => node.name === 'Report' && node.type === 'FRAME')])
Cfigma.navigateToFrame('Report')
Dfigma.currentPage.setCurrentFrame('Report')
Attempts:
2 left
💡 Hint
Think about how to move the viewport to a specific frame rather than just selecting it.
dax_lod_result
intermediate
2:00remaining
Calculate Total Sales for Selected Frame
In a Power BI report, you have a slicer filtering data by 'FrameName'. You want to create a measure that calculates total sales only for the currently selected frame. Which DAX measure achieves this?
ATotalSalesSelected = SUM(Sales[Amount])
BTotalSalesSelected = CALCULATE(SUM(Sales[Amount]), Sales[FrameName] = SELECTEDVALUE(Sales[FrameName]))
CTotalSalesSelected = CALCULATE(SUM(Sales[Amount]), FILTER(ALL(Sales), Sales[FrameName] = SELECTEDVALUE(Sales[FrameName])))
DTotalSalesSelected = SUMX(FILTER(Sales, Sales[FrameName] = SELECTEDVALUE(Sales[FrameName])), Sales[Amount])
Attempts:
2 left
💡 Hint
Use CALCULATE with FILTER and ALL to override existing filters properly.
visualization
advanced
2:00remaining
Best Visualization to Show Frame Navigation Flow
You want to create a dashboard visualization that shows how users navigate between frames in a BI report. Which visualization type best represents this flow clearly?
AA pie chart showing percentage of visits per frame
BA clustered bar chart showing frame visit counts
CA line chart showing visits over time
DA Sankey diagram showing the flow from one frame to another
Attempts:
2 left
💡 Hint
Think about showing directional flow between categories.
🔧 Formula Fix
advanced
2:00remaining
Debugging Frame Navigation Code in Figma Plugin
This Figma plugin code is intended to navigate to a frame named 'Summary', but it does not move the viewport. What is the error?
Figma
const frame = figma.currentPage.findOne(node => node.name === 'Summary' && node.type === 'FRAME');
figma.currentPage.selection = [frame];
AThe code only selects the frame but does not move the viewport to it
BThe findOne method is used incorrectly and returns null
CThe frame variable is not defined before use
DThe node.type should be 'FRAME_NODE' instead of 'FRAME'
Attempts:
2 left
💡 Hint
Selecting a frame does not automatically change the viewport position.
🎯 Scenario
expert
3:00remaining
Designing a BI Report with Frame-Based Navigation
You are designing a BI report with multiple frames representing different business areas. You want users to navigate seamlessly between frames and see aggregated KPIs update accordingly. Which approach best supports this scenario?
AUse bookmarks to create navigation buttons between frames and sync slicers for KPI updates
BCreate separate reports for each frame and link them externally
CUse page tabs only without syncing filters or bookmarks
DEmbed all frames in one page without navigation controls
Attempts:
2 left
💡 Hint
Think about user-friendly navigation and synchronized filtering.