This is my first time posting my Ren'py issues, I generally lurk and try to figure it out on my own, but this one is a headscratcher.
I get this error message when trying to use the image location picker (Shift +D)
I was using the recommended build for Ren'py, and just updated it this week. I got this error and decided to take a leap of faith and update to the nightly build yesterday. Still getting this error. Not sure if it's related or if it's something I did.
Code: Select all
```
I'm sorry, but an uncaught exception occurred.
While running game code:
Exception: Invalid key specifier input_jump_word_left
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "renpy/common/_developer/developer.rpym", line 536, in script
python hide:
File "D:\Renpy\renpy-7.2.1-sdk/renpy/ast.py", line 928, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/python.py", line 2245, in py_exec_bytecode
exec(bytecode, globals, locals)
File "renpy/common/_developer/developer.rpym", line 536, in <module>
python hide:
File "renpy/common/_developer/developer.rpym", line 559, in _execute_python_hide
rv = renpy.call_screen("_image_location_picker", image_files=image_files)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/exports.py", line 3134, in call_screen
rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/ui.py", line 298, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/core.py", line 3315, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/core.py", line 4151, in interact_core
rv = root_widget.event(ev, x, y, 0)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/layout.py", line 1100, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/transition.py", line 48, in event
return self.new_widget.event(ev, x, y, st) # E1101
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/layout.py", line 1100, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/layout.py", line 1100, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/screen.py", line 727, in event
rv = self.child.event(ev, x, y, st)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/layout.py", line 1100, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/layout.py", line 1313, in event
rv = super(Window, self).event(ev, x, y, st)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/layout.py", line 273, in event
rv = d.event(ev, x - xo, y - yo, st)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/layout.py", line 273, in event
rv = d.event(ev, x - xo, y - yo, st)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/layout.py", line 1100, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/layout.py", line 1100, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/behavior.py", line 1385, in event
map_event(ev, "input_jump_word_left"),
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/behavior.py", line 232, in map_event
check_code = eval("lambda ev : " + compile_event(keysym, True), globals())
File "D:\Renpy\renpy-7.2.1-sdk/renpy/display/behavior.py", line 148, in compile_event
raise Exception("Invalid key specifier %s" % key)
Exception: Invalid key specifier input_jump_word_left
Windows-10-10.0.19041
Ren'Py 7.4.9.2138n
Garden of Seif 1.3
Wed Oct 6 14:48:56 2021
```