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
[ANN] mergZXing - iOS Barcode Reader External
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
[ANN] mergZXing - iOS Barcode Reader External
14" MacBook Pro
Former LiveCode developer.
Now recovering.
Former LiveCode developer.
Now recovering.
Re: [ANN] mergZXing - iOS Barcode Reader External
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
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/
Re: [ANN] mergZXing - iOS Barcode Reader External
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
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/
-
- Posts: 83
- Joined: Mon Oct 31, 2011 5:28 am
Re: [ANN] mergZXing - iOS Barcode Reader External
any more information on the iAd external, what it does how to use it for example?
Cheers
Dale
Cheers
Dale
Re: [ANN] mergZXing - iOS Barcode Reader External
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.
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/
Re: [ANN] mergZXing - iOS Barcode Reader External
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.