Running Imacro From Script on Webpage (Not the plugin) - imacros

I am trying to run Imacro on my works intranet. I have installed the Firefox plugin, the IE plugin the Chrome plugin. I have also installed the trail version of Imacro.
Basically what I need to do is to kick off a imacro script from a button click, I do not want the user to have to open the plugin and choose the file from the plugin window. The users WILL have the plugins, but I just want it to kick off from a html button click.
But the problem is all the examples say iimPlay(..) but iimPlay is undefined in all browsers, even after everything is installed (I cant find a imacros.js file to reference)
I want to be able to store the macro (.iim) file inside a directory on the webpage, and then run iimPlay() from a js file stored on the same webpage.
Is that possible?

Related

How can I preview an HTML/CSS file in the Cloud9 IDE?

My EC2 instance home directory has a index.html file. I just want to be able to periodically preview it in a browser/iframe while I'm making changes, using the Cloud9 IDE. Similar to how you can open up an HTML file with Chrome on a PC. How can I accomplish this?
Just got a response for AWS tech support. Pasting it here for future reference too:
Try selecting the index.html file and then from the menu bar choosing Tools, Preview, Preview File index.html. The rendered HTML displays in a preview pane.
For more information, see the AWS Cloud9 User Guide: https://docs.aws.amazon.com/cloud9/latest/user-guide/file-preview.html

Opencart filemanager doesn't work

Opencart 2.0.1.1
Standart Image Manager isn't working.
When I choose some picture, it just opens in the browser, in console I have no errors. Any suggestions?(other functions don't work either, for example reload open image manager without css)
Please someone help)
My js in .tpl doesn't work because my hosting turned on some plugin pagespeed that off scripts in views -_-
Solution:
Add this pagespeed_no_defer="" to script and it will work.

ColdFusion 9.0.1 trouble adding hot fix

I'm trying to add the cumulative hotfix to ColdFusion 9.0.1. The instructions say to click on the 'i' in CFAdministrator and In the "Update File" text box, browse and select chf9010004.jar located under CF901/lib/updates.
The issue seems to be that whatever browser plugin that is being used is no longer supported by the current JRE version. Is there a way to manually add the hotfix without this step requiring to use the Java file browser?
In Safari the Java file uploader plugin says java out-of-date even though I'm running the latest version.
In Chrome a message comes up that says This site uses a plugin JAVA (TM) that will soon be unsupported. The plugin seems to load, but never goes past saying retreiving initial directories
Do not use the Browse Server button, just type the full path to the extracted chf9010004.jar file into the Update File text box then click the Submit Changes button.
The path should be something like:
C:\directory_where_you_extracted_the_zip\CF901\lib\updates\chf9010004.jar

Sitecore menu items not working - javascript errors

So I'm just starting to work in sitecore and for some reason none of menu options are working in Page Editor mode for the site that I'm working on. We pretty much have the sitecore website and add some extra page content (MVC app files) to it. I'm getting a variety of javascript errors.
In content Editor, if I click the Sitecore logo and click on Properties I get
TypeError: contentIframe.dialog is not a function
In page editor if I click on the blue components button I get:
TypeError: i.widget is not a function
I'm guessing maybe it's a conflict between jquery that we're using for this website and whatever Sitecore is using. I think it's 7 - but I can't see it via the menu option :)
That guess could be wrong - it could in fact be a browser issue, but I've ensured Firefox is not blocking popups. It doesn't work in Firefox, IE or Chrome though.
The weird thing is that no one else on the project is having this issue it's only on my computer.
Edit - I've also just tried re-installing (7.2) without any local code changes I still can't click on a page and go to Presentation, Details (Layout) - I get a TypeError: contentIframe.dialog is not a function
Edit 2 - I've noticed that I can use sitecore in the QA environment and the dialogs work fine there. So it's something specific to my local build of the site we have (sitting on top of sitecore). But the dialogs just throw jquery errors when I do stuff locally. I was hoping it would be a browser setting but doesn't look like it.
Edit 3 - What I've tried this morning.
Same thing happens in all browsers (FF, IE, Chrome) and I’ve cleared
my browser cache I can access the QA site and the dialog appears as
expected
Copied across the QA site files, pointed my local Digital
site in IIS to the new folder – dialogs don’t work
Team member tried accessing the site from his machine (pointing to my IP address) and
dialogs work for him
I tried seeing if another local sitecore site dialogs were working – but the menu items for that are opening as new windows (so I’m guessing it’s a sitecore 7.2 feature that they appear as jquery dialogs??)
So after googling for rejected-by-urlscan it turns out there's a program called UrlScan from microsoft that was blocking my dialogs. Uninstalled that and I now have dialogs appearing for sitecore. Very exciting :)
I guess it is a problem with some browsers plugin. Sitecore is sensitive to scripts that are used(different versions of jquery or prototype.js). Plugins can inject scripts to HTML source of pages and it can cause errors.
Try to switch off all plugins at least at one browser and check the results.

Sencha Touch list doesn't load data in browser

I have a really simple Sencha Touch 2.0.1 app made with Sencha Architect 2.0.0: a list of items loaded from a json file online (here).
If I export it to an APK and install it on my droid, it displays perfectly. However if I try it on Chrome or Safari, they say 'Loading...' then display the word 'empty' where the list should be.
I get this error in Firebug: GET http://listtest.webs.com/data.json?_dc=1344620739517&page=1&start=0&limit=25 x 166ms (where that 'x' is circled in red, meaning the request failed I guess). The Response field is blank, even though that's a valid URL.
Here are links to my full code. Thanks for any help you may have.
.xda archive: http://www.mediafire.com/?11ism2o13gkcz27
.zip file: http://www.mediafire.com/?f76by4d445vb6zu
Extra info: I'm using WAMPSERVER 2.2 with default config, and I've had this problem with most of my other apps as well. The CityBars tutorial from Sencha works completely in Chrome, and loads the title bar in Safari but does not load any items to click on.
Even a comment that says "that code worked/didn't for me" would be helpful.
I used a PHP file + JsonP store instead, based on the source code from here.
It works perfectly. No special configs needed, just a default JsonP store with URL set to my new PHP file. For some reason nothing displays when I 'load data' manually, but it works in the browser and that's all that matters.