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

1:36 Men's Health Matters: Insights from Maj. Santosh Shanmuga
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? ›

On the Account credentials page, under Set up account, do the following:
  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.

Who controls the patient portal? ›

In its simplest definition, a patient portal is an online website given and managed by the healthcare provider that gives you convenient 24-hour access to personal health information.

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.

What are the disadvantages of a patient portal? ›

Con: Healthcare data security concerns

A patient portal may be just one more place for a potential hacker or healthcare data thief to access a patient's data, leaving that patient liable to identity theft. However, with appropriate safeguards, these concerns can be kept at a minimum.

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. Discharge summaries.

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.

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.

Is a patient portal the same as a personal health record? ›

PHRs, EHRs and patient portals

A PHR that is tied to an EHR is called a patient portal. In some but not all cases you can add information, such as home blood pressure readings, to your record via a patient portal. If that's the case, you may not want to create a separate, standalone PHR .

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.

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 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.

What are the downsides of MyChart? ›

  • Actual data when displayed is a bit unpolished.
  • Didn't find easy integration to device calendar and profiles.
  • Dark mode would have been nice.

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 do you implement a patient portal? ›

9 Steps to Implement a New Patient Portal Solution
  1. Research Different Portal Solutions. ...
  2. Look for the Right Portal Features. ...
  3. Get Buy-In from Key Stakeholders. ...
  4. Evaluate and Enhance Existing Workflows. ...
  5. Develop a Comprehensive Onboarding Plan. ...
  6. Be Prepared for a Successful Go-Live. ...
  7. Seek Out Painless Portal Migration.
Jun 8, 2020

Top Articles
Latest Posts
Article information

Author: Annamae Dooley

Last Updated:

Views: 5555

Rating: 4.4 / 5 (45 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Annamae Dooley

Birthday: 2001-07-26

Address: 9687 Tambra Meadow, Bradleyhaven, TN 53219

Phone: +9316045904039

Job: Future Coordinator

Hobby: Archery, Couponing, Poi, Kite flying, Knitting, Rappelling, Baseball

Introduction: My name is Annamae Dooley, I am a witty, quaint, lovely, clever, rich, sparkling, powerful person who loves writing and wants to share my knowledge and understanding with you.