[ANN] mergZXing - iOS Barcode Reader External

Getting into LiveCode for iOS? Ask your questions here.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
Jellicle
Posts: 453
Joined: Thu Feb 24, 2011 11:07 am

[ANN] mergZXing - iOS Barcode Reader External

Post by Jellicle » Wed Jan 11, 2012 8:24 am

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
14" MacBook Pro
Former LiveCode developer.
Now recovering.

monte
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 1564
Joined: Fri Jan 13, 2012 1:47 am
Contact:

Re: [ANN] mergZXing - iOS Barcode Reader External

Post by monte » Fri Jan 13, 2012 1:50 am

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
LiveCode User Group on Facebook : http://FaceBook.com/groups/LiveCodeUsers/

monte
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 1564
Joined: Fri Jan 13, 2012 1:47 am
Contact:

Re: [ANN] mergZXing - iOS Barcode Reader External

Post by monte » Tue Jan 24, 2012 11:58 pm

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
LiveCode User Group on Facebook : http://FaceBook.com/groups/LiveCodeUsers/

colourpixels
Posts: 83
Joined: Mon Oct 31, 2011 5:28 am

Re: [ANN] mergZXing - iOS Barcode Reader External

Post by colourpixels » Wed Jan 25, 2012 5:35 am

any more information on the iAd external, what it does how to use it for example?

Cheers
Dale

monte
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 1564
Joined: Fri Jan 13, 2012 1:47 am
Contact:

Re: [ANN] mergZXing - iOS Barcode Reader External

Post by monte » Wed Jan 25, 2012 6:01 am

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.
LiveCode User Group on Facebook : http://FaceBook.com/groups/LiveCodeUsers/

mimimimi
Posts: 1
Joined: Fri Jul 18, 2014 8:05 am

Re: [ANN] mergZXing - iOS Barcode Reader External

Post by mimimimi » Fri Jul 18, 2014 8:14 am

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.

Post Reply