Antwort auf: mobilePickPhoto

Startseite Foren Deutsches LiveCode-Forum mobilePickPhoto Antwort auf: mobilePickPhoto

#7632
Klaus Major
Administrator

    Hallo baliebo,

    nun, aber so arbeitet “mobilepickphoto” halt! 🙂

    Aber mach doch Folgendes:

    on mouseup
       ## die beiden letzten Parameter sind die maximale Breite und Höhe
       ## des neuen Bildes in LC, mal ausprobieren, wie klein man das machen kann
       mobilePickPhoto "camera", 10,10
    
       ## Nee, doch nicht :-)
       if the result = "cancel" then
          exit mouseup
       end if
    
       ## Ein paar Leerzeichen erhöhen DEUTLICH die Lesbarkeit!   
       put last img URL("binfile:" & specialFolderPath("documents") & "/pic.jpg")
       delete last img
    end mouseup

    Gruß

    Klaus