How can I get my gallery to load my colour that its saved.
Right now it saves the colour of the sliders in a gallery but I want it to be able to load it when I click the arrow. Once the arrow is clicked it needs to change the sliders to the position they were in when it was saved.
Add Item Code:
Collect( MyItems, { Item1: Slider1.Value, Item2: Slider1_2.Value, Item3: Slider1_1.Value } )
Save Data Code:
SaveData( MyItems, "LocalSavedItems" )
Load Data Code:
LoadData( MyItems, "LocalSavedItems" )
Hi @Powerappssucks ,
Please try and add below formula OnSelect of the arrow:
ClearCollect(colTemp,ThisItem)
Default of Slider1:
First(colTemp).Item1
Default of Slider2:
First(colTemp).Item2
Default of Slider3:
First(colTemp).Item3
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.