Hi,
I don't know if this is the solution, but I think your indentation is wrong.
The script does nothing visible... because the "process is declared as a sub-func of __init__
I think it should...
Type: Posts; User: KANUSO
Hi,
I don't know if this is the solution, but I think your indentation is wrong.
The script does nothing visible... because the "process is declared as a sub-func of __init__
I think it should...
@ Stardust
Sorry for this, but...
If you want to use nuArchitect in Python, you should try out the Version just before the actual one (posted at the beginning of this thread.
Even this version...
Hi,
I found the time to look closer into the scripts.
The path to the libraries (in 2018 site-packages) isn't present. It is somewhere in .../support/python/lib
I've copied the lib into this...
@ Stardust
You can use the initial Python version of nuArchitect. This version is found ato the start of this thread. The initial version is tagged with
__lwver__ = "11"
This make it usable with...
Hi again,
here something you should have in mind if you plan to load your work up here.
I was not able to load up large files. I do not know the exact Point, but zip-files larger than 4.65MB...
Hi prometheus,
I did not think that the old LScript version will be in use anymore. The actual nuArchitect bundle is in Python. It is right, the old LScript (and for sorry the new Python too) is a...
Hi Stardust,
no, the scripts do not run with versions before LW 2018. All scripts are tagged with
__lwver__ = "2018"
You can try to change the tag on every script. some scripts may run with...
Hello,
here the files you need to install the nuArchitect V2 Python bundle.
This bundle is donationware. If you find it useful, you should consider to donate a small "thank you" via PayPal to...
Hello,
here the list of improvements to nuArchitect:
The place for the (many) libfiles is moved to a subfolder of the "site-packages" folder (so as python wants it).
improved UI
specialized...
Hello,
I'm on the way to do the last steps prior to release the files. At first I want to release the install docs. This docs are in HTML form. They are in a zip file called
145358
To look at...
Hello,
I want to show you a screenshot of nuGUIDesign2. It has the dimensions, that will be used during work.
So my question is:
Is this resolution OK, or should it be changed? The resolution is...
Hello,
I try to explain my problem:
If I open a panel and open from there another panel, all seems to be well, but if I close the panel from the panel, the focus went to the main LW window, what...
@ Kryslin:
I'am working on the next version of nuGUIDesign and it seems like you have worked with nuGUIDesign, so please give me feedback on the feeling with the GUI of the Designer. Have you any...
Because I don't was able to get the PIL-Library installed in LW-Python, I have installed Python 2.7 parallel. So I have searched for way to handle external python scripts. At this search I find a way...
Hello together,
I have spend a complete day to find out how to install PyPNG so that it can be used from LW. Of course the Modeler. Because I didn't find a way to save an image with on bord...
If you want a quick help, than you can change the file __init__.py in the folder "nuArchitect\guiedit"
In this file find the function "def dohelp(self,tabnr)"
in this function change the line...
I have looked deeper for the issue with opening the help in the GUI-Designer.
This issue does not only hit the GUI-Designer. It seems like LW doesn't want a command like "os.startfile" (this is the...
At the moment I am working on a new release for the nuArchitect bundle. As it will have complete new UI (using tab in tab) and some new (own controls) the nuGUIDesign will become evtl a complete new...
If you write
import gc
...
...
def process(self, mod_command):
If this behaves on other Interfaces of lwsdk? I do not know, I have not tested other interfaces.
Here a very minimalistic ICommandSequence derived app
# -*- Mode: Python -*-
# -*- coding:...
If someone want to look for leaks, I found the following useful.
# at the top of the script
Import gc
# somewhere in the code (the place where you are looking for garbage)
gc.enable()...
Thank you Oliver, this helps a lot. I am now able to work wit the filerequesters.
But with the ColorPicker seems to be a Problem. In some C related docs i found a LWColorActivateFunc, but python...
I want to be able to open some requesters but do not find any hints in the docs.
This are:
A file requester. Yes, I am Aware of LWFileReqFunc, but I do not find any hint in the docs. With this...
I think that Oliver is right, from his Point of view and that you are more freed from chains by using the vanilla api....
BUT: The PRIS SDK is a way to let the users (what are in fact we) step...
If you develope a library or many libraries, than you notice that the import / reload mechanism can slow down the developement. This is because the libraries gets reloaded every time you load your...