\n'); } var movieName = "LanyardDemo"; function thisMovie(movieName) { alert(document[movieName]); // IE and Netscape refer to the movie object differently. // This function returns the appropriate syntax depending on the browser. if (navigator.appName.indexOf ("Microsoft") !=-1) { return window[movieName] } else { return document[movieName] } } // Checks if movie is completely loaded. // Returns true if yes, false if no. function movieIsLoaded (theMovie) { // First make sure the movie's defined. if (typeof(theMovie) != "undefined") { // If it is, check how much of it is loaded. return theMovie.PercentLoaded() == 100; } else { // If the movie isn't defined, it's not loaded. return false; } } var curTextString = ""; function doPassVar(args){ // Following two lines of code are for passing to flash movie // var sendText = args.value; // window.document.LanyardSample.SetVariable("myVar", sendText); // Following lines of code are for passing to text box. if(args.value.length > 33) { alert("Your message can be no more than 33 characters in length."); args.value = curTextString; return false; } window.document.forms.sampleText.LanyardSampleText.value = args.value; curTextString = args.value; return true; } function changeFlashTextColor(hex) { // Following lines are for flash movie /* window.document.LanyardSample.SetVariable("myColorTransform.rb", r); window.document.LanyardSample.SetVariable("myColorTransform.gb", g); window.document.LanyardSample.SetVariable("myColorTransform.bb", b); window.document.LanyardSample.SetVariable("myColorTransform.ab", a); window.document.LanyardSample.GotoFrame(2); window.document.LanyardSample.Play(); */ // Following lines are for text input window.document.sampleText.LanyardSampleText.style.color = hex; window.document.form.LanyardTextColor.value= hex; if (movieIsLoaded(document["LanyardDemo"])) { document["LanyardDemo"].setVariable("newTextColor1","0x" + hex); document["LanyardDemo"].TCallFrame("/",2); } } function changeMaterialColor(hex) { window.document.sampleText.LanyardSampleText.style.backgroundColor= "#" + hex; window.document.form.LanyardBgroundColor.value= "#" + hex; if (movieIsLoaded(document["LanyardDemo"])) { document["LanyardDemo"].setVariable("newColor","0x" + hex); document["LanyardDemo"].TCallFrame("/",1); } } function changeArtWorkLocation(loc) { if (loc==0) { window.document.yourArt.style.display='none'; window.document.yourArt2.style.display='none'; } else if (loc==1) { window.document.yourArt.style.display='inline'; window.document.yourArt2.style.display='none'; } else if (loc==2) { window.document.yourArt2.style.display='inline'; window.document.yourArt.style.display='none'; } else if (loc==3) { window.document.yourArt2.style.display='inline'; window.document.yourArt.style.display='inline'; } } function changeFont(thisFont) { var newFontName = ""; var newFontSize = ""; var newFontWeight = ""; if(thisFont == "Times New Roman") { newFontName = "Times New Roman"; newFontSize = "34px"; newFontWeight = "normal"; } else if(thisFont == "Times New Roman - Bold") { newFontName = "Times New Roman"; newFontSize = "34px"; newFontWeight = "bold"; }else if(thisFont == "Arial") { newFontName = "Arial"; newFontSize = "34px"; newFontWeight = "normal"; }else if(thisFont == "Arial - Bold") { newFontName = "Arial"; newFontSize = "34px"; newFontWeight = "bold"; }else if(thisFont == "Verdana") { newFontName = "Verdana"; newFontSize = "36px"; newFontWeight = "normal"; }else if(thisFont == "Verdana - Bold") { newFontName = "Verdana"; newFontSize = "36px"; newFontWeight = "bold"; }else if(thisFont == "Tahoma") { newFontName = "Tahoma"; newFontSize = "36px"; newFontWeight = "normal"; }else if(thisFont == "Tahoma - Bold") { newFontName = "Tahoma"; newFontSize = "36px"; newFontWeight = "bold"; } else { newFontName = "Times New Roman"; newFontSize = "34px"; newFontWeight = "normal"; } window.document.sampleText.LanyardSampleText.style.fontFamily=newFontName; window.document.sampleText.LanyardSampleText.style.fontSize=newFontSize; window.document.sampleText.LanyardSampleText.style.fontWeight=newFontWeight; window.document.form.LanyardFont.value= thisFont; } function checkBrowser(){ this.ver=navigator.appVersion this.dom=document.getElementById?1:0 this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0; this.ie4=(document.all && !this.dom)?1:0; this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0; this.ns4=(document.layers && !this.dom)?1:0; this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5) return this } bw=new checkBrowser(); //With nested layers for netscape, this function hides the layer if it's visible and visa versa function showHide(div,nest){ obj=bw.dom?document.getElementById(div).style:bw.ie4?document.all[div].style:bw.ns4?nest?document[nest].document[div]:document[div]:0; if(obj.visibility=='visible' || obj.visibility=='show') obj.visibility='hidden' else obj.visibility='visible' } //Shows the div function show(div,nest){ obj=bw.dom?document.getElementById(div).style:bw.ie4?document.all[div].style:bw.ns4?nest?document[nest].document[div]:document[div]:0; obj.visibility='visible'; obj.display=''; } //Hides the div function hide(div,nest){ obj=bw.dom?document.getElementById(div).style:bw.ie4?document.all[div].style:bw.ns4?nest?document[nest].document[div]:document[div]:0; obj.visibility='hidden'; obj.display='none'; } ///////////////////////////// function changeBreakAway(brkwy) { if (movieIsLoaded(document["LanyardDemo"])) { if (brkwy == 4) { document["LanyardDemo"].TGotoLabel("_level0/BreakAway","bkwy_0"); } else if (brkwy > 0) { document["LanyardDemo"].TGotoLabel("_level0/BreakAway","bkwy_999"); } else { document["LanyardDemo"].TGotoLabel("_level0/BreakAway","bkwy_0"); } } } function changeLanyardSize(sz) { if (movieIsLoaded(document["LanyardDemo"])) { document["LanyardDemo"].TGotoLabel("_level0/LanyardMovie","lnyrd_" + sz); document["LanyardDemo"].TGotoLabel("_level0/LnyrdText1","txt1_" + sz); } } function changeFinishes(fnsh) { if (movieIsLoaded(document["LanyardDemo"])) { document["LanyardDemo"].TGotoLabel("_level0/Finishing","fnsh_" + fnsh); document["LanyardDemo"].TGotoLabel("_level0/LnyrdExtension","lnyrdExt_" + fnsh); } } function changeAccessories(acc) { if (movieIsLoaded(document["LanyardDemo"])) { if (acc > 0) { document["LanyardDemo"].TGotoLabel("_level0/Accessories","acc_999"); } else { document["LanyardDemo"].TGotoLabel("_level0/Accessories","acc_0"); } } } function changeAttachments(att) { if (movieIsLoaded(document["LanyardDemo"])) { document["LanyardDemo"].TGotoLabel("_level0/Attachments","att_" + att); } } //-->
| Q. | How can I show my designs to others? |
| Q. | Will Design-A-Lanyard allow me to upload my logo (or other artwork) and see it displayed on the lanyard I am designing? |
| Q. | Can I get an actual sample of the lanyard I am ordering? |
| Q. | How will I know what shipping charges apply to my order? |
| Q. | What type of artwork do you need for my logo (or other graphics)? |
| Q. | Will Design-A-Lanyard allow me to see a lanyard with multiple imprint colours? |
| Q. | Does this website include all available lanyard styles? |
| Q. | Will my order be saved so I can place an exact re-order in the future? |
| Q. | When I enter a quantity of 250 lanyards, I only see a few styles. Is this all you offer? |
| Q. | When I return to Design-A-Lanyard it already has information (quantity, lanyard styles, colour selections, etc.) filled in. Why is that? |
| Q. | How can I show my designs to others? |
| A. |
There are three ways to do this. The best option is to click on the SAVE/HELP button in the bottom right corner of all design pages. Clicking on this button will open another window where you can decide between two different SAVE options. Selecting either one of these options will generate a unique Design # and Password for your lanyard. At any point in the future, you can return to the Design-A-Lanyard Home Page, click on Open a Saved Project, enter your Design # and Password and retrieve your saved project. |
| Q. | Will Design-A-Lanyard allow me to upload my logo (or other artwork) and see it displayed on the lanyard I am designing? |
| A. |
No, the current version of Design-A-Lanyard only displays text on the lanyard |
| Q. | Will I see a proof of my lanyard before it is manufactured? |
| A. |
Yes. Once your order has been finalized, you will receive a colour proof of your lanyard via email 24-48 hours. This will allow you to double-check your design and/or make any changes before we begin production. Your written approval of this proof (via return email) is required before we proceed to make your lanyards. Note: If changes are required, we will then submit another colour proof for your approval. |
| Q. | Can I get an actual sample of the lanyard I am ordering? |
| A. |
Yes. However, there is a charge of €75.00 for 10 samples (plus shipping). Note: It will also delay the actual production of your lanyards by the length of time it takes to manufacture this sample, ship it to you, and receive your signed approval (via fax or email). |
| Q. | How will I know what shipping charges apply to my order? |
| A. |
Shipping charges are based on quantity and type of delivery service you require. Please consult our customer service team for the exact amounts. |
| Q. | What type of artwork do you need for my logo (or other graphics)? |
| A. |
We can accept program files for Illustrator® (Version 'CS' or less), PhotoShop® (Version 'CS' or less)... or images saved in TIF, GIF, JPG (300 dpi or higher), EPS or PDF formats. Call us for details or instructions… |
| Q. | Will Design-A-Lanyard™ allow me to see a lanyard with multiple imprint colours? |
| A. |
No, the current version of Design-A-Lanyard allows you to see on the screen only a one-colour lanyard. However, you can make your choices (style, material, number of colours, attachment, etc.) and get the price for the multiple colour lanyard you design. Once your order is submitted, you will receive a colour proof of your lanyard in 24-48 hours for your approval. |
| Q. | Does this website include all available lanyard styles? |
| A. |
No. We have included the most popular lanyard styles… and included additional styles, which you can see when clicking on the words additional styles at the top of the Lanyard Styles selection page. If you are looking for a particular style that you do not see on this website, call us. |
| Q. | Will my order be saved so I can place an exact re-order in the future? |
| A. |
Yes, all work is saved by using the "SAVE/HELP" button |
| Q. | When I enter a quantity of 250 lanyards, I only see a few styles. Are these the only lanyard styles you offer? |
| A. |
No, but these are the only styles available with a minimum of 250 lanyards. If you enter a quantity of 500 lanyards, you will see more choices (with a minimum of 500 pieces). If you enter a quantity of 1,000+ lanyards, you will see all of our lanyard styles, because our highest minimum is 1,000 pieces. |
| Q. | When I return to Design-A-Lanyard it already has information (quantity, lanyard styles, color selections, etc.) filled in. Why is that? |
| A. |
This should only occur if your internet browser is set-up to remember the information from your last session. To clear this information, click the "START OVER" in the lower right-hand corner. |