Create a button that links to a website from within an Outlook 2007 signature - outlook-2007

Apparently, Outlook 2007 no longer supports embedded HTML code within signatures. I had no difficulty adding a DONATION button to my signature, but I'm unable to link from that button to a website. Does anybody have a suggestion to accomplish this?

Just put a link in instead of a button.

Related

split button outlook command add-in

I am designing a menu for an outlook add-in using Node.js
I would like that menu to behave like these SplitButton (a button that can trigger events adjacent to a dropdown menu). If you look at the splitbutton picture, It shows the paste button you see on Office Word as an exemple; if you click paste, it will paste by default but the the dropdown menu next to it has a seperate action that gives you different pasting options in the form of a dropdown menu.
I am using this the manifest found in this tutorial https://learn.microsoft.com/en-us/office/dev/add-ins/outlook/manifests , unfortunately the menu button cannot have any event attached to it, just give the dropdown menu.
A description of what I am trying to achieve can be found here https://www.codeproject.com/Articles/18447/SplitButton-a-NET-WinForm-control-Part-1, the button part and the split part can have their own actions. Is there a way to do this inside the outlook add in manifest? I am using node.js
Currently the whole button works as a dropdown.
Thank you
Currently the feature you requested, is not a part of the product. We track Outlook add-in feature requests on our user-voice page. Please add your request there. Feature requests on user-voice are considered, when we go through our planning process.

Google App Maker, importing and opening an existing web page onLoad

A newbie is trying to import the following existing URL with curriculum changes. The page needs to open onLoad, instead of user clicking.
So far, I have tried:
Link widget - only works, when one clicks on the link. Does not suit.
HTML widget - throws an error.
Fixed panel. Thought it was analogous to iframe. It isn't.
Tried adding a script
function openWebsite() {
window.open('http://www.2vsk.liepaja.edu.lv/Stundu_izmainas2.php','_blank');
} No errors, but the screen is blank.
Should anyone bother with embedding an existing website, Google provided the following solution.
https://developers.google.com/appmaker/samples/html-iframe/
My case is a miss, since, as Google supports replied, the website has to have SSL certificate which my organization doesn't have.

How to Auto Login to a web-site?

Hello,
I need to login to a web-site automatically. It is a dashboard. Is there a URL link code which I can create as shortcut link or VBScript code to achieve this? Also is there a AppleScript for MAC?
Here's an example of a javascript bookmarklet that creates a form hidden in a div at the bottom of the current page and then submits it. (I included a time stamp cause many dashboard logins include a hidden timestamp field in the form.)
javascript:self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);document.body.appendChild(document.createElement('div')).innerHTML='<form%20name="BletForm"%20method="POST"%20action="https://secure.mysite.com/index.asp?action=login"><input%20type="hidden"%20name=“domain”%20value=“mydomain”%20/><input%20type="hidden"%20name="username"%20value=“myname”%20/><input%20type="hidden"%20name="password"%20value=“mypassword"%20/><input%20type="hidden"%20name="hidDateTime"%20id="idhidDateTime"%20value=""%20/></form>';document.getElementById('idhidDateTime').value=+new%20Date()%20/1000%20|0;document.forms%5B'BletForm'%5D.submit();
You can use that code along with do javascript in safari for an Applescript solution. Something like:
set jsCode to "document.body.app..."
tell application "Safari"
do JavaScript jsCode in current tab of window 1
end tell

Sharepoint dropdown

In a list i have a status columns. In edit form, on change of status to not approved i want to show the comment text box. I want to do using designer or javascript. Pl Help.
Kindly use A custom aspx page with HTML controls and use the javascript API from following link to update to the sharepoint
Office Live JavaScript API

Open page in silverlight out of browser

Is there any way to open a page in the browser by clicking the app in out-of-browser mode?
Thank you
HyperlinkButton works. I was trying with HtmlPage.Window.Navigate with no success. And because the button supports content it is simple to create something like a linked image.
Agreed with Artur and simple way to do this is :
1) Put HyperLink Button in your Silverlight page.
2) Generate Click event and provide :
hyperlink.NavigateUri = new Uri("Url",UriKind.RelativeOrAbsolute);
3) Simply Run the Application and Click on HyperLink Button.

Resources