#1
|
|||
|
|||
![]()
Hi,
I am still having trouble previewing any images from a customer URL Link. This is a postcard mailer. They want to use their website image portal using https:// links on their database list. So my rule should be able to connect to the links in the list and preview the images on the website. This is one rule that I am using right now. But I am open to any other options. I am a novice with JS so anything helps. var baseName = Field("URL2"); var extensions = [".tif", "gif", ".png", ".jpg"]; for (var i in extensions) { var pic = CreateResource(Field ("URL2") + extensions[i], "graphic", true); if (pic.exists) return pic; } Print("graphic" + Field ("URL2") + " not found."); return CreateResource(Field ("URL2")) return NullResource(); I am using FusionPro 10.1.11 on Windows 10. The links are https:// |
#2
|
||||
|
||||
![]()
Well, without knowing what's in the data, it's impossible to say what's wrong. But usually a URL is fully resolved, and doesn't need any extensions or anything appended to it. So I think that what I wrote in the other thread should probably work:
Code:
return CreateResource(Field("URL2")); FWIW, this works for me: Code:
return CreateResource("https://fusionpro-marcomcentral.netdna-ssl.com/wp-content/uploads/2019/06/fusionpro-icon.png");
__________________
Dan Korn FusionPro Developer / JavaScript Guru / Forum Moderator PTI Marketing Technologies | Printable | MarcomCentral I am a not a Support engineer, and this forum is not a substitute for Support. My participation on this forum is primarily as a fellow user (and a forum moderator). I am happy to provide help and answers to questions when I can; however, there is no guarantee that I, or anyone else on this forum, will be able to answer all questions or fix any problems. If I ask for files to clarify an issue, I might not be able to look at them personally. I am not able to answer private messages, emails, or phone calls unless they go through proper Support channels. Please direct any sales or pricing questions to your salesperson or inquiries@marcom.com. Complex template-building questions, as well as all installation and font questions or problems, should be directed to FusionProSupport@marcom.com. Paid consulting work may be required to fulfill your template-building needs. This is a publicly viewable forum. Please DO NOT post fonts, or other proprietary content, to this forum. Also, please DO NOT post any "live" data with real names, addresses, or any other personal, private, or confidential data. Please include the specific versions of FusionPro, Acrobat, and your operating system in any problem reports or help requests. I recommend putting this information in your forum signature. Please also check your composition log (.msg) file for relevant error or warning messages. Please post questions specific to the MarcomCentral Enterprise and Web-to-Print applications in the MarcomCentral forum. Click here to request access. Or contact your Business Relationship Manager (BRM/CPM) for assistance. Please direct any questions specific to EFI's Digital StoreFront (DSF) to EFI support. How To Ask Questions The Smart Way The correct spellings are JavaScript, FusionPro, and MarcomCentral (each with two capital letters and no spaces). Acceptable abbreviations are JS, FP, and MC (or MCC). There is no "S" at the end of "Expression" or "Printable"! The name of the product is FusionPro, not "Fusion". "Java" is not is not the same as JavaScript. Check out the JavaScript Guide and JavaScript Reference! FusionPro 8.0 and newer use JavaScript 1.7. Older versions use JavaScript 1.5. return "KbwbTdsjqu!spdlt\"".replace(/./g,function(w){return String.fromCharCode(w.charCodeAt()-1)}); ![]() |
#3
|
|||
|
|||
![]()
Hi Dan,
Thanks this link worked for me as well. I placed it in my test list. return CreateResource("https://fusionpro-marcomcentral.netdna-ssl.com/wp-content/uploads/2019/06/fusionpro-icon.png"); I was able to get other url links to show as well, but I am still waiting on the customer list. They use API from Amazon. I suppose until we have that list, there is nothing further you can do to help. Except, with my testing I needed to apply a scaling or resizing on the images. Where in the code would I place a uniform scaling or size control to the images? Thanks in advance. |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|