Hi there,
Please I am having the following problem:
I am using this CopyObject to copy a initiated class from a library created with compile to library.
I have tried other variants of copyobject. All are creating a null object.
Is it allowed to make a copy of user defined class object?
What gets copied? Any other references on class_globals even to other objects gets copied?
What I am trying to accomplish is to in the main activity dim the objects that will be used on the apk. Those are a selection from many objects that can be used in a project. I am not really sure of the engine in B4A, but seems to me that every library selected (I mean b4a created ones) are always imported to the apk. So if I have hundreds of libraries and need only a selection for a specific library I need to declare all to use a few. I was thinking on mark the ones needed for that project and dim the object, passing it as a way to declare that it is available, and by cloning it use the new object.
Those libraries are part of a framework created, when the object is created and loaded the object to the framework it is recognized and started to be used, it is pretty much like installing an app to android.
Thanks Eduardo