widgets

Navigate based on combobox widget selection in Captivate 4

In Captivate 4, how can I cause navigation to stop on a slide, then continue based on the user's selection from a combobox widget? That is, if the user selects "A" display an error message, but if he selects "B" advance to the next slide. It should be easy, but in CS4 the variable that the combobox supposedly stores the selection in is...

Is it safe to draw three separate QImages in three separate QThreads?

I have a QMainWindow with three widgets inside that are promoted to a class containing a subclassed QThread. They each draw on a local QImage in their rexpective qthread which is sent with a signal once its drawn and then rendered by calling update (mandlebrot example) from the slot. Is this safe or dangerous? They do not share any data...

thoughts on making a widget?

I'm only going to be able to get each site that wants my widget, to copy and paste the code block in once.. So it needs to be really future proof. I've thought about this for a while and this is the widget code i've come up with : <script type="text/javascript" src="http://www.mydomain.com/my-future-proof-widget.js"&gt;&lt;/script&gt;...

What's a good plugin or guide I can use to create javascript widgets from a Rails App?

I've been looking around for a while now and the best guide I've seen so far is Dr Nic's DIY widgets how to (here). I haven't been able to make something like this work: Assuming this is my widget code: <script src="http://mysite/nomnoms.js"&gt; </script> And my nomnoms controller looks like (assume that the list partial exists and...

iframe widget: know which domains are iframing the canvas?

If i have a php generated widget canvas and site's using the widget iframe it with $_GET parameters, is there anyway to get the domain that's making the request to my canvas page (javascript/php?)? ie - stop people using my widget that don't have permission... ...

How to build a widget for my website

Hey guys I'm very new to the whole programming - so far I only have experience with building websites, database etc. I currently have a website where users can share their online purchases. I want to build a widget that other websites can integrate on their site. The widget will show the recent purchases entered on my website and User...

Android - Transforming widgets within transformed widgets and the resulting usability issues.

Hello. I'm new to Android application development and I'm currently experimenting with various UI ideas. In the image below, you can see a vertically scrolling list of horizontally scrolling galleries (and also textviews as you can see). I'm also doing some matrix and camera transformations which I will come to in a minute. For the b...

Making widgets for websites

Can anyone suggest some open source api's and methods to make widgets that can be embedded on company websites. I have heard about yahoo api's but i do not find it properly documented. ...

Tkinter Spinbox Widget

How do I do a command that will set the default value on a Tkinter spinbox widget? For some reason they didn't give it the attribute .set() ...

Android Analog Clock - How to add more clocks in one widget

Hello, I successfully compiled an android analog clock, but now i want to include more clocks in the same application so a user can install one app but see 2-3 different clock widgets on their phone. I have searched the internet but the tutorials do not include any examples. Thanks. ...

Give my android app a widget option

My users are asking me to make one of my apps into a widget. Is there a way to ask if they want a widget in app and then add the widget to their home screen? I am having a tough time finding this on Google. Edit: Is there add a widget option to an existing app or do I have to have to write a whole new program? ...

django dynamic forms with widgets

I am using the tutorial at http://proteus-tech.com/blog/cwt/django-dynamic-form/ for creating dynamic forms. It works perfect for creating the forms, but I would like to use some of the inputs with a Textarea widget. This is the code that is working from the tutorial, without any widgets defined: from django import forms form_config = ...

[Wordpress] Getting widget instance settings

Does anyone know if it's possible to access a widget instance settings from a different function than widget(), update() or form() ? For example, in the widget below I want to get the $args and $instance variables from within my_custom_function(). class test extends WP_Widget{ ... function test(){ ... } function my_custom_...

Domain based security for widgets

The web sites will be register and get an API key to use widgets. For example; Site A is registered as sitea.com for widget. But the main problem is, the widget can not be accessable from siteb.com with API key of sitea.com. Are there any way to implement this? ...

Is it possible copy the contents of multiple widgets simultaneous in Tkinter?

I'm trying to add a feature in python that copies the entire contents of two text widgets. How would one go about that? Pseudo Code: text1.SelectAll() C1 = text1.get(Copy) text2.SelectAll() C2 = text2.get(Copy) Paste('Widget 1:\n\n' + C1 + 'Widget 2:\n\n' + C2 ) ...

How do I dynamically add a Dijit widget to a Dojo form?

I'm trying to add a new FilteringSelect widget dynamically to a preexisting form I made out of declarative tags (on page load). prereqs = 0; function addAnotherPrerequisite(){ var newPreReqCursor = dijit.byId("Prerequisite"+(prereqs-1)).domNode; dojo.create("input",{ id:"prerequisite"+prereqs, jsId:"Prerequisi...

Rich swing radiobutton

Developing a desktop application based on Java + Swing I faced the problem of creating a radio button which instead of text next to it, should have and image or, say, another widget like a spinner. Clicking on the image or the spinner should select also the corresponding radioButton. Is it possible? if so, how? ...

django calendar widget

I want to have a calendar in my application, so that every user can pick a date, and submit a meeting poll. I tried using the Django calendar admin widget, but it doesn't appear on my page. How can i get a calendar for my app? it is easier to use a java script one? Thanks! ...

Why isn't the dropdown arrow drawn for an CMFCMenuButton?

I ran into this issue when trying to add a CMFCMenuButton to an existing MFC application. It worked properly, and even resized the button to accommodate the dropdown arrow. But it didn't draw the dropdown arrow, and when I hovered over the button, I saw the following debug output: > Can't load bitmap: 42b8.GetLastError() = 716 > CMenu...

wireit: visualizing a directed graph with nodes that can contain nested graphs

Problem: There appear to be many tools for visualizing graph structures, but none of the ones I've seen so far seem to have the feature of "nesting". The WireIt library (apparently inspired by Yahoo Pipes) looks very promising, but it seems to lack this concept of nesting. To explain what I am thinking of, consider a Company Org Chart ...