-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.json
7436 lines (7436 loc) · 203 KB
/
test.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"video_id": "4237",
"question": "how do i create a new action?",
"answer_start": 11,
"answer_end": 18
},
{
"video_id": "15567",
"question": "how do i change the text color of an image?",
"answer_start": 32,
"answer_end": 36
},
{
"video_id": "19172",
"question": "what do you have to do to get a new layer?",
"answer_start": 33,
"answer_end": 38
},
{
"video_id": "4051",
"question": "how to align objects to layers.",
"answer_start": 65,
"answer_end": 73
},
{
"video_id": "15261",
"question": "3",
"answer_start": 25,
"answer_end": 26
},
{
"video_id": "4184",
"question": "why isn't quick select actually selecting the selected bit?",
"answer_start": 2,
"answer_end": 4
},
{
"video_id": "19167",
"question": "how can i keep cropped pixels?",
"answer_start": 11,
"answer_end": 18
},
{
"video_id": "15261",
"question": "how do i save my project?",
"answer_start": 59,
"answer_end": 61
},
{
"video_id": "4255",
"question": "tell me, how do i change the color of a vector image?",
"answer_start": 98,
"answer_end": 117
},
{
"video_id": "4103",
"question": "how do i put the background layer above all the other layers?",
"answer_start": 45,
"answer_end": 48
},
{
"video_id": "19215",
"question": "how do i create a layer mask?",
"answer_start": 22,
"answer_end": 33
},
{
"video_id": "19213",
"question": "does my layer have to be selected to apply the blend mode?",
"answer_start": 12,
"answer_end": 19
},
{
"video_id": "4184",
"question": "what do you do to focus on an area?",
"answer_start": 5,
"answer_end": 7
},
{
"video_id": "19172",
"question": "does the eye icon do anything? ",
"answer_start": 10,
"answer_end": 14
},
{
"video_id": "15687",
"question": "how do i apply this transformation?",
"answer_start": 30,
"answer_end": 34
},
{
"video_id": "14660",
"question": "how to turn on and turn off layers in photoshop?",
"answer_start": 34,
"answer_end": 37
},
{
"video_id": "4263",
"question": "how can i make a selection in photoshop?",
"answer_start": 29,
"answer_end": 32
},
{
"video_id": "4218",
"question": "what are the benefits of adjustment layers?",
"answer_start": 33,
"answer_end": 35
},
{
"video_id": "4177",
"question": "what is the function of the crop tool do?\r\r",
"answer_start": 0,
"answer_end": 5
},
{
"video_id": "19167",
"question": "why should you crop limit image?",
"answer_start": 25,
"answer_end": 30
},
{
"video_id": "4263",
"question": "how can a selection be moved?",
"answer_start": 19,
"answer_end": 25
},
{
"video_id": "4263",
"question": "what is the lasso tool best used for?",
"answer_start": 29,
"answer_end": 32
},
{
"video_id": "19172",
"question": "how can i turn off every layer except for the tailor layer?",
"answer_start": 16,
"answer_end": 20
},
{
"video_id": "15569",
"question": "is there a way to customize the text even more then in the options bar? ",
"answer_start": 6,
"answer_end": 7
},
{
"video_id": "15687",
"question": "how can i modify part of a photo to make it appear natural?",
"answer_start": 37,
"answer_end": 43
},
{
"video_id": "4103",
"question": "how can i change the appearance of a rectangle layer?",
"answer_start": 5,
"answer_end": 10
},
{
"video_id": "19209",
"question": "what will you see when you click on the shape picker?",
"answer_start": 3,
"answer_end": 9
},
{
"video_id": "14660",
"question": "1. explain the brightness/contrast window.",
"answer_start": 39,
"answer_end": 40
},
{
"video_id": "3082",
"question": "are there any tips /tricks i should be aware of?",
"answer_start": 21,
"answer_end": 31
},
{
"video_id": "19161",
"question": "how do i access the shortcut for zooming out?",
"answer_start": 11,
"answer_end": 16
},
{
"video_id": "19212",
"question": "how to delete a filter applied to an image?\r\r",
"answer_start": 31,
"answer_end": 33
},
{
"video_id": "4184",
"question": "how do i access more detailed options for controlling brush effects?",
"answer_start": 12,
"answer_end": 15
},
{
"video_id": "19160",
"question": "what is this",
"answer_start": 19,
"answer_end": 28
},
{
"video_id": "3082",
"question": "how can i make an image foreshortened?",
"answer_start": 99,
"answer_end": 105
},
{
"video_id": "4255",
"question": "how can i change the color of a footer?",
"answer_start": 71,
"answer_end": 81
},
{
"video_id": "4255",
"question": "where do i go to use smart objects?",
"answer_start": 131,
"answer_end": 133
},
{
"video_id": "4713",
"question": "which is the best file extension to use when i export?",
"answer_start": 33,
"answer_end": 35
},
{
"video_id": "19209",
"question": "what format can i save my project in?",
"answer_start": 3,
"answer_end": 9
},
{
"video_id": "4713",
"question": "how can i show artboard names? ",
"answer_start": 23,
"answer_end": 24
},
{
"video_id": "19165",
"question": "where do i find the image dimensions?",
"answer_start": 2,
"answer_end": 4
},
{
"video_id": "19162",
"question": "how do i select a tool?",
"answer_start": 15,
"answer_end": 22
},
{
"video_id": "4089",
"question": "how do i remove a blurred part of an image?",
"answer_start": 9,
"answer_end": 23
},
{
"video_id": "4103",
"question": "what do the filters on the layers tab do?",
"answer_start": 32,
"answer_end": 36
},
{
"video_id": "19195",
"question": "can photoshop set the brightness and contrast for me?",
"answer_start": 6,
"answer_end": 13
},
{
"video_id": "19166",
"question": "the girl what color on the dress?",
"answer_start": 15,
"answer_end": 19
},
{
"video_id": "14662",
"question": "how do i use smart filters?",
"answer_start": 3,
"answer_end": 5
},
{
"video_id": "19159",
"question": "4",
"answer_start": 54,
"answer_end": 55
},
{
"video_id": "19213",
"question": "how do i use the layer blend mode?",
"answer_start": 12,
"answer_end": 19
},
{
"video_id": "14662",
"question": "how do i add an artistic tint to an image?",
"answer_start": 27,
"answer_end": 31
},
{
"video_id": "4218",
"question": "how to apply the black and white adjustment layer?",
"answer_start": 9,
"answer_end": 15
},
{
"video_id": "19192",
"question": "to select an adjustment layer how?",
"answer_start": 2,
"answer_end": 10
},
{
"video_id": "4051",
"question": "how do layers differ in photoshop and illustrator?",
"answer_start": 3,
"answer_end": 12
},
{
"video_id": "15261",
"question": "how do i export each artboard as an individual file? ",
"answer_start": 62,
"answer_end": 67
},
{
"video_id": "15567",
"question": "how do i change the font size?",
"answer_start": 3,
"answer_end": 13
},
{
"video_id": "19207",
"question": "can you create new colors for fonts?",
"answer_start": 14,
"answer_end": 23
},
{
"video_id": "4713",
"question": "how can i appear artboard names?",
"answer_start": 23,
"answer_end": 24
},
{
"video_id": "4237",
"question": "what is the process to apply an action on a different image?",
"answer_start": 54,
"answer_end": 61
},
{
"video_id": "19196",
"question": "how to remove a part from a selection?\r\r",
"answer_start": 13,
"answer_end": 19
},
{
"video_id": "19215",
"question": "is it possible to transform a layer?",
"answer_start": 46,
"answer_end": 49
},
{
"video_id": "4255",
"question": "how do i know if my image is embedded? ",
"answer_start": 137,
"answer_end": 145
},
{
"video_id": "4184",
"question": "how do i switch from one brush to another?",
"answer_start": 12,
"answer_end": 15
},
{
"video_id": "19208",
"question": "how can i resize a shape layer?",
"answer_start": 20,
"answer_end": 24
},
{
"video_id": "19197",
"question": "what do i need to do to remove a certain section from my selection?",
"answer_start": 3,
"answer_end": 12
},
{
"video_id": "4263",
"question": "is there a method to select precise lines and angles?",
"answer_start": 33,
"answer_end": 38
},
{
"video_id": "14645",
"question": "5",
"answer_start": 51,
"answer_end": 55
},
{
"video_id": "19215",
"question": "what is a layer mask?",
"answer_start": 22,
"answer_end": 33
},
{
"video_id": "19170",
"question": "how do i drag the layers?",
"answer_start": 5,
"answer_end": 11
},
{
"video_id": "19159",
"question": "how do i undo multiple steps?",
"answer_start": 20,
"answer_end": 24
},
{
"video_id": "19195",
"question": "how do i preview an image before and after changes are applied in photoshop cc?",
"answer_start": 37,
"answer_end": 42
},
{
"video_id": "19169",
"question": "how do i select a layer?",
"answer_start": 5,
"answer_end": 11
},
{
"video_id": "19211",
"question": "where are the options to resize and adjust images?",
"answer_start": 6,
"answer_end": 9
},
{
"video_id": "14646",
"question": "how do i select the direct selection tool?",
"answer_start": 17,
"answer_end": 20
},
{
"video_id": "19205",
"question": "how to adjust hardness of brush?",
"answer_start": 7,
"answer_end": 18
},
{
"video_id": "19162",
"question": "where is the tools panel?",
"answer_start": 15,
"answer_end": 22
},
{
"video_id": "19194",
"question": "how can i edit the lightness?",
"answer_start": 17,
"answer_end": 19
},
{
"video_id": "4089",
"question": "how can the area be recalculated to adjust the structure?",
"answer_start": 24,
"answer_end": 30
},
{
"video_id": "14660",
"question": "how do i adjust the saturation levels? ",
"answer_start": 12,
"answer_end": 15
},
{
"video_id": "19194",
"question": "how can i mute all of the colors in the image?",
"answer_start": 15,
"answer_end": 16
},
{
"video_id": "15687",
"question": "how do i create a smart object layer?",
"answer_start": 24,
"answer_end": 27
},
{
"video_id": "4218",
"question": "what do i do if i do not see the adjustments panel?",
"answer_start": 4,
"answer_end": 8
},
{
"video_id": "4713",
"question": "how do i add an artboard?",
"answer_start": 17,
"answer_end": 22
},
{
"video_id": "19196",
"question": "how do i keep the original if i add onto my pre-made selection?",
"answer_start": 29,
"answer_end": 38
},
{
"video_id": "14646",
"question": "how to change the color of the star shape?",
"answer_start": 14,
"answer_end": 15
},
{
"video_id": "15690",
"question": "where is the blend mode menu?",
"answer_start": 14,
"answer_end": 15
},
{
"video_id": "14661",
"question": "how do you hide a layer adjustment in a photo?",
"answer_start": 23,
"answer_end": 33
},
{
"video_id": "4255",
"question": "how to know if my smart object is linked?",
"answer_start": 32,
"answer_end": 40
},
{
"video_id": "19210",
"question": "can i change the font size of text?",
"answer_start": 3,
"answer_end": 9
},
{
"video_id": "4713",
"question": "which types of content can be nested in an art board?",
"answer_start": 29,
"answer_end": 30
},
{
"video_id": "4184",
"question": "is it possible to toggle between brushes?",
"answer_start": 12,
"answer_end": 15
},
{
"video_id": "19205",
"question": "how do i change the size of my brush?",
"answer_start": 21,
"answer_end": 30
},
{
"video_id": "19159",
"question": "how can i make my brushes larger?",
"answer_start": 38,
"answer_end": 42
},
{
"video_id": "16433",
"question": "what is the keyboard shortcut to get the brush tool?",
"answer_start": 10,
"answer_end": 30
},
{
"video_id": "4713",
"question": "how can i make artboard names invisible?",
"answer_start": 23,
"answer_end": 24
},
{
"video_id": "19169",
"question": "how can i change the image once it is done?",
"answer_start": 24,
"answer_end": 29
},
{
"video_id": "15567",
"question": "how do i change the colour of the text?",
"answer_start": 40,
"answer_end": 43
},
{
"video_id": "4089",
"question": "how to i hide edges of a selected object?",
"answer_start": 34,
"answer_end": 42
},
{
"video_id": "4184",
"question": "how does photoshop always automatically analyze an image?",
"answer_start": 5,
"answer_end": 7
},
{
"video_id": "14661",
"question": "what is the white thumbnail that appears next to the adjustment layers? ",
"answer_start": 6,
"answer_end": 15
},
{
"video_id": "19167",
"question": "how do i automatically straighten the cropped image?",
"answer_start": 36,
"answer_end": 43
},
{
"video_id": "3082",
"question": "what procedure from editing and perspective work do you need to change a perspective of a 2 plane image?",
"answer_start": 9,
"answer_end": 14
},
{
"video_id": "19195",
"question": "how do i make an image darker?",
"answer_start": 14,
"answer_end": 22
},
{
"video_id": "4157",
"question": "in photoshop cc how can i delete, group and ungroup layers?",
"answer_start": 39,
"answer_end": 43
},
{
"video_id": "4255",
"question": "what is the key should i press to easily maneuver through the editing color fields?\r\r",
"answer_start": 131,
"answer_end": 133
},
{
"video_id": "14645",
"question": "how do i sample a color?",
"answer_start": 20,
"answer_end": 30
},
{
"video_id": "19198",
"question": "i need to saturate the colors outside the original selection box so how do i saturate them?",
"answer_start": 35,
"answer_end": 41
},
{
"video_id": "4713",
"question": "how does i crop images?",
"answer_start": 6,
"answer_end": 7
},
{
"video_id": "14996",
"question": "how do i start this project? ",
"answer_start": 2,
"answer_end": 4
},
{
"video_id": "19197",
"question": "what does the brush tool allow you to do?",
"answer_start": 24,
"answer_end": 28
},
{
"video_id": "19166",
"question": "how do i save an image?",
"answer_start": 38,
"answer_end": 44
},
{
"video_id": "15567",
"question": "2) is the font good for the text?",
"answer_start": 22,
"answer_end": 25
},
{
"video_id": "19159",
"question": "4. what is redo in image options?",
"answer_start": 20,
"answer_end": 24
},
{
"video_id": "14643",
"question": "how do i export a logo i created?",
"answer_start": 30,
"answer_end": 33
},
{
"video_id": "4255",
"question": "how do i tell my file where i moved my link?",
"answer_start": 159,
"answer_end": 165
},
{
"video_id": "4218",
"question": "if i want to change the color of something, how can i do that?",
"answer_start": 33,
"answer_end": 35
},
{
"video_id": "19194",
"question": "where can i discover the hue/saturation box?",
"answer_start": 4,
"answer_end": 14
},
{
"video_id": "4218",
"question": "does the properties panel do anything?",
"answer_start": 9,
"answer_end": 15
},
{
"video_id": "3082",
"question": "what works does perspective do?",
"answer_start": 9,
"answer_end": 14
},
{
"video_id": "19198",
"question": "how do i invert my image?",
"answer_start": 35,
"answer_end": 41
},
{
"video_id": "19196",
"question": "please tell me, what is is that the quick selection tool does?",
"answer_start": 5,
"answer_end": 11
},
{
"video_id": "19164",
"question": "how do i change the canvas size?",
"answer_start": 3,
"answer_end": 25
},
{
"video_id": "4218",
"question": "which ways can adjustments be applied in photoshop?",
"answer_start": 0,
"answer_end": 3
},
{
"video_id": "14996",
"question": "how do i scale a circle to be smaller?",
"answer_start": 40,
"answer_end": 45
},
{
"video_id": "19209",
"question": "how do you close the shape picker?",
"answer_start": 12,
"answer_end": 17
},
{
"video_id": "4157",
"question": "how do i search a specific type of layer? ",
"answer_start": 44,
"answer_end": 56
},
{
"video_id": "14645",
"question": "where can you find multiply for a layer blending?",
"answer_start": 34,
"answer_end": 35
},
{
"video_id": "4218",
"question": "how do i remove color from an object?",
"answer_start": 25,
"answer_end": 31
},
{
"video_id": "16433",
"question": "how to import photos into photoshop layers?",
"answer_start": 3,
"answer_end": 4
},
{
"video_id": "19168",
"question": "how to make a background layer?",
"answer_start": 29,
"answer_end": 39
},
{
"video_id": "14647",
"question": "how can we access the brush ?",
"answer_start": 33,
"answer_end": 34
},
{
"video_id": "15261",
"question": "is it attract you ",
"answer_start": 50,
"answer_end": 52
},
{
"video_id": "14662",
"question": "3. can a tint color be customized?",
"answer_start": 27,
"answer_end": 31
},
{
"video_id": "14646",
"question": "how do you move a shape within the image?",
"answer_start": 21,
"answer_end": 23
},
{
"video_id": "4184",
"question": "on an image, how do i add a hue saturation to a layer?",
"answer_start": 17,
"answer_end": 18
},
{
"video_id": "19211",
"question": "how do i change the position of the image?",
"answer_start": 6,
"answer_end": 9
},
{
"video_id": "4184",
"question": "can someone toggle between brushes?\r\r",
"answer_start": 12,
"answer_end": 15
},
{
"video_id": "4237",
"question": "where is the actions panel?",
"answer_start": 3,
"answer_end": 10
},
{
"video_id": "15262",
"question": "what are adjustment layers?",
"answer_start": 29,
"answer_end": 39
},
{
"video_id": "19192",
"question": "what functionate the controls for the adjustment layerschange",
"answer_start": 16,
"answer_end": 20
},
{
"video_id": "15261",
"question": "how to sample color from an image to use?",
"answer_start": 46,
"answer_end": 53
},
{
"video_id": "16433",
"question": "how do i zoom in on my image?",
"answer_start": 17,
"answer_end": 21
},
{
"video_id": "19170",
"question": "what are u doing ",
"answer_start": 13,
"answer_end": 18
},
{
"video_id": "19171",
"question": "once i made a picture smaller how do i get it to stay that way? ",
"answer_start": 17,
"answer_end": 26
},
{
"video_id": "19172",
"question": "near the layers function there is this eye thing what does it do?",
"answer_start": 10,
"answer_end": 14
},
{
"video_id": "19160",
"question": "what options should i use when formatting the image? ",
"answer_start": 38,
"answer_end": 43
},
{
"video_id": "4157",
"question": "how does one search within layers?",
"answer_start": 44,
"answer_end": 56
},
{
"video_id": "4237",
"question": "how to add noise to my photo?",
"answer_start": 29,
"answer_end": 34
},
{
"video_id": "15724",
"question": "how can i add additional text of the same type to my image?",
"answer_start": 12,
"answer_end": 13
},
{
"video_id": "4218",
"question": "what does an alteration inside photoshop allow you to do?",
"answer_start": 0,
"answer_end": 3
},
{
"video_id": "4184",
"question": "what is the process photoshop uses for analyzing an image?",
"answer_start": 5,
"answer_end": 7
},
{
"video_id": "4177",
"question": "how can you reuse the cropped pixels?",
"answer_start": 12,
"answer_end": 16
},
{
"video_id": "14660",
"question": "what you see the video?",
"answer_start": 20,
"answer_end": 28
},
{
"video_id": "19194",
"question": "how can i adjust this picture's color saturation?",
"answer_start": 22,
"answer_end": 30
},
{
"video_id": "19196",
"question": "how can i modify the selection to take areas out?",
"answer_start": 13,
"answer_end": 19
},
{
"video_id": "4103",
"question": "how to edit the stacking order of layers?",
"answer_start": 38,
"answer_end": 44
},
{
"video_id": "4713",
"question": "how should i switch on artboard names?",
"answer_start": 23,
"answer_end": 24
},
{
"video_id": "19172",
"question": "how to consequently choose top layer?",
"answer_start": 39,
"answer_end": 44
},
{
"video_id": "4218",
"question": "how do i replace a background color with the foreground one?",
"answer_start": 33,
"answer_end": 35
},
{
"video_id": "19206",
"question": "how do you bring up the color panel?",
"answer_start": 31,
"answer_end": 37
},
{
"video_id": "4218",
"question": "what is the functionality of adjustments in photoshop?",
"answer_start": 0,
"answer_end": 3
},
{
"video_id": "3082",
"question": "how to straighten 3b objects?",
"answer_start": 70,
"answer_end": 77
},
{
"video_id": "19198",
"question": "how to make rectangular or square shaped selections in the image?",
"answer_start": 9,
"answer_end": 15
},
{
"video_id": "4237",
"question": "how do i apply the action to an alternate image?",
"answer_start": 54,
"answer_end": 61
},
{
"video_id": "19200",
"question": "how do i adjust brush settings?",
"answer_start": 5,
"answer_end": 8
},
{
"video_id": "14995",
"question": "how do i select/apply a filter? ",
"answer_start": 11,
"answer_end": 18
},
{
"video_id": "4255",
"question": "how to fix missing files?",
"answer_start": 159,
"answer_end": 165
},
{
"video_id": "4051",
"question": "what is a fast way to move an image that is located in a different layer?",
"answer_start": 36,
"answer_end": 44
},
{
"video_id": "19196",
"question": "what tools can i use for free-form selection?",