HI,
I want to open a web page on click of a button in any dialog that is created in InstallShield. I think it can be created by using custom actions but as I am new in this tool do not find the exact way to achieve this. Please help if anyone have idea for this.
Thanks.
Like epotter mentioned, you could do the following
To open a local html file
LaunchAppAndWait( "explorer.exe", "c:\temp\readme.html", WAIT );
or to open a remote site
LaunchAppAndWait( "explorer.exe", "http://www.stackoverflow.com", WAIT );
Hope this helps!
In the handler code for the button press, call LaunchApplication. Pass in the full path to the browser of your choice and the URL to which you want to navigate.
Related
Whenever I click "New Item" button on Sharepoint list to, of course, to create an item... it returns a blank page. Here's the screenshot of what it returns:
I am the one who created this list, so I should have an access. My teammates can access the custom form I made whenever they click the New Item button except me. It all started when I got an error message after I modified my infopath form. It's about Web Part Maintenance.
My teammates told me to clear my browser's cache & cookies.. I did but to no avail.
Is there anyone who have also experienced this same issue? A help would be appreciated.
There appears to be a problem with your form. You can revert the list to its out of the box form in the list settings page.
If you wish to troubleshoot it, could you post a screen shot of a Fiddler trace for when you're clicking the New button?
Are you team mates are opening the same form? if yes then try on private browser tab.
If no then please share the fidler and consol logs.
I'm newbie in Dialog-flow development. I need to open a hyperlink dynamically in fulfillment(below) of the follow-up intent, which gets triggered when user provides voice input as ‘Yes’.
function confirmation(agent) {
< code to open hyperlink >
}
I have tried Link out suggestion but that doesn't seem to be working.
Please help!
You cannot trigger a hyperlink for Actions.
Alternatively, you could use a rich response like a browsing carousel: https://developers.google.com/actions/assistant/responses#browsing_carousel
This will allow the user to click on a card to launch to a web site.
I have created a site workflow, now I need to trigger this manually when a button in Content Editor Web Part(CEWP) is clicked. How can I trigger it from a CEWP?
Thanks.
You cant directly start Workflows from Javascript ( inside CEWP ) using 2010 client object model. But you can always call a web service:
https://www.nothingbutsharepoint.com/sites/eusp/Pages/4-clicks-or-1-using-jquery-to-start-a-sharepoint-workflow.aspx
or use spservices
http://spservices.codeplex.com/wikipage?title=StartWorkflow&referringTitle=Workflow
I didnt find easy way of triggering site workflow from CEWP(using javascript) so i made a custom list to get updated with required parameter on click of the CEWP button( http://ishaalan.wordpress.com/2010/05/23/adding-an-item-to-a-sharepoint-list-using-javascript/ ). And made list worflow associate with that list to get triggered when a new item was added.It solved my problem.Thanks #dotsa for reply.
This could help:
http://techtrainingnotes.blogspot.ch/2015/10/sharepoint-launch-site-workflow-from.html
It explains how to attachworkflow to any button.
I have a problem when I am trying to add my application to one of my pages. Earlier there has been an option in the left sidebar which simply says view profile application and then you could choose "Add to my page". Now that option is gone and instead there is just an option that says "view application timeline" or something like that. I cannot find how to add my applications to my different pages.
Anyone who have any idea how to solve this problem?
(I'm from Sweden, which explains my bad english)
Thank you!
The short version:
Enter this URL into your browser. Remember to replace YOUR_APP_ID first. There's currently no way to add an application just by clicking a link like before... :/
http://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&redirect_uri=http://www.facebook.com
Please see https://developers.facebook.com/blog/post/611/
This explains the recent changes to how Apps are associated with Pages and shows both how to create a community page and link it to an app, and how to use the new 'add to page' dialog
You can also add apps to a page via the API, see https://developers.facebook.com/docs/reference/api/page/#tabs
try my "fix" # http://admine.eu/addapp.html
here is part of the source and actually all you need:
window.open(
"http://www.facebook.com/dialog/pagetab?app_id=" +
document.getElementById("appid").value +
"&next=" +
document.getElementById("appurl").value,
"PageTab","width=1000,height=300"
)
+document.getElementById("appid") is the id of your app
+document.getElementById("appurl") is the canvas or tab URL of your app
I want to know how you guys deal with back button issues in your web applications.
I can not forbid users to click back button on their browser, but when they hit it, the page code doesn't run. So writing in page_load() makes no sense.
I have searched online and found this link: Disabling Back button on the browser. It does not work for me. Any idea?
There is no way to disable the back button. You can try to open your page/form in a new window so there would be nothing to navigate back to
Normally, If I have a critical or lengthy form, I tend to maintain a dirty-flag and if the user starts entering something, the dirty-flag gets set and on save or submit it gets reset. You can use unload/beforeunload javascript event to see if the dirty-flag is set and ask for confirmation.