04. February 2016 · Write a comment · Categories: Uncategorized

Can't upload videos to youtube or facebook anymore. I've read some of these posts an still no help. I've saved to computer. YouTube keeps asking for password and telling me it's wrong. When I try to upload to FB it tells me It can't. I used to be able to do both without a problem. Did something change? What else should I do?

Original title---Windows Movie Maker Uploading---

04. February 2016 · Write a comment · Categories: Uncategorized
Can't upload videos to youtube or facebook anymore. I've read some of these posts an still no help. I've saved to computer. YouTube keeps asking for password and telling me it's wrong. When I try to upload to FB it tells me It can't. I used to be able to do both without a problem. Did something change? What else should I do?

The AppleScript below works fine on Outlook 2016 and has worked fine on Outlook 2011 until the most recent 2011 update (today is February 3, 2016).

The AppleScript now generates the error:

error "Microsoft Outlook got an error: Can’t make class calendar event." number -2710 from calendar event to class

Here is the entire AppleScript which scrapes the content from information on the clipboard:

set listContents to get the clipboard
set delimitedList to paragraphs of listContents
if listContents contains "Time: " and listContents contains "Subject: " and listContents contains "Duration: " and listContents contains "Date: " then
set AppleScript's text item delimiters to return
repeat with vLineText in delimitedList
set AppleScript's text item delimiters to {": "}
if vLineText begins with "Date: " then set startDate to last text item of vLineText
if vLineText begins with "Subject: " then set theSummary to last text item of vLineText
if vLineText begins with "Time: " then set startTime to last text item of vLineText
if vLineText begins with "Duration: " then set vDuration to last text item of vLineText
set AppleScript's text item delimiters to return
end repeat

set startDate to startDate & " " & startTime
set theDescription to listContents
set startDate to date startDate
set endDate to startDate + (vDuration * minutes)
set theSummary to "Conference Call: " & startDate & " - " & theSummary

tell application "Microsoft Outlook"
set vEventInfo to make new calendar event with properties {subject:theSummary, plain text content:theDescription, start time:startDate, end time:endDate}
go to startDate --optional to scroll to event
open vEventInfo
end tell
end if

Please report this as a bug and let me know when this will be fixed in a future update or if the syntax has changed.

Thank you.

The AppleScript below works fine on Outlook 2016 and has worked fine on Outlook 2011 until the most recent 2011 update (today is February 3, 2016).

The AppleScript now generates the error:

error "Microsoft Outlook got an error: Can’t make class calendar event." number -2710 from calendar event to class

Here is the entire AppleScript which scrapes the content from information on the clipboard:

set listContents to get the clipboard
set delimitedList to paragraphs of listContents
if listContents contains "Time: " and listContents contains "Subject: " and listContents contains "Duration: " and listContents contains "Date: " then
set AppleScript's text item delimiters to return
repeat with vLineText in delimitedList
set AppleScript's text item delimiters to {": "}
if vLineText begins with "Date: " then set startDate to last text item of vLineText
if vLineText begins with "Subject: " then set theSummary to last text item of vLineText
if vLineText begins with "Time: " then set startTime to last text item of vLineText
if vLineText begins with "Duration: " then set vDuration to last text item of vLineText
set AppleScript's text item delimiters to return
end repeat

set startDate to startDate & " " & startTime
set theDescription to listContents
set startDate to date startDate
set endDate to startDate + (vDuration * minutes)
set theSummary to "Conference Call: " & startDate & " - " & theSummary

tell application "Microsoft Outlook"
set vEventInfo to make new calendar event with properties {subject:theSummary, plain text content:theDescription, start time:startDate, end time:endDate}
go to startDate --optional to scroll to event
open vEventInfo
end tell
end if

Please report this as a bug and let me know when this will be fixed in a future update or if the syntax has changed.

Thank you.

The AppleScript below works fine on Outlook 2016 and has worked fine on Outlook 2011 until the most recent 2011 update (today is February 3, 2016).

The AppleScript now generates the error:

error "Microsoft Outlook got an error: Can’t make class calendar event." number -2710 from calendar event to class

Here is the entire AppleScript which scrapes the content from information on the clipboard:

set listContents to get the clipboard
set delimitedList to paragraphs of listContents
if listContents contains "Time: " and listContents contains "Subject: " and listContents contains "Duration: " and listContents contains "Date: " then
set AppleScript's text item delimiters to return
repeat with vLineText in delimitedList
set AppleScript's text item delimiters to {": "}
if vLineText begins with "Date: " then set startDate to last text item of vLineText
if vLineText begins with "Subject: " then set theSummary to last text item of vLineText
if vLineText begins with "Time: " then set startTime to last text item of vLineText
if vLineText begins with "Duration: " then set vDuration to last text item of vLineText
set AppleScript's text item delimiters to return
end repeat

set startDate to startDate & " " & startTime
set theDescription to listContents
set startDate to date startDate
set endDate to startDate + (vDuration * minutes)
set theSummary to "Conference Call: " & startDate & " - " & theSummary

tell application "Microsoft Outlook"
set vEventInfo to make new calendar event with properties {subject:theSummary, plain text content:theDescription, start time:startDate, end time:endDate}
go to startDate --optional to scroll to event
open vEventInfo
end tell
end if

Please report this as a bug and let me know when this will be fixed in a future update or if the syntax has changed.

Thank you.

The AppleScript below works fine on Outlook 2016 and has worked fine on Outlook 2011 until the most recent 2011 update (today is February 3, 2016).

The AppleScript now generates the error:

error "Microsoft Outlook got an error: Can’t make class calendar event." number -2710 from calendar event to class

Here is the entire AppleScript which scrapes the content from information on the clipboard:

set listContents to get the clipboard
set delimitedList to paragraphs of listContents
if listContents contains "Time: " and listContents contains "Subject: " and listContents contains "Duration: " and listContents contains "Date: " then
set AppleScript's text item delimiters to return
repeat with vLineText in delimitedList
set AppleScript's text item delimiters to {": "}
if vLineText begins with "Date: " then set startDate to last text item of vLineText
if vLineText begins with "Subject: " then set theSummary to last text item of vLineText
if vLineText begins with "Time: " then set startTime to last text item of vLineText
if vLineText begins with "Duration: " then set vDuration to last text item of vLineText
set AppleScript's text item delimiters to return
end repeat

set startDate to startDate & " " & startTime
set theDescription to listContents
set startDate to date startDate
set endDate to startDate + (vDuration * minutes)
set theSummary to "Conference Call: " & startDate & " - " & theSummary

tell application "Microsoft Outlook"
set vEventInfo to make new calendar event with properties {subject:theSummary, plain text content:theDescription, start time:startDate, end time:endDate}
go to startDate --optional to scroll to event
open vEventInfo
end tell
end if

Please report this as a bug and let me know when this will be fixed in a future update or if the syntax has changed.

Thank you.

This issue just began 2/1/2016. I believe I did install the update fix last December. Anyway the only way I can keep it from crashing is to stop the initial email download/calendar update. However it will still crash if I try to access the calendar since it automatically tries to update the calendar.

Unless there is a relatively simple/painless fix I'm going to look for a third party email client.

03. February 2016 · Write a comment · Categories: Uncategorized

I am using Windows 7 and want to edit a .mov video I recorded last week. I am using the newest version of Movie Maker that I downloaded last week.

When I add the video to my project, it shows 8 rows of the same frame over and over and over and says it is 12 minutes in length, which is correct, but when I try to play it, there is no picture or sound -- just a black screen as it scrolls through the frames.

The two other videos I recorded the same night load and play perfectly, but this recording will not. By the way, this recording plays perfectly with Windows Media Player, so I know it's all there.

What could be the problem, and what is the fix?

Thank you for any and all help!

Having updated to Windows 10 and noting the new Windows Outlook Mail does not have a folder feature yet or a facility to transfer folders from Windows Live Mail ,I wish to install the latest Windows Live Mail 2012.

Currently I am running WLM 2009 because I like the ribbon, but having experienced  numerous issues with the Windows 10 install I would like to upgrade to the latest version of WLM 2012 which I believe is compatible with 10.

However I have numerous historic folders on subjects I wish to keep and worried that if I upgrade to WLM 2012 they will be lost.

I would also like clarification on what relationship WLM , Windows Outlook Mail,  Windows Outlook.com, Office Outlook, have in common.  Also what account settings should be applied to WLM 2012 eg Pop, HTTP, IMAP.

When I add a Hotmail e mail address to WLM2009 it automatically sets the server to http://mail.services.live.com/DeltaSync_v2.0.0/sync.aspx

My latest problem with WLM2009 has been the frequent refusal to send/receive e mails and when I reconfigured the account in an attempt to correct the issue(same server details) I now cannot store "sent" or "deleted" messages.  It is configured to save "sent" messages.

Help please Microsoft

Original title: Windows Live Mail 2012

03. February 2016 · Write a comment · Categories: Uncategorized

Having updated to Windows 10 and noting the new Windows Outlook Mail does not have a folder feature yet or a facility to transfer folders from Windows Live Mail ,I wish to install the latest Windows Live Mail 2012.

Currently I am running WLM 2009 because I like the ribbon, but having experienced  numerous issues with the Windows 10 install I would like to upgrade to the latest version of WLM 2012 which I believe is compatible with 10.

However I have numerous historic folders on subjects I wish to keep and worried that if I upgrade to WLM 2012 they will be lost.

I would also like clarification on what relationship WLM , Windows Outlook Mail,  Windows Outlook.com, Office Outlook, have in common.  Also what account settings should be applied to WLM 2012 eg Pop, HTTP, IMAP.

When I add a Hotmail e mail address to WLM2009 it automatically sets the server to http://mail.services.live.com/DeltaSync_v2.0.0/sync.aspx

My latest problem with WLM2009 has been the frequent refusal to send/receive e mails and when I reconfigured the account in an attempt to correct the issue(same server details) I now cannot store "sent" or "deleted" messages.  It is configured to save "sent" messages.

Help please Microsoft