Wolfram User Interfaces | Things to Try

Make edits and run any piece of code by clicking inside the code and pressing
+
.
Create interactive graphical user interfaces. Automate interface construction or build sophisticated GUIs from the ground up. Easily deploy and share apps, notebooks, palettes and other interfaces.
Create a simple interface with a slider:
Run
In[]:=
Manipulate[Plot[Sin[x]+Sin[nx],{x,0,2Pi},PlotRange->{-2,2}],{n,1,10}]
Create an interface with multiple controls:
Run
In[]:=
Manipulate[Plot[Sin[x]+Sin[nx],{x,0,2Pi},PlotRange->{-2,2},PlotStyle->style,Filling->fill],{n,1,10},{style,{Automatic,Red,Green,Blue}},{fill,{None,Axis,Bottom}}]
Place the controls on the left:
Run
In[]:=
Manipulate
,ControlPlacement->Left