Posts

Post not yet marked as solved
2 Replies
559 Views
I want to take a Scene kit view which is normally displayed in a .xib file like so:SCNView *sceneView = (SCNView *)self.view;This sceneview is then generally called by the awakeFromNib method from what I have seen.But instead of the view being created in the view i want to display it in the canvas of Motion 5 which grabbed via the FxPlug SDK via the renderOutput method in the FxPlug API as seen in the method signature. In the signature there is an outputImage where you cna grab the width and the height which represent the canvas in which to use for Motion. - (BOOL)renderOutput:(FxImage *)outputImage withInfo:(FxRenderInfo)renderInfoI want to be able to use the Scenekit SDK and functionaility that it provides but display what I create inside of Motion 5 via the FxPlug Framework. Is there a way to accomplish this? Is it possible to take a Scenekit and convert it into an FxImage so they are usable textures? I know this is a long shot but any help or guidance would be greatly appreciated.
Posted
by Eseyee.
Last updated
.
Post not yet marked as solved
2 Replies
484 Views
I sell digital downloads for an OSx software. I have an installer that users download that is a .app installer. I want them to be able to run the .app and let it install the product for them. The installation process covers validation as well as copying folders to certain places on their computers so that my product will work for them.However now I have found people who are pirating and sharing my products simply by right clicking on the .app and going into "Show Package Contents". Through this method they are grabbing all the contents they need without actually running the .app to do the installation for them and validate their purchase.Are there any permissions setting that will allow them to run the .app but not open or view the "Show Package Contents"? I have tried as many permissions settings that I can think of but when I restrict permissions to where they can't view the content then my installer no longer works and wont move the directories where they need to be for a successful installation.Is there any way around this?Thanks in advance
Posted
by Eseyee.
Last updated
.
Post not yet marked as solved
0 Replies
342 Views
I have a script that does a cURL request and returns a string if no database rows are found. At one point this was working and then all the sudden it stopped working.set testURL to the quoted form of ("http:/ set theURL to (do shell script "curl " & testURL & "") if theURL = "no rows" then display dialog "error" error number -128 else display dialog("success") end ifwhen i display the veriable setURL it always comes back "no rows" and the comparison never works. It skips over the error message and skips right to success no matter what. What is this and why did my comparison stop working all of the sudden?
Posted
by Eseyee.
Last updated
.