Page 1 of 1

[ANN] mergZXing - iOS Barcode Reader External

Posted: Wed Jan 11, 2012 8:24 am
by Jellicle
See below - a solution for those needing barcode reading capability.

g

---------------------------------------------------------------------------

Hi All

Today I have released mergZXing my iOS Barcode Reader External for sale via my website http://goulding.ws/mergzxing for US$49.

The external will also be available on the LiveCode marketplace ASAP.

mergZXing currently supports reading barcodes in these formats:

UPC-A and UPC-E
EAN-8 and EAN-13
Code 39
Code 128
QR Code
ITF
Data Matrix
As an added bonus I have also included mergAnswerColor which is a modal color picker external for iOS.

--
Kind Regards,

Monte Goulding
M E R Goulding - Software Development Services

Re: [ANN] mergZXing - iOS Barcode Reader External

Posted: Fri Jan 13, 2012 1:50 am
by monte
Thanks Jellicle

There's also another bonus now called mergBanner which is an iAd external. Early bird pricing of US$49 is for a short time only.

Cheers

Monte

Re: [ANN] mergZXing - iOS Barcode Reader External

Posted: Tue Jan 24, 2012 11:58 pm
by monte
Hi All

I have just updated mergZXing with a new bonus external mergMessage all still for the early bird price of US$49. With mergMessage you can send sms from livecode. There's one command:
mergMessage [pNumbers],[pBody]

and one function:
mergMessageCanSendText()

Cheers

Monte

Re: [ANN] mergZXing - iOS Barcode Reader External

Posted: Wed Jan 25, 2012 5:35 am
by colourpixels
any more information on the iAd external, what it does how to use it for example?

Cheers
Dale

Re: [ANN] mergZXing - iOS Barcode Reader External

Posted: Wed Jan 25, 2012 6:01 am
by monte
Hi Dale

Here you go:

mergBanner is a LiveCode external that adds an iAd banner to your app at the bottom of the screen.

mergBanner Syntax

command mergBannerCreate

Syntax example:

on openStack
if the environment = "mobile" then
mobileSetAllowedOrientations "portrait,portrait upside down,landscape left,landscape right"
-- must be after the stack is fully visible
send mergBannerCreate to me in 100 milliseconds
end if
end openStack
Creates the banner off screen.

command mergBannerDelete

Syntax example:

on closeStack
-- you should also delete and recreate if you don't want to sisplay the banner for a long time
mergBannerDelete
end closeStack
Deletes the bannser and removes from screen if it's currently being displayed.

command mergBannerVisible pBoolean

Syntax example:

on mergBannerLoaded
-- an add has loaded so you can display the banner now
mergBannerVisible true
end mergBannerLoaded

on mergBannerError
-- hide the banner because an add failed to load
mergBannerVisible false
end mergBannerError
Animates the banner on and off screen.

function mergBannerRect()

Syntax example: put mergBannerRect() into tRect

Returns:

Returns the rect of the banner so you can resize your UI above it.
message mergBannerLoaded

Syntax example:

on mergBannerLoaded
-- an add has loaded so you can display the banner now
mergBannerVisible true
end mergBannerLoaded
Sent to the default card when an add is loaded. You should not set the banner to visible until you recieve this message.

message mergBannerError

Syntax example:

on mergBannerError
-- hide the banner because an ad failed to load
mergBannerVisible false
end mergBannerError
Sent to the default card when an add failed to load.

message mergBannerActionStarted pLeavingApp

Syntax example:

on mergBannerActionStarted pLeavingApp
-- full screen banner action
-- stop doing stuff that consumes lots of memory etc
end mergBannerActionStarted
Sent to the default card when a user clicks on an ad.

message mergBannerError

Syntax example:

on mergBannerActionFinished
-- back to your app so
-- start doing your thing again
end mergBannerActionFinished
Sent to the default card when the user closes the full screen ad.

Re: [ANN] mergZXing - iOS Barcode Reader External

Posted: Fri Jul 18, 2014 8:14 am
by mimimimi
and there is mergext. mergExt is a suite of externals for LiveCode. The list of externals is rapidly growing and currently includes app testing,barcode reading, recording video, document interaction, twitter, Facebook, Apple Maps, action sheet, Game Center and mor e.