MathGroup Archive 2007

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Manipulate[] CreateDocument[] BUG ???

  • To: mathgroup at smc.vnet.net
  • Subject: [mg81378] Re: Manipulate[] CreateDocument[] BUG ???
  • From: Szabolcs Horvát <szhorvat at gmail.com>
  • Date: Fri, 21 Sep 2007 03:07:11 -0400 (EDT)
  • References: <fct8vr$pu5$1@smc.vnet.net>

roby.nowak at gmail.com wrote:
> 
> (* working example *)
> A := Module[{k},
>    	k = 1;
>    	Manipulate[
>      		k*s,
>      		{{s, 1}, 1, 10}
>      	]
>    ];
> 

Manipulate has HoldAll (not HoldAllComplete), but it still behaves as if 
it had HoldAllComplete.  Why?

In[1]:=
a=5;
Manipulate[Evaluate[a]*i,{i,1,10,1}]//InputForm

Out[2]//InputForm=
Manipulate[Evaluate[a]*i, {i, 1, 10, 1}]

-- 
Szabolcs


  • Prev by Date: Re: DSolving(?) for a given tangent
  • Next by Date: Can i render a Disk[] in Graphics3D?
  • Previous by thread: Manipulate[] CreateDocument[] BUG ???
  • Next by thread: Re: Manipulate[] CreateDocument[] BUG ???