"puff of virtual smoke"

Joined
Apr 9, 2008
Messages
3
Reaction score
0
Points
1
Hello all !

I need a help.

Before my girlfriend made a mess,

A application i’d like to remove, i drag it out of the Dock.

Release the mouse button, and the item will vanish in a puff of virtual smoke.

Now it´s impossible release the mouse button, and the item will vanish in a puff of virtual smoke.

Only click with left button and close the apllication.

trying to drag it out of the Dock, the application return to the dock.

How can i turn on the effect "puff of virtual smoke" again?

Thank´s
 

vansmith

Senior Member
Joined
Oct 19, 2008
Messages
19,924
Reaction score
559
Points
113
Location
Queensland
Your Mac's Specs
Mini (2014, 2018, 2020), MBA (2020), iPad Pro (2018), iPhone 13 Pro Max, Watch (S6)
If I understand you correctly, you are observing an icon returning to the dock when you try to remove it from the dock. If this is the case, the most obvious and common cause is that the application is still in fact running. Is there a blue dot under the application you are trying to remove?
 
Joined
Mar 17, 2008
Messages
6,879
Reaction score
191
Points
63
Location
Tucson, AZ
Your Mac's Specs
Way... way too many specs to list.
also dragging it off the dock does not remove the application, only it's representation on the dock. If it's running, btw, it will do exactly what you're talking about.
 
OP
J
Joined
Apr 9, 2008
Messages
3
Reaction score
0
Points
1
Thank´s for your answer,

I start the computer and have a lot of icon in the dock.

I want to to reduce the number of applications from the Dock, so i drag it out of the Dock.

Release the mouse button, and wait to the item will vanish in a puff of virtual smoke.

It´s not happen.

The effect "puff of virtual smoke" is not working anymore.

Thank´s
 
Joined
Mar 17, 2008
Messages
6,879
Reaction score
191
Points
63
Location
Tucson, AZ
Your Mac's Specs
Way... way too many specs to list.
that's because your running the application. Quit it. It should disappear off the dock. Then go remove them from your login items.
 
Joined
Aug 25, 2004
Messages
760
Reaction score
22
Points
18
Location
New Zealand
Your Mac's Specs
13" MBA. 15" MBP. iPhone 4. 3G Pad 2.
Right click the Dock Icon alias / shortcut and quit / close the application first.

Right click = Two fingers on the trackpad click or two finger tap depending on how you have the option set up in System preferences. Control click also = right click.
 
Joined
Aug 23, 2009
Messages
169
Reaction score
6
Points
18
Your Mac's Specs
Macbook Pro, 4GB RAM, 250GB HD
open terminal,

type in:
Code:
kill Dock

you need the capital letter on Dock
then as it reloads try again!!
 
Joined
Mar 17, 2008
Messages
6,879
Reaction score
191
Points
63
Location
Tucson, AZ
Your Mac's Specs
Way... way too many specs to list.
I believe you'd need
killall Dock


but if the apps running, that'll put it in the exact same spot
 
OP
J
Joined
Apr 9, 2008
Messages
3
Reaction score
0
Points
1
Thank´s, solveld!

Zigdog, thank !

i follow your instruction and everything is fine now.

Thank´s for everybody that try to help me.
 

vansmith

Senior Member
Joined
Oct 19, 2008
Messages
19,924
Reaction score
559
Points
113
Location
Queensland
Your Mac's Specs
Mini (2014, 2018, 2020), MBA (2020), iPad Pro (2018), iPhone 13 Pro Max, Watch (S6)
I believe you'd need
killall Dock


but if the apps running, that'll put it in the exact same spot
You could use kill if you wanted but you'd have to get the PID first using something like "ps ux | grep Dock" or looking in the PID column for Dock in Activity Monitor. That's unnecessary for this though and just adds another step.

To others (I know you don't need this Dysfunction), see here if you're interested in ps. The command they use includes using awk which adds complexity for people new to *nix.
 
Joined
Mar 17, 2008
Messages
6,879
Reaction score
191
Points
63
Location
Tucson, AZ
Your Mac's Specs
Way... way too many specs to list.
Yea, but it's so much more elegant than something like...

for i in $(ps -ef | grep Dock | awk 'NR==1{print $2}'); do kill $i; done


:D
 

vansmith

Senior Member
Joined
Oct 19, 2008
Messages
19,924
Reaction score
559
Points
113
Location
Queensland
Your Mac's Specs
Mini (2014, 2018, 2020), MBA (2020), iPad Pro (2018), iPhone 13 Pro Max, Watch (S6)
You win. You've out "*nix'd" me. :)
 
Joined
Mar 17, 2008
Messages
6,879
Reaction score
191
Points
63
Location
Tucson, AZ
Your Mac's Specs
Way... way too many specs to list.
yea, but all I do is read/write, or otherwise use scripts all day
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top