Going back to your first questions:
1.) To be able to navigate to the previous folder, change ShowDotDot=0 to ShowDotDot=1 in [mPath] section. This will add .. as the first item in your list; double click it to move to the preceding folder.
-=-
You asked how to display the entire list. The clipping is happening because your 'Container' meter [FileArea] is not tall enough to display 8 lines of text.
The height will depend on your FontSize and any vertical padding in your style. In this skin. The FontSize is 8, so to avoid clipping of the eighth item, set the height of your shape container to twice the font size times the number of items (16 * 8 = 128). You can adjust it higher or lower if desired. Since you increased the height of your container, you will need to change the Y position of your [PathTitle] section so it is below the last item; set that Y value to the height of your container; set it to Y=128
I would also change the Text value to the current measured path; Text=Path: [mPath].-=-
I do not understand what you mean about saving an icon (because you haven't defined any icons) or saving the path; [mPath]'s value will always be the current path, and each index will be the path to the listed item.
1.) To be able to navigate to the previous folder, change ShowDotDot=0 to ShowDotDot=1 in [mPath] section.
Code:
[mPath]Measure=PluginPlugin=FileViewShowDotDot=1ShowHidden=0Showsystem=0Path=#Path#Count=8
-=-
You asked how to display the entire list. The clipping is happening because your 'Container' meter [FileArea] is not tall enough to display 8 lines of text.
The height will depend on your FontSize and any vertical padding in your style. In this skin. The FontSize is 8, so to avoid clipping of the eighth item, set the height of your shape container to twice the font size times the number of items (16 * 8 = 128). You can adjust it higher or lower if desired.
Code:
[FileArea]Meter=ShapeShape=Rectangle 0,0,250,128,1 | Fill Color 0,0,0,255AntiAlias=1DynamicVariables=1MouseScrollUpAction=[!CommandMeasure mPath "IndexUp"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw];--MouseScrollDownAction=[!CommandMeasure mPath "IndexDown"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw]
I would also change the Text value to the current measured path; Text=Path: [mPath].
Code:
[PathTitle]Meter=StringX=0rY=128Padding=10,5,10,5FontColor=220,220,220SolidColor=50,50,50,255FontSize=8FontFace=Segoe UIStringStyle=BOLDStringAlign=LEFTAntiAlias=1Text=Path: [mPath]LeftMouseUpAction=[!SetVariable ShowContent "(1-#ShowContent#)"][!UpdateMeasure "MeasureContent"][!UpdateMeter "#CURRENTSECTION#"][!Redraw]DynamicVariables=1
I do not understand what you mean about saving an icon (because you haven't defined any icons) or saving the path; [mPath]'s value will always be the current path, and each index will be the path to the listed item.
Statistics: Posted by eclectic-tech — Today, 2:36 am