How do I create and send an MV Link? (2024)

  • Home
  • Account Settings
  • Profile

Last Modified on 12/10/2023 12:43 pm EST

The MV Linkfeature enables Creators to give vids to Members for free using a one-time-use URL! The receiving Member will have access to the vid from their Purchase History and therefore will be downloadable unless the vid is set to Stream-Only. This is a great way to fulfill contest vote incentives, give special gifts, etc.

To create an MV link:

  • Click the drop-down menu > Dashboard
  • Marketing Tools
  • MV Link

Drag the vid(s) you want to send from the left section to the right and click <Create MV Link>. You will now have the URL for your MV Link.Each link can only be used once, so if you need to send it to multiple members, you'll need to create new links each time.

Instructions on how to redeem an MV Link:

  1. Log into your MV Account, or create a free user account.
  2. Once logged in, copy and paste the MV Link in your browser.
  3. Go to Purchase History and choose the filter MV link from the drop down, and your vid(s) will be available for playback.

How do I create and send an MV Link? (1)

Thank you for your feedback!

Related Articles

  • I can't fulfill/deliver an order. How do I refund a customer?

  • How do Creators earn tokens?

  • MVU Series

  • What is my MV Score and how do I increase it?

  • I've been approved! Now what?

  • Home

  • Glossary

  • Get Started as a Creator!

  • Store

  • FAQs

  • MVU Series

  • Account Settings

  • Live

  • Payout

  • Promotion

  • Members Support

  • Contact Us

  • Full PDF Download

"); } else { $("#node-tabs-container").append("

"); } // Add a node content block, for displaying headers or final-level content //MB hotfix 6-11-2020: prepend level 1 since it's currently being put at the bottom for some reason if (nodeLevel == '1'){ $(".node-level-container.level-1").after("

"); } else { $("#node-tabs-container").append("

"); } } $(".node-level-container.level-"+nodeLevel).append(nodeHTML); }); // Remove template from DOM $(".node-tab.template").remove(); // Hide all the node tabs and containers, except for level 1 $(".node-level-container:not(.level-1)").hide(); $(".node-tab:not(.level-1)").hide(); loadingComplete(); } function setupEventHandlers() { // Open tabs when clicked $(".node-tab").click(function(e) { // Get information about this node's level var thisLevelClass = e.currentTarget.className.match(/level-\d+/)[0]; //console.log("thisLevelClass",thisLevelClass); var thisLevel = parseInt(thisLevelClass.split("-")[1]); // Get this node's category id var thisCatID = $(this).data("category-id"); // Get this node's catageory API data var thisCatData = getObjectByPropertyValue(apiData.categories, "id", thisCatID); // Hide everything that is one level below the clicked node, and remove any selected classes from these nodes function oneLevelBelow() { return $(this).attr("data-node-level") >= thisLevel+1; } $(".node-level-container").filter(oneLevelBelow).hide(); $(".node-tab").filter(oneLevelBelow).hide().removeClass("selected"); $(".node-tab."+thisLevelClass).removeClass("selected"); // Also remove selected class from nodes on the same level as this one $(".node-content").filter(oneLevelBelow).html(""); $(".node-content").filter(oneLevelBelow).hide().removeClass("selected"); $(".node-content."+thisLevelClass).html("").removeClass("selected"); // Also empty out node content from this level $("#ko-contact-form").hide(); // Also hide contact form $("#action-buttons-container").hide(); // Also hide contact form buttons $(".form-button").removeClass("selected"); // Display the next level's container $(".node-level-container.level-"+(thisLevel+1)).show(); // Display the node tabs that are children of the clicked node $(".node-level-container.level-"+(thisLevel+1)+" .node-tab[data-parent-category='"+thisCatID+"']").show(); // Add a selected class to this node $(this).addClass("selected"); $(".node-content."+thisLevelClass).addClass("selected"); // Display and populate this node's content var nodeDescription = apiData.articles.find(function(article) { return article.parents.indexOf(thisCatID) > -1; }).current_version.en.text; $(".node-content."+thisLevelClass).html(nodeDescription).show(); // Identify a node content as final level content if the node tab has the final level attribute if ($(this).hasClass("final-level")) { var finalLevelNodeContent = $(".node-content.selected").last(); finalLevelNodeContent.addClass("final-level"); // Display action buttons $("#action-buttons-container").show(); scrollToBottom(); } else { $(".node-content").removeClass("final-level"); $(".node-content .final-level-related-articles-container").remove(); } rearrangeForm(); }); $(".form-button").click(function() { $(this).addClass("selected"); $("#ko-contact-form").show(); }); } function rearrangeForm() { // Name getFormGroup("contact_name") .detach() .insertAfter(".hg-contact-form-container h2") .css({ "width": "50%", "display": "inline-block", "padding-right": "10px" }); // Email getFormGroup("contact_email") .detach() .insertAfter(getFormGroup("contact_name")) .css({ "width": "50%", "display": "inline-block", "padding-left": "10px" }); // Subject $("#contact_subject").attr("placeholder", "Please provide a brief summary"); // Details $("#contact_body").css("height", "100px").attr("placeholder", "Please provide as much detail as possible."); // Submit Button $(".hg-contact-form-container .text-right button").text("Send"); // Make field changes based on the content inside the chosen final node. Insert them before "attach files" field var customFieldData = interpretCustomFields(); var attachFiles = $(".hg-contact-form-container .form-group").last(); var fieldCount = 0; // Wipe out any previously recycled custom fields $(".recycled").remove(); // Remove the default fields (if there are any still) $(".form-group").each(function() { if ($(this).find("label").text().indexOf("Response") > -1) { $(this).remove(); } }); customFieldData.forEach(function(field) { if (field.type == null) { console.log("Error - field definition has no type", field); } else { if (field.type == "label") { attachFiles.before("

"); } else if (field.type == "text") { if (field.placeholder == null) { field.placeholder = ""; } var recycledField = $('

'); recycledField.find("label").attr("for", "response_"+(fieldCount+1)); recycledField.find("label").text(field.question); recycledField.find("input").attr("id", "response_"+(fieldCount+1)); recycledField.find("input").attr("name", "custom_contact_field_"+fieldCount); recycledField.find("input").attr("placeholder", field.placeholder); recycledField.addClass("recycled"); attachFiles.before(recycledField); fieldCount++; } else if (field.type == "dropdown") { var recycledField = $('

'); recycledField.find("label").attr("for", "response_"+(fieldCount+1)); recycledField.find("label").text(field.question); recycledField.find("select").attr("id", "response_"+(fieldCount+1)); recycledField.find("select").attr("name", "custom_contact_field_"+fieldCount); // Add options field.options.split(";").forEach(function(option) { recycledField.find("select").append("

"); }); recycledField.addClass("recycled"); attachFiles.before(recycledField); fieldCount++; } } }); } function getObjectByPropertyValue(array, propertyName, propertyValue) { return array.filter(function(o) { return o[propertyName] === propertyValue })[0]; } function loadingComplete() { console.log("All loading complete"); // Display the documentation article now that all nodes are built $(".hg-contact-page").show(); nodesHeight = $(".documentation-article").outerHeight(true); } function getFormGroup(inputID) { return $("#"+inputID).parent(".form-group"); } Array.prototype.extend = function(other_array) { // from http://stackoverflow.com/a/17368101 other_array.forEach(function(v) { this.push(v) }, this); } function interpretCustomFields() { var customFieldsData = []; // For each pre tag $(".node-content.final-level.selected").find("pre").each(function() { // Remove curly brackets and white space var asString = $(this).text(); asString = asString.replace("{",""); asString = asString.replace("}",""); asString = asString.trim(); var asArray = asString.split(","); var asObject = {}; asArray.forEach(function(e) { var key = e.split(":")[0].trim(); var value = e.split(":")[1].trim(); asObject[key] = value }); customFieldsData.push(asObject); }); return customFieldsData; } } });

Choose the subject below that best describes how we can help.

Contact MV Support

How do I create and send an MV Link? (2024)

FAQs

How to create a link to send a video file? ›

Another option is to use a file-sharing service like Dropbox or Google Drive to upload your video. Once uploaded, you can easily share the link with anyone by copying the file's public link from the sharing settings page. Whichever method you choose, ensure you create a link that's both secure and easy to remember.

How to create a file link? ›

Create a hyperlink to a file on your computer

Select the text or picture that you want to display as a hyperlink. Link. Under Link to, do one of the following: To link to an existing file, click Existing File or Web Page under Link to, and then find the file in the Look in list or the Current Folder list.

How do I create a link to send a document? ›

Creating a shareable link makes it simple to share a document in an email, document, or IM.
  1. Select Share.
  2. Select Link settings if you want to change permissions.
  3. Select Copy Link and share the link however you want, like in an email, document, or IM.

How to create a URL link? ›

You can also insert a URL link by using the shortcut keys "Ctrl+K". The window below asks you to enter the hyperlink URL. If you selected something before using Ctrl+K, the URL itself will not appear on the page but what you selected will serve as a link to http://www.microsoft.com.

Can you send a WeTransfer link to someone else? ›

If you upload a link transfer, you can share that with however many people you like. However, the number of downloads will be limited to your plan allowance. Each email is sent separately. No worries – all your friends will still think they're special.

Is WeTransfer free? ›

WeTransfer works like a typical email account but supports large files. You just need to input your email address and that of the receiver, add your message, attach the file, and send. The basic service is offered for free and you do not need to sign up to use it. You can send files as much as 2GB.

How do I share a file link? ›

  1. Select the file you want to share.
  2. Tap Share or Share .
  3. Under “General access,” tap Change.
  4. Select Anyone with the link.
  5. To decide what role people will have with your file, select an option. ...
  6. Tap Copy link.
  7. Tap Back.
  8. Paste the link in an email or any place you want to share it.

How do I create an attachment link? ›

Go to where you want to create a link. If the location is in the file attachment, select the Attachments file option in the Edit panel and add the file attachment. Choose Edit > Link > Add or edit a link, and select the area for the link. In the Create Link dialog, set the link appearance.

How do you get a file link? ›

Step 1: Open File Explorer and locate the file or folder. Step 2: Go to the Home tab and click Copy path. Now you can paste the path anywhere you want. You just need to right-click on the file or folder and the drop-down menu will show you the option of Copy as path here.

How do you create a link in a document? ›

Select the text or object you want to use as a selectable hyperlink. Right-click and then select Link. Under Link to, click Place in This Document. In the list, select the heading or bookmark that you want to link to.

How do I send a link to someone? ›

Copy a link: Right-click or tap-and-hold a link to copy it, or highlight the URL and press Ctrl+C (Windows) or Command+C (macOS). To send the web page link in any email client: Paste the copied URL directly into the message before you send it.

How do I create a send link in an email? ›

In the message, select the text or picture that you want to display as the link. On the Insert tab, click Link or Hyperlink. Under Link to, click E-mail Address. Either type the email address that you want in the E-mail address box, or select an email address in the Recently used e-mail addresses list.

How to share a video file? ›

When a video file is too big to email, a good solution is to compress it into a zip file. A zip file decreases the size of the content to make it small enough to fit in an email. Once a zip file is sent, the recipient can access the folder and download it onto their own device.

References

Top Articles
Latest Posts
Article information

Author: Gov. Deandrea McKenzie

Last Updated:

Views: 5960

Rating: 4.6 / 5 (46 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Gov. Deandrea McKenzie

Birthday: 2001-01-17

Address: Suite 769 2454 Marsha Coves, Debbieton, MS 95002

Phone: +813077629322

Job: Real-Estate Executive

Hobby: Archery, Metal detecting, Kitesurfing, Genealogy, Kitesurfing, Calligraphy, Roller skating

Introduction: My name is Gov. Deandrea McKenzie, I am a spotless, clean, glamorous, sparkling, adventurous, nice, brainy person who loves writing and wants to share my knowledge and understanding with you.