How To Log Into the Patient Portal (2024)

Table of Contents
Tags Up Next FAQs

").appendTo(controls); mbOptions = $("#multiBandwidthOptions"); createMultiBandwithAnchors(currentVideoHeight); multiBandwidth.hover(function () { mbOptions.show(); }, function () { mbOptions.hide(); }); }; // BUILD MULTI-BANDWIDTH PLAYER TOOL function createMultiBandwithAnchors(videoHeight) { videoHeight = checkVideoHeight(videoHeight); updateMultiBandwithAnchors(videoFilesObj, videoHeight); } // CHECK IF CURRENT VIDEO HEIGHT EXISTS function checkVideoHeight(heightToCheck) { var index = videoFilesObj.length - 1; tempHeight = videoFilesObj[index].height; for (var i = 0; i < videoFilesObj.length; i++) { if (videoFilesObj[i].height == heightToCheck) { tempHeight = videoFilesObj[i].height; break; } } return tempHeight; } // SET PLAYER SOURCE AND PLAY VIDEO function setPlayerSource(src) { videoHasPlayed = false; // INIT createMultiBandwithAnchors(currentVideoHeight); // RECREATE THE ANCHORS var time = myPlayer.getCurrentTime(); // GET THE CURRENT TIME myPlayer.setSrc(src); myPlayer.load(); playVideo(); // SET THE TIMER TO THE CURRENT TIME SO IT WILL BE AVAILABLE WHEN THE PLAYER IS RELOADED if (time > 0) { restartTimer = time; } } // The container element is relatively positioned. MediaElement js creates an absolutely // positioned element within. Absolutely positioned items do not respect the containment // of parent relatively positioned elements. This ensures the heights are constrained. function calculateVideoHeight() { if (debug) console.log('DVIDSPlayer() > calculateVideoHeight()'); var playerHeight = $('.DVIDSVideoPlayerItem video').height(); if (debug) console.log('DVIDSPlayer() > calculateVideoHeight', playerHeight); if (playerHeight) { $('.DVIDSVideoPlayer .video-column, .DVIDSVideoPlayerItem, .DVIDSVideoPlayerItemPlaceHolder').css("min-height", playerHeight + 20); $('.DVIDSVideoPlayerItem .mejs__video, .DVIDSVideoPlayerItem video').css('height', playerHeight); } } function debounce(func, wait, immediate) { var timeout; return function () { var context = this, args = arguments; var later = function () { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; function setAspectRatio() { if (debug) console.log('DVIDSPlayer() > setAspectRatio()'); // for portrait aspect ratio, need to wait till video is playing, then redetect height var loopCount = 0; var mainLoopId = setInterval(function () { loopCount++; calculateVideoHeight(); if (loopCount > 10) { clearInterval(mainLoopId); } if (debug) console.log('DVIDSPlayer() > setAspectRatio() > setInterval Running'); }, 500); } function playVideo() { document.getElementById('videoPlayer40432').play(); setAspectRatio(); //var playButton = $(".mejs-overlay-play"); //if (playButton.size() != 0) { // playButton.trigger("click"); //} } myPlayer = new MediaElementPlayer('videoPlayer40432', { videoWidth: '100%', videoHeight: '100%', //enableAutosize: true, pluginPath: "/DesktopModules/SharedLibrary/Plugins/MediaElement4.2.9/", hls: { debug: false, capLevelToPlayerSize: true, capLevelOnFPSDrop: true, startLevel: -1, abrMaxWithRealBitrate: true }, features: ["playpause", "progress", "current", "duration", "tracks", "volume", "fullscreen"], success: function (mediaElement, domObject) { $(".DVPPlayerBackground .mejs__poster-img").attr("alt", "A short video providing instructions for loggin into the Patient Portal at Fort Moore, GA."); mediaElement.addEventListener('playing', function (e) { if (defaultButton.length) { if (playEventButtonTriggered === false) { defaultButton.hide(); hoverButton.hide(); playEventButtonTriggered = true; } } if (playEventAlreadyTriggered === false) { DVIDSVideoAnalytics.track('play', analyticsParams); if(debug) { console.debug('DVIDSVideoAnalytics PLAY EVENT'); } playEventAlreadyTriggered = true; } }); mediaElement.addEventListener('play', function (e) { if ($(".mejs__controls").is(":hidden") ) $(".mejs__controls").show(); // if overlay exists, hide it if ($(".mejs__layer.video-overlay").length) $(".mejs__layer.video-overlay").hide(); setAspectRatio(); }); mediaElement.addEventListener('ended', function (e) { DVIDSVideoAnalytics.track('ended', analyticsParams); if(debug) { console.debug('DVIDSVideoAnalytics ENDED EVENT'); } //play next media var nextURL = "javascript:GetCCURL('https://martin.tricare.mil/News-Gallery/Videos/?videoid=919688#DVIDSVideoPlayer40432')"; if (nextURL != "") { document.location = nextURL; } }); //$('#videoPlayer40432').css({'width': '100%', 'height':'100%'}); // EVENT LISTENER FOR WHEN VIDEO TIME HAS BEEN UPDATED mediaElement.addEventListener('timeupdate', function (e) { // IF VIDEO HAS NOT BEEN PLAYED AND SAVED POSITION IS GREATER THAN 0 if (!videoHasPlayed && restartTimer > 0) { // SET THE START TIME FROM THE RELATION IN SECONDS myPlayer.setCurrentTime(restartTimer); // SET THE VIDEO HAS PLAYED FLAG AND CLEAR THE TIMER // OTHERWISE KEEP CONTINUAL LOOP GOING BACK TO THIS TIME // THIS EVENT GETS CALLED AROUND EVERY 250MS videoHasPlayed = true; restartTimer = 0; } }, false); mediaElement.addEventListener('canplay', function (e) { CheckCaptions(); }, false); mediaElement.addEventListener('pause', function (e) { if (defaultButton.length) { defaultButton.removeAttr("style"); hoverButton.removeAttr("style"); playEventButtonTriggered = false; } }, false); mbOptions.delegate("a", "click", function () { var obj = $(this); if (obj.hasClass("chosenMBLink")) { return false; } else { mbOptions.find("a.chosenMBLink").removeClass("chosenMBLink"); obj.addClass("chosenMBLink"); currentVideoHeight = obj.html().substring(0, obj.html().length - 1); setPlayerSource(obj.attr("fileurl")); } mbOptions.hide(); return false; }); // ASSIGN CAPTIONS SELECTOR TO JQUERY OBJECT, SET CLICK DELEGATE AND TURN ON CAPTIONS IF PREVIOUSLY ENABLED captionsSelector = $("div.mejs-captions-selector"); captionsSelector.delegate("input:radio", "click", function () { var lang = this.value; if (lang == "none") { dvpCCEnabled = false; } else { dvpCCEnabled = true; } }); turnOnCaptionsIfEnabled(); } }); $window.on("resize", function () { if ($(".mejs__time-total.mejs__time-slider").attr("aria-valuemax") == "NaN") { $(".mejs__time-total.mejs__time-slider").attr("aria-valuemax",130); } var debouncedFn = debounce(calculateVideoHeight, 250); debouncedFn(); }); // AUTOMATICALLY PLAY VIDEO IF ID PASSED OR VIDEO CLICKED if (true) { playVideo(); //document.getElementById('videoPlayer40432').play(); } }); function updateMultiBandwithAnchors(files, videoHeight) { var mbOptions = $("#multiBandwidthOptions"); var multiBandwidthHTML = []; for (var i = 0; i < files.length; i++) { if (i == files.length - 1) { multiBandwidthHTML.unshift("" + files[i].height + "p"); } else { if (files[i].height != files[i+1].height) { multiBandwidthHTML.unshift("" + files[i].height + "p"); } } } multiBandwidthHTML.push("

"); mbOptions.html(multiBandwidthHTML.join("")); var mbAnchors = mbOptions.children("a"); for (i = 0; i < mbAnchors.length; i++) { if (mbAnchors.eq(i).html() == videoHeight + "p") { mbAnchors.eq(i).addClass("chosenMBLink"); } } mbOptions.css("height", 20 * mbAnchors.length); } function PlayAssetAJAX(id) { var baseUrl = $.ServicesFramework().getServiceRoot('DVIDSVideoPlayer'); $.ajax({ type: "GET", url: baseUrl + "Public/GetAsset?id=" + id, headers: { "ModuleId": 40432, "TabId": 10920, "RequestVerificationToken": $("input[name='__requestverificationtoken']").val() }, success: function (data) { // remove the poster so the initial poster doesn't display while switching videos. $(".DVPPlayerBackground .mejs__poster").css("background-image", ""); $(".DVPPlayerBackground .mejs__poster-img").removeAttr("src"); $(".DVPPlayerBackground video").removeAttr("poster"); // analytics playEventAlreadyTriggered = false; gaUrl = data.AnalyticsUrl; gaTitle = data.AnalyticsTitle; gaID = data.ID; // play through mediaelementjs $("#MediaCaption" + id).attr('src', data.CaptionsUrl); myPlayer.rebuildtracks(); myPlayer.setSrc(data.Video.HlsSrc); myPlayer.play(); updateMultiBandwithAnchors(data.Bandwidth, 700); }, error: function () { if(debug) { console.log("error loading asset"); } } }); } Video by John Tongret

How To Log Into the Patient Portal

Martin Army Community Hospital

April 18, 2024 | 2:10

A short video providing instructions for loggin into the Patient Portal at Fort Moore, GA.

More

Tags

Mach

More

Up Next

2:22 Martin Minute Episode 6
2:05 PTSD Awareness Month
Now Playing How To Log Into the Patient Portal
1:23 How To Update Your Address at ID Card Online

More Videos

How To Log Into the Patient Portal (2024)

FAQs

How do you create an account with patient portal? ›

Create a New Account
  1. In Username, type your username.
  2. In Password, type your password. For more information about the latest user name and password policies, see the Username and Password Policy section.
  3. In Confirm Password, re-type your password.

What information can be accessed through a patient portal? ›

Patient portals can help you access medical records, set up appointments, communicate with your health care professional, and pay medical bills.

Who controls the patient portal? ›

With a patient portal, your healthcare provider owns the information and they maintain it. They make the necessary updates based on your visits, results, and queries. In contrast, with a PHR, you are the owner. As we've said, this gives you greater control over your health information.

What are the disadvantages of a patient portal? ›

Patient portals can inadvertently contribute to alienation between patients and healthcare providers, particularly among populations with limited access to these online tools. Individuals with lower health literacy may be resistant to using patient portals due to the potential for confusion and misunderstanding.

What is the patient portal feature? ›

A patient portal is a secure online website that gives patients convenient, 24-hour access to personal health information from anywhere with an Internet connection. Using a secure username and password, patients can view health information such as: Recent doctor visits.

What must be done when creating a patient portal? ›

Let's find out how to make a patient portal step-by-step.
  1. Identify your target audience. ...
  2. Follow your patients' priorities. ...
  3. Keep patient portal requirements in mind. ...
  4. Evaluate the efficiency of the portal. ...
  5. Consider data security concerns. ...
  6. Find your software development partner.

What is another name for a patient portal? ›

Definitions. The terms “personal health record,” or PHR, and “patient portal” are often used synonymously, particularly in surveys where consumers are asked about electronic connections with their care providers.

Can other doctors see your messages in MyChart? ›

Multiple members of your care team may view MyChart messages in order to get an appropriate and efficient response; this may include nurses or advance practice clinicians other than your primary care provider (PCP).

Why should I use a patient portal? ›

Patient portals enable patients to communicate securely and conveniently with their providers. These systems give patients the power to view doctor visits, obtain test results, request medication refills or discuss any medical-related matters.

What are the eight things a patient can do in their patient portal? ›

We examined patients' use of eight common portal features: messaging, medical advice message, lab tests/results, medication list, problem list, allergies, immunizations, and appointment details.

Why do patients not use patient portals? ›

Lack of online medical records - Roughly 32% of patients reported not having an online medical record, which is a prerequisite for utilizing a patient portal. Limited internet access - Approximately 25% of patients cited a lack of internet access as a barrier to using patient portals.

What is the most common barrier to the use of the patient portal? ›

The most common barriers to patient portal adoption are preference for in-person communication, not having a need for the patient portal, and feeling uncomfortable with computers, which are barriers that are modifiable and can be intervened upon.

How secure are patient portals? ›

They have insufficient identity verification. Even when a patient hasn't enrolled in the portal, fraudsters can set up a fake account using data obtained via “phishing” emails. The sign-up system has no way of knowing if this is the real person or not. They fail to mask sensitive information.

How do I set up an APPatient account? ›

An account must be activated through a web browser before you can use or access your data on the APPatient Application. Providing us with your email address will allow us to send you an email from the office that includes a link to activate your Patient Portal account.

How do you create a patient profile? ›

How to Create a Patient Profile for Your Practice
  1. Sex.
  2. Age.
  3. Occupation.
  4. Family Size.
  5. Financial Situation.
  6. Location.
  7. Mental and Emotional State.
  8. Means of Communication.

How do I create a patient notebook account? ›

Simply contact your healthcare provider and request an invitation to Patient Notebook. Your doctor will generate an Invitation Code you can use to sign up for a Patient Notebook account. An Invitation Code can also be used to add a new doctor to your existing Patient Notebook profile.

How to implement a patient portal? ›

Let's find out how to make a patient portal step-by-step.
  1. Identify your target audience. ...
  2. Follow your patients' priorities. ...
  3. Keep patient portal requirements in mind. ...
  4. Evaluate the efficiency of the portal. ...
  5. Consider data security concerns. ...
  6. Find your software development partner.

Top Articles
Latest Posts
Article information

Author: Ouida Strosin DO

Last Updated:

Views: 6426

Rating: 4.6 / 5 (56 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Ouida Strosin DO

Birthday: 1995-04-27

Address: Suite 927 930 Kilback Radial, Candidaville, TN 87795

Phone: +8561498978366

Job: Legacy Manufacturing Specialist

Hobby: Singing, Mountain biking, Water sports, Water sports, Taxidermy, Polo, Pet

Introduction: My name is Ouida Strosin DO, I am a precious, combative, spotless, modern, spotless, beautiful, precious person who loves writing and wants to share my knowledge and understanding with you.