Questions tagged [mdm-zinc]

MDM Zinc is a cross-platform Rapid Application Development platform for building rich Internet applications using Adobe Flash, Adobe Flex, and C++, that can be deployed as a standalone desktop application.

Zinc allows a developer to build desktop applications in a combination of Flash and C++. Applications are compiled into native executable with an embedded Flash player for the presentation layer. Zinc is similar to Adobe AIR but does not require a runtime to be installed on the user's computer. In addition, Zinc applications are not sand boxed in the same way AIR applications are, giving the developer greater access to the underlying operating system if desired.

17 questions
2
votes
1 answer

Dual Screen Application using Zinc

I am trying to decide what is going to be the best option to use for this scenario, Zinc or Adobe Air. I have a client who needs a backend touchscreen panel with a few buttons which, when pressed on will start a video on a dual screen setup on the…
SixfootJames
  • 1,841
  • 5
  • 26
  • 42
2
votes
0 answers

Mac zip file download issue size greater than 2 gb with cURL

I am creating an application with flex(sdk 3.5) for MAC which uses zinc-mdm,curl and flex 3.5 sdk. This application has a bookshelf(tilelist) displaying icons of the ebooks, which on clicking will first load the zip file from the remote location and…
2
votes
0 answers

A Zinc (4.x) application can't be opened from CD, but can open from desktop in Mac

I compiled a faily simple application that just loads images, text and opens some pdfs via mdm.System It works exactly as intended on Windows, but on Mac, it doesn't even try to launch when it's on the disc, but when copied to anywhere it will. The…
1
vote
1 answer

Is it possible to change the visibility of a window in MDM Zinc 4?

I am working on a application in Flash AS3 with MDM ZINC 4 and I have to dynamically change the window property to be from a standard window in a transparent style with no border, and from there in a masked style window. I have searched the Live…
khael
  • 2,600
  • 1
  • 15
  • 36
1
vote
1 answer

talking to flash running in local ActiveX controlled by other software

I have been using Flash + Zinc for a while to create simple interactive software for live TV shows, mostly for quiz shows, live election results and other scenarios where visuals cannot be prepared previously and need to respond to an ongoing…
Andri
  • 1,503
  • 13
  • 20
1
vote
1 answer

Close form with zinc

I am having trouble exiting my program with zinc's mdm class libraries. I've tried mdm.Forms.thisForm.close() and mdm.Application.exit() and neither have any effect. Quite frustrating! There is little to no documentation, just wondering if anyone…
Josh Mohan
  • 496
  • 6
  • 15
1
vote
0 answers

mdm.Browser onDocumentComplete Event not firing in MAC OSX

In my MAC based application I have loaded a client login URL into the mdm browser instance.The browser instance is not firing the onDocumentComplete event on MAC 10.6 and above. Following are the variants I tried to achieve the same: _myBrowser =…
1
vote
2 answers

flash write ByteArray to file on the disk

I need to write a ByteArray to a file on local disk with Flash AS3. The flashapplication is run locally (it's a projector exe). I found the FileReference class with the save() function which works perfect. The only problem is, that this function…
genesys
  • 41
  • 2
  • 5
0
votes
1 answer

Validation issue with MDM Zinc and the Apple App Store

We're using MDM Zinc to create an app for the Apple App Store. Everything looks fine and the app runs on both 10.6 and 10.7 like it's supposed to. Everything appears to be set up fine on iTunesConnect. The last step before submission is using XCode…
JScarry
  • 1,507
  • 1
  • 13
  • 25
0
votes
2 answers

Does anyone have documentation for MDM Zinc 4.0's Joystick API?

I'm trying to figure out how to use MDM Zinc 4.0's Joystick API and there are no LiveDocs on this since the software is no longer supported. Any help (especially documentation for Zinc) would be greatly appreciated!
Stubborn
  • 9
  • 1
0
votes
1 answer

MDM Zinc Flash Database 'Undefined'

I want to ask why my Text Area produce the text 'undefined' mdm.Database.MySQL.connect("localhost", "3306", true, "root", "adaptasi"); mdm.Database.MySQL.runQuery("SELECT morfo FROM materi"); TextIsi1.text = mdm.Database.MySQL.getData(); I use…
Candra Herk
  • 441
  • 3
  • 6
  • 13
0
votes
1 answer

Actionscript 3 and MDM Zinc

I posted a question here a few months ago about ways to turn an AS3 executable into programs that would run on Windows, Macintosh, and mobile devices. Got some good answers, including somebody mentioning MDM Zinc. At the time MDM Zinc was $800, it…
TomJeffries
  • 558
  • 1
  • 8
  • 25
0
votes
3 answers

Good alternative for Adobe AIR and Zinc in Flash 10 + AS 2.0

I'm making a Flash app in Flash 10 and ActionScript 2.0 and need support for calling an EXE with some params and minimizing/close the application. Neither Adobe AIR nor Zinc don't seem to support some code I made and I'm looking for a very simple…
victor hugo
  • 35,514
  • 12
  • 68
  • 79
0
votes
1 answer

How can I save a photo into a folder with mdm zinc in flash?

So far I have this code which uploads the photo mdm.Dialogs.BrowseFile.filterList = "Images|*.bmp;*.jpg;*.jpeg;*.png;*.gif"; function showPrompt(eventObj:MouseEvent):void { var f:String = mdm.Dialogs.BrowseFile.show(); if (f!="" && f!=false) { …
0
votes
1 answer

Create Context Menu with MDM Zinc

I have the following in the main function of my Flash application but when I publish this with MDM Zinc, I still get the default Flash right-click context menu. var openFileMenuItem:String = "Open"; var closeFileMenUItem:String = "Close File"; var…
Andy
  • 7,646
  • 8
  • 46
  • 69
1
2