Jaime,
Kind of like you I’ve been working on some QLingo for a QR Code for vCards.
I’m getting all the information I need, but all the Address info ends up in the Address1 field. Would like to add some kind of attribute to the Addressing Properties specifying the sub-type of the address?
Kind of like you can with Telephone Type
TEL;TYPE=work,voice:" & |->[Direct]
TEL;TYPE=cell,voice:" & |->[Mobile]
ADR;TYPE=Address1" & |->[Address1]
ADR;TYPE=Address2” & |->[Address2]
ADR;TYPE=City" & |->[City]
ADR;TYPE=State" & |->[State]
ADR;TYPE=Zip" & |->[Zip]
Here is my code so far
XMP2DQRCode("BEGIN:VCARD\\n
N:" & |->[Last] & ";" & |->[First]
& "\\n
TITLE:" & |->[Title]
& "\\n
ORG:" & |->[Company]
& "\\n
ADR:" & |->[Address1] & "," & |->[Address2] & "," & |->[City] & ", " & |->[State] & " " & |->[Zip] & " " & |->[Country]
& "\\n
URL:" & |->[URL]
& "\\n
EMAIL:" & |->[Email]
& "\\n
TEL;TYPE=work,voice:" & |->[phone] & " " & |->[ext]
& "\\n
TEL;TYPE=cell,voice:" & |->[cell]
& "\\n
TEL;TYPE=fax,voice:" & |->[fax]
& "\\n
END:VCARD")
Am I thinking about this all wrong?
How do I fill in all the address fields?
Thanks
Mark