Is it possible to create a frame, using the framed package, with rounded corners? I know for a fact that there are other packages such as the mdframed package but what I am looking for is an application only using the framed package.
EDIT
After looking at the answer below, I created the following environment:
\documentclass{article}
\usepackage{fancybox,framed}
\usepackage{lipsum}
\newenvironment{test}{%
\def\FrameCommand{\fboxsep=\FrameSep\ovalbox}
\MakeFramed{\advance\hsize-\width\FrameRestore}}
{\endMakeFramed}
\begin{document}
\begin{test}
\lipsum[1-2]
\end{test}
\end{document}
The only problem is that it shouts out a warning:
\oval, \circle, or \line size unavailable
Why?
PS. I did not want to post another question so just edited this one.
mdframed? – cmhughes Dec 29 '12 at 00:57mdframedpackage. Its a challenge I have not overcomed. – azetina Dec 29 '12 at 17:45