User Portlet User Portlet

Discussions
Marcelo, You don't need the //InputForm //ToString Luc
Danny, thank you for the quick and very effective response. This got me thinking about the generic way. Clearly, we need some definition of the group, as applied to the representation, in my case: [mcode]d4Group = PermutationGroup[{Cycles[{{1, 3,...
I have been using this programming pattern lately: (use Import instead if Import String if needed...) [mcode]XMLdata = ImportString["......",{"HTML","XMLObject"}]; body = Cases[ XMLdata ,XMLElement["body",_,content_]:>content,Infinity][[1]]; ...
Patrick, You are correct. I was confused by the construct Locator[ Dynamic[p], "x"] for example. I assumed that the graphics code was using the display of the element inside locator to know if the user was clicking on the locator or not. I was trying...
When an image is selected, it would be nice to see the size indicated in the WindowStatusArea,  It shows there is one resize the image, but it would be nice to see it before the resizing starts.
BTW, I am using a Logitech QuickCam Vision Pro for Mac (Black), which is one of the UVC compliant one. SetOptions[ImageCapture, RasterSize -> Automatic, ImageSize -> Automatic]brought things back to normal. It is really slow though... ...
Here is a Manipulate that simulates the look of the thermostat: [mcode]DynamicModule[{innerTicRadius=.4,outerTicRadius =.57,tempAngle,targetTemp,targetTempAngle,lowTemp=9,highTemp=32}, tempAngle[temp_]:= (Pi+Pi/4)(temp-highTemp)/(lowTemp-highTemp)+...
I often copy from the output. For example ExampleData[]and then copy one of the result in the list. I find it impossible to predict (counting the clicks and predicting word separations) if the selection includes the quotes or not. It...
I am interested in using the CellID, but I would need to be able to see it (without doing Ctrl-E..) Is it possible to automatically set the CellLabel or the Tags to the value of the CellID? I have been trying for a while, but no luck. I want to be...
You are all correct, this totally does it! THANK YOU