
Rafael
-
format numbers
let api := "a7e22d237021e918cbaa602fe168f52b"; let artist := replace(Name, " ", " "); let album := replace(Title, " ", " "); let url := "https://ws.audioscrobbler.com/2.0/?method=album.…
- Answered
-
Get the tracks by album
let apiKey := "8c6c8610-4f04-11ee-b74b-03c9318fae41"; let artist := substitute(text(Name), { " " : "%20" }); let album := substitute(text(Title), { " " : "%20" }); let url := "https://ws.…
- Answered
-
Print Image
I have the cover images stored in a ShareLink field. How can I include it in the Print Word format ?? let vTbl := ((select Albums where Availavility = 1) order by Name); let vObj := vTbl.…
-
urlDecode("%E2%80%87");
let xlf := urlDecode("%0A"); let fsp := urlDecode("%E2%80%87"); let focus := this; "InvoiceNo: " + InvoiceNo + xlf + "TOTAL NET PRICE: " + 'Total net price' + xlf + "DISCOUNTS:…
- Answered
-
If possible, adapt the script.
for in 'Article Name'. 'Products' do // Verify that the required fields exist and are valid if Product.'Cost Price' > 0 and product.Markup != null then // Increase markup by 15% Product.…
- Answered