Author Topic: How To Save Process Icons  (Read 3542 times)

Offline GeneralT001

  • Member
  • *
  • Posts: 71
How To Save Process Icons
« on: 2017 February 14 21:08:36 »
Hi,

Is it possible to have PI open up with your favorite Processes already on the workspace? I keep saving them under the "Save Process Icons", but only one is ever saved. How do I get to have a bunch of them?

Offline msmythers

  • PTeam Member
  • PixInsight Jedi
  • *****
  • Posts: 1178
    • astrobin
Re: How To Save Process Icons
« Reply #1 on: 2017 February 14 21:27:06 »

Offline GeneralT001

  • Member
  • *
  • Posts: 71
Re: How To Save Process Icons
« Reply #2 on: 2017 February 14 22:20:08 »
Hi Thanks,

I almost there but I can't seem to get the file path to work. I'm using: .open C:/Users/Tony Benjamin/Desktop/Astronomy/AstroPics/MyProcessIcons.xpsm



Is this not a good path to use?

Offline pfile

  • PTeam Member
  • PixInsight Jedi Grand Master
  • ********
  • Posts: 4729
Re: How To Save Process Icons
« Reply #3 on: 2017 February 14 22:50:57 »
the problem is the space, you might try either:

.open "C:/Users...xpsm"

or

.open C:/Users/Tony\ Benjamin/Desktop ...

but your path sounds like it's a mac, not a PC? if so then drop the C: and just start with /Users ...

rob

Offline Juan Conejero

  • PTeam Member
  • PixInsight Jedi Grand Master
  • ********
  • Posts: 7111
    • http://pixinsight.com/
Re: How To Save Process Icons
« Reply #4 on: 2017 February 15 00:24:35 »
Yes, as Rob says, the problem is the space within the file path. Enclosing it in double quotes will work.

Quote
but your path sounds like it's a mac, not a PC?

In PixInsight, UNIX directory separators ('/') are always used on all supported platforms, including Windows, so C:/Users/... is a valid path specification on Windows.
Juan Conejero
PixInsight Development Team
http://pixinsight.com/

Offline pfile

  • PTeam Member
  • PixInsight Jedi Grand Master
  • ********
  • Posts: 4729
Re: How To Save Process Icons
« Reply #5 on: 2017 February 15 08:40:06 »
what i meant was that /Users/<someone>/Desktop sounded like a default home directory desktop folder under OSX. i thought windows had a different paradigm but it looks like w7,8,10 use /Users/<user>/ just like OSX.

rob

Offline GeneralT001

  • Member
  • *
  • Posts: 71
Re: How To Save Process Icons
« Reply #6 on: 2017 February 15 08:47:52 »
Hi,

Thanks all. Using the "" has done the trick - have to brush up on my Unix   :P

I am using a PC with Windows 10.


Cheers