User Tag List

Page 1 of 4 1 2 3 ... LastLast
Results 1 to 10 of 33

Thread: QR codes - Android AND iOS.

  1. #1
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)
    Popcorn's Avatar
    Join Date
    Jun 2006
    Location
    Norway, Bergen
    Posts
    2,374
    Mentioned
    13 Post(s)
    Tagged
    0 Thread(s)

    QR codes - Android AND iOS.

    I post this here since I don't want to post the same topic in both Android and iOS forums..

    Have anyone experience with using QR codes in their apps?

    Example of the functionality I want:

    - Someone see a poster for a concert. The poster has a QR code.
    - The person scas the code.
    - Your app installs / starts.
    - Your app downloads the concertinfo from your server.

    From google-searches I find that this should be possible in Android using intents, and Fusion supports intents so I suppose Android is all good. I also find that iOS supports this, but I don't know if that bit is supported by Fusion.

    Have anyone successfully used QR-codes for iOS or Android in this way?

  2. #2
    Clickteam Clickteam
    Fernando's Avatar
    Join Date
    Dec 2006
    Posts
    7,689
    Mentioned
    298 Post(s)
    Tagged
    4 Thread(s)
    mm just build the example for fusion which you may find at

    Help > Examples > Scan

    and seem to work here

    https://drive.google.com/file/d/0B8W...ew?usp=sharing
    Regards,


    Fernando Vivolo

    ... new things are coming ...

  3. #3
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)
    Popcorn's Avatar
    Join Date
    Jun 2006
    Location
    Norway, Bergen
    Posts
    2,374
    Mentioned
    13 Post(s)
    Tagged
    0 Thread(s)
    Hm, I can't see how those examples may help me. Doesn't the QR Scanner object only scan QR codes? That's not what I'm after. Like I tried to explain above, people will scan using their own device with any scanner app, and my app should get installed and download content based on what has been scanned by that app. That's not what those examples are showing, or am I missing something here?

  4. #4
    Clickteam Clickteam
    Fernando's Avatar
    Join Date
    Dec 2006
    Posts
    7,689
    Mentioned
    298 Post(s)
    Tagged
    4 Thread(s)
    this basic example allow you to scan, so you can do is to scan any type and see if the object is capable of bring any information from those bar code, eg: I just scan a QR (directly from screen of my laptop and it worked) also test all the below type and seems to be doing OK.
    The current object using zbar libs implements decoding for QR, EAN-13, UPC-A, UPC-E, EAN-8, Code 128 and Code 39.
    Regards,


    Fernando Vivolo

    ... new things are coming ...

  5. #5
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)
    Popcorn's Avatar
    Join Date
    Jun 2006
    Location
    Norway, Bergen
    Posts
    2,374
    Mentioned
    13 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the help, but I don't need my app to be able to scan... I want my app to trigger and handle the QR code when another app scans a QR code that I created. From what I gather from google this should be possible.. or?

  6. #6
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleiOS Export Module
    conceptgame's Avatar
    Join Date
    Apr 2011
    Location
    Switzerland
    Posts
    792
    Mentioned
    16 Post(s)
    Tagged
    0 Thread(s)
    For a standard case, the QR Code contains an alphanumeric datatype with an URL inside. The scanner app type will provide you this
    metadata. For example on Android, the easiest is to use QR/Bar Scan Code object as suggested by Fernando and use string result to open
    the URL. If you expect any other app to scan the code, you can use intent.
    For example Intent "com.google.zxing.client.android.SCAN" with extra string "SCAN_MODE" = "QR_CODE_MODE" if you do not want to scan
    anything else as QRCode. extra strings "SCAN_RESULT" and "SCAN_RESULT_FORMAT" will give you the result and you can check the expected
    format.
    It seems that you want that your app opens and shows infos when any scanner app is used. This way, I do not know how to do.

  7. #7
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)
    Popcorn's Avatar
    Join Date
    Jun 2006
    Location
    Norway, Bergen
    Posts
    2,374
    Mentioned
    13 Post(s)
    Tagged
    0 Thread(s)
    Thanks Conceptgame. Yeah, it's the latter I want. I was hoping this was an easy and common thing to do, but it seems not. I thought that was the main purpose with QR codes, but I guess I was wrong. Anyway, I read that QR codes is only used by a minority of mobile owners (10-20% have used it at least once, about 5% on regular basis) and never got the popularity it was meant to get, so I suppose I can just as well not include them in my project, at least for now.

  8. #8
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleUniversal Windows Platform Export ModuleSWF Export Module
    paobrasil's Avatar
    Join Date
    Apr 2012
    Location
    Rio de Janeiro, Brazil
    Posts
    1,146
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry to bump this thread.

    But I'm trying to use the QR/Bar Scan Object. I just opened the Android example, compiled the APK and I cant read the codebar.
    I dont want use to read QR Code, I'm trying to read codebars without success.

    Somebody knows how to do it?

  9. #9
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleiOS Export Module
    conceptgame's Avatar
    Join Date
    Apr 2011
    Location
    Switzerland
    Posts
    792
    Mentioned
    16 Post(s)
    Tagged
    0 Thread(s)
    There are a lot of barcode types. Which one do you want to read? They are more or less supported depending of their type.

  10. #10
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleUniversal Windows Platform Export ModuleSWF Export Module
    paobrasil's Avatar
    Join Date
    Apr 2012
    Location
    Rio de Janeiro, Brazil
    Posts
    1,146
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, it's a simple barcode of my job card. This barcode represents a unique ID. But I cant retrieve it scanning...

Page 1 of 4 1 2 3 ... LastLast

Similar Threads

  1. Does Android Exporter already have Axis key codes supported? Any example.
    By mohdhafizal in forum Android Export Module 2.5
    Replies: 6
    Last Post: 2nd January 2015, 06:14 PM
  2. About promo codes
    By JoKa in forum iOS Export Module Version 2.0
    Replies: 2
    Last Post: 27th October 2012, 02:34 AM
  3. expression codes
    By jaaj302005 in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 4th November 2011, 05:45 AM
  4. Promo Codes
    By BHGames in forum iOS Export Module Version 2.0
    Replies: 32
    Last Post: 17th March 2011, 04:03 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •