Is it possible to write plugins for OSX Preview? - objective-c

Is it possible to customize OSX Preview application by creating a plugin with Objective-C or other language?

I am pretty certain there is no such thing as plugins for the Preview app.
But to be sure, I did some googling and found this: https://discussions.apple.com/thread/3296421?start=0&tstart=0
Perhaps you want to write your own QuickLook viewer?

Related

How can I make PDF files in a Unity WebGL build?

I am in the process of making a Unity WebGL App and I would like the user to be able to download a status report which pulls-in info from the app.
So far I have tested SharpPDF with which i am able to generate a pdf in the editor and standalone builds but not in the webGL build.
Any ideas
Thanks
You could make a jslib and use something like pdfkit.
https://docs.unity3d.com/Manual/webgl-interactingwithbrowserscripting.html
https://www.npmjs.com/package/pdfkit

Add Bundle Version and Build to splash screen using PhoneGap

Using the latest PhoneGap what is the best guidance someone could give as to adding the Bundle Version and Build Number overlaying a PhoneGap Splash screen. I see this on other apps but most likely those apps may not have been built with PhoneGap. From what I have read you could use a UIView controller to do this to the didFinishLaunchingWithOptions method. I am not an Objective C coder and native apps are new to me so any guidance as to where to start would be helpful. I am on El Capitan using xCode 7.1.1. Is there a tutorial of sorts to getting this done? Is it a lengthy integration? Thanks for the help!
I haven't implemented this but have thought about it a couple times... one way of getting a cross platform solution might be to stamp the bundle / app version or whatever other information you want dynamically added to the splash using ImageMagick, and the Cordova hooks system to run a script each build to do this. We have done similar with a script that sets the version numbers in config.xml for Jenkins builds, so that we can associate Jenkins output with test builds. I would imagine the same mechanism could be used with the Annotating capability of Image Magick to have a platform independent way of achieving this.

Use IntelliJ IDEA for Dart

Does anyone know why he disappeared support of chrome app in the transition from Dart Editor to IntelliJ?
Can't launch background.js but only the HTML files
What can you use to develop chrome app?
The feature is not available in WebStorm/IntelliJ IDEA at the moment. Vote for https://youtrack.jetbrains.com/issue/WEB-12096

Is it possible to highlight ObjC code in Intellij IDEA?

Intellij IDEA have IDE AppCode for iOS projects on ObjC/Swift.
I am develop crossplatform app (android and ios supports) on Cordova which contain Java, JS and ObjC as base languages. And unforunately IDEA do not highlight ObjC code. I have not found a plugin that would it did.
Is it possible to highlight it? How do you solve this problem? Using multiple IDEs?
Thank you
I found this, but it is only syntax highlighting, not auto-complete.
For that I'am afraid you will have to use AppCode or Xcode.
https://github.com/jkaving/intellij-colors-solarized

include dojo toolkit in appcelerator titanium

I want to use dojoToolkit in my project. But when I include it with Ti.include('dojo/dojo/dojo.js') I have got a error message "defineAlreadyDefined". Titanium has method called define in global namespace and there is method with similar name in dojo. Also there are some other methods with similar names (for example, required). How can I use it?
P.S. I build my project for web
Dojo as is will not work in Titanium. Dojo is a browser toolkit, not a mobile toolkit, it accesses things that are only for the web.
But, this guy ported it over to work with titanium, try it instead.