Sorry, i changed the location in the code.
#---------------------------------------------------------------------
register(
"Word_Art",
N_("Create a poster art from text strings"),
"Create a random poster art from text strings - b&p_word_art_01_v1.0.py",
"Andrei Roslovtsev",
"www.bytes-and-pixels.com",
"2011",
N_("_Word Art"),
#"RGB*, GRAY*",
"",
[
(PF_SPINNER, "img_w", "Image Width:", 640, (1, 20000, 1)),
(PF_SPINNER, "img_h", "Image Height:", 480, (1, 20000, 1)),
(PF_OPTION,"fonts", "Font Range:", 0, ["All fonts","Limited fonts"]),
(PF_SPINNER, "l_limit", "Lower Limit:", 0,(1,2000,1)),
(PF_SPINNER, "u_limit", "Upper Limit:", 0,(1,2000,1)),
(PF_OPTION,"iterations", "Iterations:", 0, ["Font number","Custom"]),
(PF_SPINNER, "custom", "Custom:", 0,(0,2000,1)),
(PF_COLOR, "bg_col", "Background Color:", (250, 250, 250) ),
(PF_COLOR, "base_tc", "Base Text Color:", (140, 155, 175) ),
(PF_SLIDER, "tc_var", "Text color variation:", 50, (0, 255, 1)),
(PF_SPINNER, "base_ts", "Base Text Size (px):", 24, (1, 2000, 1)),
(PF_SLIDER, "ts_var", "Text size variation (px):", 100, (0, 1000, 1)),
(PF_SLIDER, "tr_var", "Text rotation variation (degrees):", 10, (0, 180, 1)),
(PF_SPINNER, "base_to", "Base Text Opacity (%):", 80, (1, 100, 1)),
(PF_SLIDER, "to_var", "Text opacity variation (%):", 20, (0, 100, 1)),
(PF_OPTION,"txt_mode", "Text Options:", 1, ["Font names","User input"]),
(PF_TEXT, "in_text", "Text:", "Python\nGimp\nPyGTK\nCool Plugins"),
(PF_SPINNER, "seed", "Random Seed:", 1000, (1, 2000, 1)),
(PF_TOGGLE, "flatten_flag", "Flatten Image", 0)
],
[],
make_poster,
#menu="<Image>/File/Create/Buttons",
menu="<Image>/Filters/Web Page Themes/www.bytes-and-pixels.com",
domain=("gimp20-python", gimp.locale_directory)
)
main()
Hope that helps.