RSS/Atom feed Twitter
Site is read-only, email is disabled

script-fu int to string

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

2 of 2 messages available
Toggle history

Please log in to manage your subscriptions.

script-fu int to string Nolan Clayton 16 Jun 10:58
  script-fu int to string Akkana Peck 16 Jun 20:09
Nolan Clayton
2005-06-16 10:58:45 UTC (almost 19 years ago)

script-fu int to string

Debugging a script? Sorry to bother but what is the "int to string" function in script-fu? Or is there a way to print variable values out. All I know is (gimp-message string)

Thanks

Akkana Peck
2005-06-16 20:09:50 UTC (almost 19 years ago)

script-fu int to string

Nolan Clayton writes:

Debugging a script? Sorry to bother but what is the "int to string" function in script-fu? Or is there a way to print variable values out. All I know is (gimp-message string)

(gimp-message (number->string n 10))

seems to work (the base 10 might be optional).

...Akkana