Force redraw of TextField

Hi,
made a prototype which contains some TextFields. If I added text in textfield 0 the cursor jumps automatically to textfield 1 and so no. Problem is now, that sometimes the entered letter in a textfield is not displayed. The text was set to the textfield correctly, but the textfield shows only a white area. If the textfield gets the cursor, the content is displayed. Looks like a refresh problem? How can I force the redraw of a textfield?
Regards
Oliver
Edited by: opfl on 30.07.2012 06:12

Have to explain my use case in more detail. I do not use scenebuilder for this. My aim is to create a textfield on which I can style each character. The standard textfield does not support this and the HTMLEditor or WebView I have to deal with the html stuff and the text gets mixed up with html and content.
So I wrote a little prototype....a Region Contains a HBox in which I create TextFields. One text field for earch character. Now I have to implement some behaviour like arrow keys, delete...
It works so far, but randomly there are some text fields which are displaying not the character. The text field gets updated when I set the cursor in it.
But I have observed something with the visually empty text fields. There are some pixels on the left side of the text field. So I suggest that the text field show the right end of the content. E. g. there is "d" in the field....in the case that I see nothing, the zone after the d is shown. If I select the content of the text field, the text field view show the d correctly. I have no idea to say the text field "show me the 1st position of the string". This would be sufficient because in my case there is only 1 character inside the field.

Similar Messages

  • Jeditorpane - Force redraw of views by the editorkit

    Hi,
    I've been working on creating a Editor application and as part of adding one feature, I have subclassed paragraphview and made some changes to it. Now, I would like to instruct my custom editor kit to recreate the views. But it doesn't want to even if I call repaint/revalidate after my change. Even though the views get created if I alter a bound property of the JEditorpane(kit), this results in a fairly noticeable change in the way the document is rendered in the editorpane. Is there a less obvious way of forcing the editorkit to redraw.
    Your help is appreciated.
    cheers,
    vidyut

    vidyut,
    Did you ever get a solution to this problem? I am having the exact same problem. I have come up with a kludge fix for it, but it only affects the portion of the editor that is visible in the viewport.
    What I'm doing is increasing the width of the Frame containing the JEditorPane by 1 pixel, which forces a redraw, then reducing the width by 1 pixel, forcing another redraw back to its original size.
    For example:
    myEditorFrame.setSize(myEditorFrame.getWidth() + 1, myEditorFrame.getHeight()); //change size to force redraw
    myEditorFrame.setSize(myEditorFrame.getWidth() - 1, myEditorFrame.getHeight()); // change size back.
    If you've found a better solution, please let me know.
    Message was edited by: johngberg
    johngberg

  • Force redraw before background processes start?

    I am working on adding images to an HBox. After the user chooses the images from their hard drive, they are resized, JPEG-encoded then uploaded to the server.
    The problem is that the selected images don't show up in their Image controls in my HBox until several seconds into the process.  I want them to show immediately so the user knows it worked, and they can keep going while the app runs the background processes.
    I have tried several things, including placing event listeners for when the Image is added to the HBox:
    hboxThumbnails.addEventListener(ChildExistenceChangedEvent.CHILD_ADD,updateHBox);
    In the listener I have tried invalidateDisplayList, validateNow and invalidateProperties.  I have also tried calling these functions in other locations in the code prior to it starting the background processing code.
    None of my attempts work. Typically the images show up in the HBox about halfway through the uploading process. (5-20 seconds depending on number of images selected)
    I have had other instances where I need to force a redraw/refresh of a certain component while code is running, and I always face a similar problem.  Is there any way to prioritize a redraw?
    Thanks.
    Paul

    HuckleSmothered wrote:When I run a command in the terminal that I want to have in the background, it still shows some output. I can still hit ctrl-L to get a command line I can type into, but if something happens with the previous background process, it will still show up in the terminal. This makes it difficult to type and use this terminal window any longer. Very frustrating.
    What kind of output is shown - errors, warnings?
    HuckleSmothered wrote:I've noticed that this also happens when booting up. The daemons start but I'll have a login prompt at the command line before the daemons state if they have started. Hence, I have to type my login after the text for this section of startup script. Very odd.
    I've seen another thread with this problem, I'll thy to find it.
    Edit: Here it is, see the screenshot: https://bbs.archlinux.org/viewtopic.php?id=129306 No solution yet.
    Last edited by karol (2011-11-06 16:31:09)

  • Force redraw of waveforms?

    any way to force STP to redraw waveforms? I have a long file that has an incorrect drawing of its waveform. It's drawn as a straight line or block, making it difficult to edit.
    I can only see the correct waveform if I zoom all the way in. Any thoughts?

    I had this problem too, and then I figured it out when looking at your post. Close Soundtrack Pro, and then rename the audio file that has an inaccurate waveform. Open Soundtrack Pro, and then open the renamed file. It should force the program to make a new waveform. Worked for me!

  • Redraw a TextField during an addActionListener's execution

    I'm new to swing, but what I have is a JFrame which contains 4 buttons named A,B,C and D (original I known) and 1 JTextField T
    I have the main code:
    JFrame f = new JFrame("ContentServer 7.02 Jumpstart Kit");
    <some setup code for teh buttons>
    JTextField tf2 = new JTextField("", 20);
    tf2.setText("Jumpstart Kit Idle");
    f.add(tf2);
    DisplayTextStatus al = new DisplayTextStatus(tf2);
    buttonA.addActionListener(al);
    buttonB.addActionListener(al);
    buttonC.addActionListener(al);
    buttonD.addActionListener(al);
    I have an action listener which works for all the buttons that looks like:
    class DisplayTextStatus implements ActionListener {
    private JTextField tf;
    public DisplayTextStatus(JTextField tf) {
    this.tf = tf;
    so the JTextField is passed into the actionhandler, when the event finishes the JTextField gets updated by:
    tf.setBackground (Color.gray);
    tf.setText("Kit Newly Configured");
    However the the code actually contains 2 updates to the TextField
    <random code>
    tf.setBackground (Color.red);
    tf.setText("In progress");
    <random code which takes about 5 minutes>
    tf.setBackground (Color.gray);
    tf.setText("Kit Newly Configured");
    <end of event>
    The middle update to the JTextField is not taken, as it appears that the JFRAME is only updated when the action finishes, I need to update this before the action completes . How is this done?
    Thanks,
    ERIC

    Hi,
    The important thing to remember about Swing is that it does its painting on the same thread as events are handled on (the Event Dispatch Thread or EDT). In your button event handler you configure the text field, do 5 minutes worth of work, then configure the text field again. The updates to text field are queued up on the EDT and thus will take place after the event handler is done, which is after your 5 minutes of work is completed.
    To keep your UI responsive you need to keep your heavy processing off the EDT. Search for SwingWorker, read the API for JProgressBar, and look here:
    http://java.sun.com/docs/books/tutorial/uiswing/components/progress.html
    Paul
    p.s. use the code tags around your source code when posting. And offer up some Dukes too :)

  • TileList redraw bug?

    Hi folks,
    Is there any known bug with the TileList component?
    Basically, I display thumbnails in the TileList component
    with custom itemRenderer and It seems like after updating
    ArrayCollection with new values, it receives values OK, but wont
    update the actual images.
    Thank you in advance,
    Alex

    After digging more into code, I've found, that my
    itemRenderer component have been loading images on "initialize"
    event once, then when ArrayCollection changes, there is no
    "initialize" event happening anymore, that's why images are not
    updating, so is there any way I could add event listener on
    TileList or itemRenderer to trigger initialize event once more or
    force redraw it after ArrayCollection changed?
    =========== itemRenderer component ================
    <mx:Canvas
    initialize="init()">
    <mx:Script>
    <![CDATA[
    private function init():void{
    var request:URLRequest = new URLRequest(
    'assets/gallery/small/'+data.filename+'.jpg' );
    var loader:Loader = new Loader();
    loader.contentLoaderInfo.addEventListener( Event.COMPLETE,
    cropImage );
    loader.load( request );
    private function cropImage(event : Event):void{
    ....croping image here and loading into x_img.source.....
    </mx:Script>
    <mx:Image id="x_img" x="5" y="3"/>
    </mx:Canvas>
    Thanks,
    Alex

  • After moving and resizing control, some controls don't redraw properly as the cursor passes over them.

    I have a top-level VI with three panes (two splitters).  One of the panes contains nested tab controls.  One of the tab pages contains six XY-graphs, a table and some decorations.
    I use a subVI to resize and relocate the tabs and contained controls.  All this is working fine, and everything looks fine after the resizing is complete.
    The problem is when the cursor passes over certain controls (the chart legends and the table column headers for example), they redraw with gray boxes.  The problem only occurs after enlarging the window from its minimum size.  It goes away if the window is resized back down to minimum.
    Anything that causes the window to redraw, like another resize or minimize/restore, properly refreshes the screen.
    Has anyone seen this problem, and have a workaround?
    The problem exists in development environment or built in LV 9.01 or LV 2010.
    Thanks!
    Matt Dennie
    Attachments:
    Resize Redraw Problem.zip ‏125 KB
    Resize Redraw Problem.JPG ‏210 KB

    Thanks again for taking a look at my problem.
    force redraw - This is apparently only available in LV2010.  I did give at a try, but it did not prevent the problem, nor did it correct the problem once the gray boxes appeared.
    disable updates (on a graph) - This apparently only applies to 3-D graphs, which is not what I am using in this case.
    disable front panel updates - I tried disabling updates before moving/resizing the front panel controls, then re-enabling updates afterwards.  The problem is exactly the same as before.  Once the move/resize is complete, passing the mouse over the table column headers or the graph plot legend results in the gray boxes.
    I would appreciate any other suggestions you may have. 
    Again... the problem is not that the moving and resizing don't work.  They work fine.  But once the resizing is complete, passing the mouse over the legend or table column headers causes gray boxes to appear.
    Thanks!
    -- Matt

  • Blank Screen after Screen Saver

    I have a MacBook Pro with an external VGA monitor connected - desktop not shared (i.e. different desktop regions on both screens).
    All is fine until the screen saver kicks in. When I wake the machine up again, only the external monitor shows an image - the laptop screen remains blank.
    If I use Screen Sharing from another Mac, I can see what is on the laptop screen - and interact with all the applications there exactly as expected - but the screen remains stubbornly blank.
    Is there a way to force redrawing of the screen/nudge the Mac to start using the laptop screen again (or better still a fix to stop the problem happening in the first place?)

    To be more specific - I think it's when the power settings kick in rather than the screen saver - I haven't explicitly changed any screen saver or power settings from the default.
    The Mac sits there for a good while with both the laptop screen and external screen on. The laptop screen dims after a while but still has a complete display. Then after a further period the laptop screen goes black/off but the external screen remains on. After this I cannot get the laptop screen back without a reboot (achieved through screen sharing from another Mac to avoid a hard boot and losing open documents).

  • Need some help on AVDocClose

    I got an exception " Unhandled exception at 0x77a515de in Acrobat.exe: 0xC0000005: Access violation" everytime when I call AVDocClose(avDoc, true) in a customized Plugin. So I tried the following:
    Downloaded sdk100-v1, in the sample "Stamper": changed "ADBE:Stamper" in "Stamper_K = ASAtomFromString("ADBE:Stamper")" (StamperInit.cpp --> GetExtensionName) to something else so when the user click on the Stamper menuItem or Stamper tool button,  the method "ActivateStamperTool" gets called. Next, I changed this method to something like this:
    static ACCB1 void ACCB2 ActivateStamperTool (void *clientData)
          char* pdfFilePath;
          std::string tempPath = getenv("TEMP");
          tempPath.append("\\fv.pdf");
          pdfFilePath = &tempPath[0]; 
          AVDoc avDoc = AVAppGetActiveDoc();
          if(avDoc==NULL) {
                // if no doc is loaded, make a message.
                AVAlertNote("There is no PDF document loaded in Acrobat.");
                return;
          DURING
                if(_access(pdfFilePath, 0) != -1)
                      DeleteFile(pdfFilePath);
                PDDoc myPDDoc = AVDocGetPDDoc (avDoc);
                PDDocSave(myPDDoc, PDSaveFull,                          
                ASPathFromPlatformPath(pdfFilePath), NULL, NULL, NULL);
                AVDocClose(avDoc, true);
                AVAlertNote("PDF is closed.");
          HANDLER
                char  buf[256], errmsg[256];
                sprintf(buf,  "Error %d: %s", ErrGetCode(ERRORCODE),       
                ASGetErrorString( ERRORCODE, errmsg,  sizeof (errmsg) ) );
                AVAlertNote(buf);
          END_HANDLER
          //AVAppSetActiveTool (&stamperTool, true);
          // Force redraw
          //RedrawAllVisibleAnnots();
    when I clicked on the Stamper menu item, the above method worked perfectly. It saved the active pdf file into the user's local temp folder and closed it with no problem. But if I click on the Stamper tool button, it did save the pdf into the local temp folder, closed the active document and displayed the "PDF is closed." message box. The crash came after I  closed this message box.
    The debug output is:
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Acrobat.exe'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\ntdll.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\kernel32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\KernelBase.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\user32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\gdi32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\lpk.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\usp10.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msvcrt.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\advapi32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\sechost.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\rpcrt4.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\sspicli.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\cryptbase.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\winsxs\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebc b7eb57\msvcr90.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\imm32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msctf.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\nvinit.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\_etoured.dll', No symbols loaded.
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\Nvd3d9wrap.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\setupapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\cfgmgr32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\oleaut32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\ole32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\devobj.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\nvdxgiwrap.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_ none_41e6975e2bd6f2b2\comctl32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\shlwapi.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Acrobat.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\AGM.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\winsxs\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebc b7eb57\msvcp90.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\version.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\CoolType.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\shell32.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\BIB.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\ACE.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\uxtheme.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\dwmapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\profapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\cryptsp.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\rsaenh.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\RpcRtRemote.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\Stamper.api', Symbols loaded.
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\weblink.api'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\ws2_32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\nsi.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\EScript.api'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\clbcatq.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\WebPDF.api'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msxml6.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\propsys.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\ntmarta.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\Wldap32.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\BIBUtils.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\sqlite.dll', Binary was not built with debug information.
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\amtlib.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\amtservices.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\IPHLPAPI.DLL'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\winnsi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\winhttp.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\webio.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\adobe_caps.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\asneu.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\AdobeXMP.dll', Binary was not built with debug information.
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\PDDom.api'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\SPPlugins\ADMPlugin.apl'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msimg32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\oleacc.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msftedit.dll'
    The thread 'Win32 Thread' (0x240) has exited with code 0 (0x0).
    Unhandled exception at 0x77a515de in Acrobat.exe: 0xC0000005: Access violation.
    The program '[1784] Acrobat.exe: Native' has exited with code 0 (0x0).
    It is kind of weird that the same method called from menu item clicking worked but failed from tool button clicking. The operating system I have is windows 7 professional, the version of the adobe is Adobe  Acrobat X Pro. Could any one here give me some help please. Thanks.

    For this level of support you need to contact our Developer Support team directly.

  • Got a newcomputer and now firefox crashes alot.always on facebook. why?

    i got a new computer and now firefox crashes hourly. I downloaded the latest version of firefox and now i have windows 7. the crashes always happen in facebook. why does this happen on a new computer? the computer is 3 hours old
    == Crash ID(s) ==
    html body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td table fieldset,img address,caption,cite,code,dfn,em,strong,th,var li caption,th h1,h2,h3,h4,h5,h6 q:before,q:after abbr,acronym sup sub input,textarea,select input,textarea,select{*font-size:100%}legend body table pre,code,kbd,samp,tt body #ft #doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7 #doc2 #doc3 #doc4 .yui-b .yui-b{_position:static}#yui-main .yui-b #yui-main .yui-t1 #yui-main,.yui-t2 #yui-main,.yui-t3 #yui-main .yui-t4 #yui-main,.yui-t5 #yui-main,.yui-t6 #yui-main .yui-t1 .yui-b .yui-t1 #yui-main .yui-b .yui-t2 .yui-b .yui-t2 #yui-main .yui-b .yui-t3 .yui-b .yui-t3 #yui-main .yui-b .yui-t4 .yui-b .yui-t4 #yui-main .yui-b .yui-t5 .yui-b .yui-t5 #yui-main .yui-b .yui-t6 .yui-b .yui-t6 #yui-main .yui-b .yui-t7 #yui-main .yui-b #yui-main .yui-b .yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u .yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u .yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first .yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf .yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u .yui-gb .yui-u{*margin-left:1.9%;*width:31.9%}.yui-gc div.first,.yui-gd .yui-u .yui-gd div.first .yui-ge div.first,.yui-gf .yui-u .yui-ge .yui-u,.yui-gf div.first .yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first .yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u .yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%}.yui-g .yui-gc div.first,.yui-gd .yui-g .yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%}.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0}.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%}.yui-g .yui-gb .yui-u{_margin-left:1.0%}.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%}.yui-gb .yui-gd div.first{*width:31%;_width:29.5%}.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u .yui-gb .yui-gc div.first .yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u .yui-gb .yui-gb .yui-u{_margin-left:.7%}.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0}.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0}s .yui-gb .yui-gd div.first .yui-g .yui-gd div.first{_width:29.9%}.yui-ge .yui-g .yui-gf .yui-g .yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u .yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first .yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%}.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%}.yui-ge div.first .yui-gd .yui-u .yui-ge div.first .yui-gd div.first #bd:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after #bd,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf .yui-overlay,.yui-panel-container .yui-panel-container form .mask .mask.block-scrollbars .masked select,.drag select,.hide-select select{_visibility:hidden}.yui-panel-container select{_visibility:inherit}.hide-scrollbars,.hide-scrollbars * .hide-scrollbars select .show-scrollbars .yui-panel-container.show-scrollbars,.yui-tt.show-scrollbars .yui-panel-container.show-scrollbars .underlay,.yui-tt.show-scrollbars .yui-tt-shadow .yui-panel-container.shadow .underlay.yui-force-redraw .yui-effect-fade .underlay .yui-tt-shadow .yui-skin-sam .mask .yui-skin-sam .yui-panel-container .yui-skin-sam .yui-panel .yui-skin-sam .yui-panel .hd,.yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft{*zoom:1;*position:relative;border-style:solid;border-width:0 1px;border-color:#808080;margin:0 -1px}.yui-skin-sam .yui-panel .hd .yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft .yui-skin-sam .yui-panel .hd .yui-skin-sam .yui-panel .bd .yui-skin-sam .yui-panel .ft .yui-skin-sam .yui-panel-container.focused .yui-panel .hd{}.yui-skin-sam .container-close .yui-skin-sam .yui-panel-container .underlay .yui-skin-sam .yui-panel-container.matte .yui-skin-sam .yui-panel-container.shadow{_padding:2px 5px 0 3px}.yui-skin-sam .yui-panel-container.shadow .underlay .yui-skin-sam .yui-dialog .ft .yui-skin-sam .yui-dialog .ft .button-group .yui-skin-sam .yui-dialog .ft button.default .yui-skin-sam .yui-dialog .ft span.default .yui-skin-sam .yui-dialog .ft span.default .first-child .yui-skin-sam .yui-dialog .ft span.default button .yui-skin-sam .yui-simple-dialog .bd .yui-icon .yui-skin-sam .yui-simple-dialog .bd span.blckicon .yui-skin-sam .yui-simple-dialog .bd span.alrticon .yui-skin-sam .yui-simple-dialog .bd span.hlpicon .yui-skin-sam .yui-simple-dialog .bd span.infoicon .yui-skin-sam .yui-simple-dialog .bd span.warnicon .yui-skin-sam .yui-simple-dialog .bd span.tipicon .yui-skin-sam .yui-tt .bd .yui-skin-sam .yui-tt.show-scrollbars .bd .yui-skin-sam .yui-tt-shadow .yui-skin-sam .yui-tt-shadow-visible .yuimenubar .yuimenu .yuimenu,.yuimenubar .yuimenu .yuimenubar li,.yuimenu li .yuimenubar ul,.yuimenu ul,.yuimenubar li,.yuimenu li,.yuimenu h6,.yuimenubar h6 .yuimenuitemlabel,.yuimenubaritemlabel .yuimenubar ul{*zoom:1}.yuimenubar .yuimenu ul{*zoom:normal}.yuimenubar>.bd>ul:after .yuimenubaritem .yuimenubaritemlabel,.yuimenuitemlabel .yuimenuitemlabel .helptext .yui-menu-shadow .yui-menu-shadow-visible .hide-scrollbars * .hide-scrollbars select .yuimenu.show-scrollbars,.yuimenubar.show-scrollbars .yuimenu.hide-scrollbars .yui-menu-shadow,.yuimenubar.hide-scrollbars .yui-menu-shadow .yuimenu.show-scrollbars .yui-menu-shadow,.yuimenubar.show-scrollbars .yui-menu-shadow .yui-skin-sam .yuimenubar .yui-skin-sam .yuimenubarnav .yuimenubaritem .yui-skin-sam .yuimenubaritemlabel .yui-skin-sam .yuimenubarnav .yuimenubaritemlabel .yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu .yui-skin-sam .yuimenubaritem-selected .yui-skin-sam .yuimenubaritemlabel-selected .yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-selected .yui-skin-sam .yuimenubaritemlabel-disabled .yui-skin-sam .yuimenubarnav .yuimenubaritemlabel-hassubmenu-disabled .yui-skin-sam .yuimenu .yui-skin-sam .yuimenubar .yuimenu,.yui-skin-sam .yuimenu .yuimenu .yui-skin-sam .yuimenu .bd .yui-skin-sam .yuimenu ul .yui-skin-sam .yuimenu ul.first-of-type .yui-skin-sam .yuimenu h6 .yui-skin-sam .yuimenu ul.hastitle,.yui-skin-sam .yuimenu h6.first-of-type .yui-skin-sam .yuimenu .yui-menu-body-scrolled .yui-skin-sam .yuimenu .topscrollbar,.yui-skin-sam .yuimenu .bottomscrollbar .yui-skin-sam .yuimenu .topscrollbar .yui-skin-sam .yuimenu .topscrollbar_disabled .yui-skin-sam .yuimenu .bottomscrollbar .yui-skin-sam .yuimenu .bottomscrollbar_disabled .yui-skin-sam .yuimenuitem{_border-bottom:solid 1px #fff}.yui-skin-sam .yuimenuitemlabel .yui-skin-sam .yuimenuitemlabel .helptext .yui-skin-sam .yuimenuitem-hassubmenu .yui-skin-sam .yuimenuitem-checked .yui-skin-sam .yui-menu-shadow-visible .yui-skin-sam .yuimenuitem-selected .yui-skin-sam .yuimenuitemlabel-disabled .yui-skin-sam .yuimenuitem-hassubmenu-disabled .yui-skin-sam .yuimenuitem-checked-disabled body #nav-access #moz_global_home a #wrap #doc #doc[dir="rtl"] #doc:after .hide #header #header h1 #header h1 a:link, #header h1 a:visited #nav-main #nav-main ul #nav-main ul, #nav-main ul li #nav-main ul #nav-main ul li a, #nav-main ul li span #nav-main ul li a:link, #nav-main ul li a:visited #nav-main ul li span, #nav-main ul li a:hover, #nav-main ul li a:active, #nav-main ul li a.yuimenubaritemlabel-selected #nav-main ul ul, #nav-main ul ul li #nav-main ul ul #nav-main ul li ul li a, #nav-main ul li ul li a:link, #nav-main ul li ul li a:visited, #nav-main ul li ul li span #nav-main ul li ul li a:hover, #nav-main ul li ul li a:active #moz_global_search #moz_global_search #query #moz_global_search #query:focus #moz_global_search #submit #breadcrumbs #breadcrumbs ul #breadcrumbs ul li #breadcrumbs ul li.divider #breadcrumbs span, #breadcrumbs a #breadcrumbs a:hover, #breadcrumbs a:active #footer * html #footer #footer a:link, #footer a:visited #footer a:hover, #footer a:active #footer-contents #footer-contents[dir=rtl] #footer-menu, #footer-menu ul #footer-menu li #footer-menu li ul #footer-menu ul li #footer form, #footer #lang_form #footer #lang_form label #footer #lang_form div #footer #cc-license #footer #cc-license p #footer #cc-license p:first-child #footer #cc-license a #cc-license ul li #footer #footer-links #footer-divider hr #footer-divider #main-feature #main-feature h2 #main-feature p #side-menu #side-menu li #side-menu li.first #side-menu li ul #side-menu li ul li #side-menu h3 #side-menu a:link, #side-menu a:visited #side-menu a.on:link, #side-menu a.on:visited .mini #side-menu a.on:link, .mini #side-menu a.on:visited #side-menu h3 a.on:link, #side-menu h3 a.on:visited #side-menu a:hover, #side-menu a:active #main-content #sidebar #content #tiki-clean h1,h2,h3,h4,h5,h6 li h1, li h2, li h3, li h4, li h5, li h6 h1 h2 h3 h4 h5 h6 strong em :link :visited :link:hover,:visited:hover :link:active,:link:active .feature-contents .feature-contents #dev-server .feature-contents h2 .feature-contents p .searchlogotitle #searchsubmit .content div.showpage div.searchlogo div.searchlogoform .searchlogoform form div.wikitext div.cornerbox .cornerbox h3 .cornerbox a:link, .cornerbox a:visited blockquote div img input,button input[type="submit"],input[type="file"],button,select button:hover select[multiple] select[name="theme"] input[type="checkbox"] input[id="fsearch"] input[id="fsearch"].search-include-advanced a.home-advanced-search #search-try a.home-advanced-search small form ul,ol #mainmenu br #attzone,#comzone #rules-copy-panel #clear .clear div.box h3.box-title .cornerbox h3.box-title .box-title a:link .box-data .box:last-child .box-data #col1 .box-login_box .box-data #col1 .box-login_box .box-data #login-button #col1 .box-login_box .box-title .module .module li .box-data li .box-search .box-title #mod-search #mod-search #fsearch .mod-searchlogoform .mod-searchlogoform form .mod-searchlogotitle div.cbox div.cbox-title div.cbox-data .cbox-data ul .cbox-data ul ul .rbox .rbox-title .rbox-data div.simplebox .highlight .tabmark .tabmark a .tabmark a:active .tabmark a:hover .tabcontent .statuson .statusoff #editwiki a.pagetitle a.pagetitle:hover div.editdate div.editdate a, div.editdate a:hover, div.editdate i div.description #pageid #cachedpage .versionnotice .wikitext .wikitext h1,h2,h3,h4 .wikitext h2 .titlebar .wikitext ol, .posted-text ol .wikitext ul, .posted-text ul .wikitext li, .posted-text li .pre table.wikitable td.wikicell .editdate div#page-bar ul.floatleft ul.floatleft li, ul.floatleft li.button2 .editdate ul.floatleft div.button2,.button3,li.button2 .linkbut{}.wiki-edithelp div.code .codelisting .codecaption div.quoteheader div.quotebody .catblock div#sosnav #sosnav ul, #sosmenu ul #sosnav ul li a, #sosmenu ul li a, #sosmenu ul ul li a #sosnav li, #sosmenu li #sosnav li ul, #sosmenu li ul #sosnav li:hover ul, #sosnav li.sfhover ul, #sosmenu li:hover ul, #sosmenu li.sfhover ul #sosnav ul li:hover ul li a, #sosnav ul li.sfhover ul li a, #sosmenu ul li:hover ul li a, #sosmenu ul li.sfhover ul li a #sosmenu ul li:hover ul li:hover a, #sosmenu ul li.sfhover ul li.sfhover a #sosnav li ul li a:hover, #sosnav ul ul li:hover a, #sosnav ul li.sfhover a, #sosnav ul ul li.sfhover a, #sosmenu li ul li a:hover, #sosmenu ul ul li:hover a, #sosmenu ul li.sfhover a, #sosmenu ul ul li.sfhover a div.tocnav #tocnavicons #tocnavaddpage #tocnavlinks #tocnavlinks a ul.toc ul.toc * .clearfix:after .floatlist .floatlist li div.article div.articletopline div.articletitle span.titlea div.articlesubtitle div.articleheading div.articleheadingtext img.topicimage,img.articleimagenofloat,img.articleimage img.articleimagefloat img.articleimage div.articletrailer .wikitopline div.articlebody div.articlesource div.blogheading div.blogtitle div.blogdesc div.bloginfo div.blogtools .blogpost div.posthead .postinfo span.posthead div.posthead h2 div.post div.postbody div.postfooter #post_header .author, #post_header .posted-text #post_header .author #post_header .posted-text body.tiki_forums table.normal div.forumtoolbar td.threadsevenl td.threadsevenr td.threadsoddl td.threadsoddr table.threads td.threadseparator td.forumtoolbar .toolbarlink .forumvotelink table.commentinfo #comzone #comzoneopen span.commentstitle h2.thread-title .postbody-title small #thread-actions .post.odd, .post.odd .postfooter,td.odd .post, .post .postfooter .post .top_post .post .post .author .post .author_info .icons .actions .post .author_post_info_on .post .author_post_info_by .post .author_post_info_by a i .author_posts .commentStyle_headers .author_info .post .content .actions .post .content .actions a .post .postbody .content .post .posted-text, .post .author .post .posted-text .post .posted-text p, .post_preview p .post .posted-text h3 .post .postbody .attachments .post .postbody .attachments img .post .postfooter .actions, .post .postfooter .status .post .postfooter .post .inner>.postfooter .post .contribution .post .avatar .post .avatar img #editpost2 #commentshelp #commentshelp h3 #commentshelp p #commentshelp p small .post-comment-actions .post-comment-actions #watch_thread .post-comment-actions-label .post-comment-actions img .post-comment-yourname .post-comment-setthreadwatch .post_preview .post-new-thread-notice #time_control #time_control small .subcomment div.browsegallery div#browse_image div.showimage td.oddthumb td.eventhumb td.eventhumb img img.athumb #forumpost #forumpostopen #forumpostopen h2 div.dirsite span.dirsitetrail span.dirsitecats table.admin tr td div#page-bar .tabmark .tabmark a .tabmark a:active .tabmark a:hover .tabcontent span#tab1 span#tab2 span#tab3 #content1,#content2,#content3 #content1 #content2 #content3 table.admin div#content1 div.tabcontent div.cbox kbd span.mnu span.pth span.prf span.filename span.button .edit-note .versions .versionav .versionav .button2 .versionav .button2 .linkbut .versionav .highlight .versiontitle div.split .morcego_embedded div#ajaxLoading .tellafriend .highlight_word_0 .highlight_word_1 .highlight_word_2 .highlight_word_3 .highlight_word_4 .navbar .post .postbody .post .postbody-title .post .postbody-title .checkbox .post .postbody-title .title .post .author_post_info .post .author_info .icons .post .author_info .icons .actions .post .postbody .content .post .postbody .attachments .post .postbody .attachments img .post .postfooter .actions, .post .postfooter .status .post .postfooter .status .post .inner>.postfooter .post .contribution .sub_comment .sub_comment_area .forum_actions .actions #comments-search .forum_actions .actions .action .forum_actions .headers .forum_actions .headers .title .forum_actions .headers .infos .thread_pagination .nb_replies .post_preview .post .postbody .signature .mini .openid_url #newtofirefox,#frontmenu #mostpopular .morearticles,.tbsupport .toclevel-1 .toclevel-2 .toclevel-3 .toclevel-4 .toclevel-5 .toclevel-6 .wikitext .wikitext h2 .wikitext>h2:first-child .wikitext h3, .wikitext h4, .wikitext h5 .wikitext h3 a,:link a:visited,:visited a:hover,:link:hover,:visited:hover a:active,:link:active,:link:active #c1c2 #c1c2 #wrapper #c1c2 #wrapper #col1.marginleft #c1c2 #wrapper #col1.marginright{}#col1 .content .marginright #col1 .marginleft .marginright #col1 .marginleft .marginright .showpage .marginright .marginleft .contentwrapper #c1c2 #wrapper #col1 .contentwrapper #c1c2 #col2 #c1c2 #col2 .content #col3 #col3 .content #col3 .content .title #col3 .content * .footerbgtrap .topbar body.mini,#wrap.mini .mini .topbar .botbar #editpageform #editpageform .formerror #c1c2 h1 #c1c2 .titleetc .bodybox .bodybox-inner .actionsbox .action-title .actionsbox ul .actionsbox li .actionsbox li img .actions a:link, .actions a:visited .actions a:hover, .actions a:active .showfor_title .showfor_browser_label ul.showfor_nav ul.showfor_nav li ul.showfor_nav li:before ul.showfor_nav li:first-child:before .showfor_button .showfor_button_on .showfor_label div.showfor_label .showfor_footer .showfor_footer_text .titlebar .wikitext pre div.button2,.button3 .linkbut .linkbut:visited .toc .clearfix2:before #centercolumn .freetaglist a.freetag a.freetag:hover a.freetag_1 a.freetag_1:hover a.freetag_2 a.freetag_2:hover a.freetag_3 a.freetag_3:hover a.freetag_4 a.freetag_4:hover a.freetag_5 a.freetag_5:hover a.freetag_6 a.freetag_6:hover a.freetag_7 a.freetag_7:hover div.freetags_page{}input [name=tag] input [id="tagBox"]:hover table.freetagstable td.freetagstable div.advancedsearchform div.resultspagelinks a.neatlink .current_page a.neatlink.active a.blacklink,a.blacklink:hover div.resultspagelinkstop{}div.searchpage div.searchtitle div.searchtitle span.resultsinfo div.oneresult a.searchresultlink a.blacklink div.searchresults a.neatlink label.polllabel div.categoryinset .categoryinset a div.split .morcego_embedded div#ajaxLoading .tellafriend .highlight_word_0 .highlight_word_1 .highlight_word_2 .highlight_word_3 .highlight_word_4 .navbar .openid_url .current_page .wikitext p div.pollarea div#translation_critical_alert div.thread-solution div.searchform form #advanced label, div.searchform form #advanced select div.searchform form #advanced #advanced-type label, div.searchform form #advanced #advanced-type input div.searchform form #advanced #advanced-type table#author_date_solution td#author_mark_as_solution form tr input form tr td form#editpageform tr form#editpageform tr table tr form table.normal td.heading form table.normal button#login-button .top-notify,.bottom-notify .pagelist-wrapper .pagelist-table .pagelist-title .pagelist-table tr .pagelist-table td .pagelist-table .odd .pagelist-status .pagelist-needs-review,.pagelist-draft,.pagelist-needs-updating .pagelist-translated .pagelist-needs-translation,.pagelist-unknown .pagelist-page .listprogress-progress .listprogress-progress span .listprogress-progress em .listprogress-status #mod-freetags_current input[name=tags] select#switch-language .process-running .top-notify p .screencast-thumbnail .screencast-input-wrapper .screencast-input-label .screencast-player-close .screencast-player-msg .screencast-player-msg:hover .screencast-no-alt .screencast-no-preview .screencast-thumb-text .screencast-thumb-text:hover .screencast-no-preview>.screencast-thumb-text .screencast-no-preview-text #screencast-loader,#picture-loader #screencast-upload-now #screencast-add-another #screencast-player-overlay #screencast-player-window .screencast-content .screencast-content-msg .checkbox-scroll .item-list .protect-email div.search-suggestion span.corrected div.search-refine input.search-refine-query input.search-refine-submit input.search-refine-submit:hover .show-search-tabs input.search-empty-query input.search-empty-submit .content .cbox .cbox-data .normal #editpost2 .findtitle #tiki-listpages-content .normal td .feedbackbox .feedbackbox p .feedbackbox textarea #feedback-options #feedback-options>.feedback-info:first-child .feedback-controls input[type=button] , .feedback-controls input[type=submit] .feedback-controls .feedback-controls img .feedback-controls-complex .feedback-controls-complex input .diffadded .diffdeleted .diffchar .diffbody-content,.diffadded-content,.diffdeleted-content .toclevel-1 .toclevel-2 .toclevel-3 .toclevel-4 .toclevel-5 .toclevel-6 dl dl dd #editpageform table.normal td{}#editpageform .uploaded_images{}#editpageform .uploaded_images li #editpageform .uploaded_images li a #editpageform .uploaded_images li a:hover #editpageform .uploaded_images li a img #editpageform select[name="olpoll"],select[name="poll_template"] .langwatch-select .notif-pad .notif-pad-2 .notif-pad-3 .notif-pad-3 input .notif-row .notif-highlight #col1 div.tocnav
    == Troubleshooting information ==
    adobe is the only extension i have right now
    html body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td table fieldset,img address,caption,cite,code,dfn,em,strong,th,var li caption,th h1,h2,h3,h4,h5,h6 q:before,q:after abbr,acronym sup sub input,textarea,select input,textarea,select{*font-size:100%}legend body table pre,code,kbd,samp,tt body #ft #doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7 #doc2 #doc3 #doc4 .yui-b .yui-b{_position:static}#yui-main .yui-b #yui-main .yui-t1 #yui-main,.yui-t2 #yui-main,.yui-t3 #yui-main .yui-t4 #yui-main,.yui-t5 #yui-main,.yui-t6 #yui-main .yui-t1 .yui-b .yui-t1 #yui-main .yui-b .yui-t2 .yui-b .yui-t2 #yui-main .yui-b .yui-t3 .yui-b .yui-t3 #yui-main .yui-b .yui-t4 .yui-b .yui-t4 #yui-main .yui-b .yui-t5 .yui-b .yui-t5 #yui-main .yui-b .yui-t6 .yui-b .yui-t6 #yui-main .yui-b .yui-t7 #yui-main .yui-b #yui-main .yui-b .yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u .yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u .yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first .yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf .yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u .yui-gb .yui-u{*margin-left:1.9%;*width:31.9%}.yui-gc div.first,.yui-gd .yui-u .yui-gd div.first .yui-ge div.first,.yui-gf .yui-u .yui-ge .yui-u,.yui-gf div.first .yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first .yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u .yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%}.yui-g .yui-gc div.first,.yui-gd .yui-g .yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%}.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0}.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%}.yui-g .yui-gb .yui-u{_margin-left:1.0%}.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%}.yui-gb .yui-gd div.first{*width:31%;_width:29.5%}.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u .yui-gb .yui-gc div.first .yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u .yui-gb .yui-gb .yui-u{_margin-left:.7%}.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0}.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0}s .yui-gb .yui-gd div.first .yui-g .yui-gd div.first{_width:29.9%}.yui-ge .yui-g .yui-gf .yui-g .yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u .yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first .yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%}.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%}.yui-ge div.first .yui-gd .yui-u .yui-ge div.first .yui-gd div.first #bd:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after #bd,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf .yui-overlay,.yui-panel-container .yui-panel-container form .mask .mask.block-scrollbars .masked select,.drag select,.hide-select select{_visibility:hidden}.yui-panel-container select{_visibility:inherit}.hide-scrollbars,.hide-scrollbars * .hide-scrollbars select .show-scrollbars .yui-panel-container.show-scrollbars,.yui-tt.show-scrollbars .yui-panel-container.show-scrollbars .underlay,.yui-tt.show-scrollbars .yui-tt-shadow .yui-panel-container.shadow .underlay.yui-force-redraw .yui-effect-fade .underlay .yui-tt-shadow .yui-skin-sam .mask .yui-skin-sam .yui-panel-container .yui-skin-sam .yui-panel .yui-skin-sam .yui-panel .hd,.yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft{*zoom:1;*position:relative;border-style:solid;border-width:0 1px;border-color:#808080;margin:0 -1px}.yui-skin-sam .yui-panel .hd .yui-skin-sam .yui-panel .bd,.yui-skin-sam .yui-panel .ft .yui-skin-sam .yui-panel .hd .yui-skin-sam .yui-panel .bd .yui-skin-sam .yui-panel .ft .yui-skin-sam .yui-panel-container.focused .yui-panel .hd{}.yui-skin-sam .container-close .yui-skin-sam .yui-panel-container .underlay .yui-skin-sam .yui-panel-container.matte .yui-skin-sam .yui-panel-container.shadow{_padding:2px 5px 0 3px}.yui-skin-sam .yui-panel-container.shadow .underlay .yui-skin-sam .yui-dialog .ft .yui-skin-sam .yui-dialog .ft .button-group .yui-skin-sam .yui-dialog .ft button.default .yui-skin-sam .yui-dialog .ft span.default .yui-skin-sam .yui-dialog .ft span.default .first-child .yui-skin-sam .yui-dialog .ft span.default button .yui-skin-sam .yui-simple-dialog .bd .yui-icon .yui-skin-sam .yui-simple-dialog .bd span.blckicon .yui-skin-sam .yui-simple-dialog .bd span.alrticon .yui-skin-sam .yui-simple-dialog .bd span.hlpicon .yui-skin-sam .yui-simple-dialog .bd span.infoicon .yui-skin-sam .yui-simple-dialog .bd span.warnicon .yui-skin-sam .yui-simple-dialog .bd span.tipicon .yui-skin-sam .yui-tt .bd{position:relative;top:0;left:0;z-index:1;color:#000;padding:2px 5px;border-color:#D4C237 #A6982B #A6982B #A6982B;border-width:1px;border-style:so

    Submitted Crash Reports
    Report ID
    Date Submitted
    bp-6ac76d78-f590-4f9e-8a40-e1b112100617 6/17/2010 6:43 PM
    bp-6fe7f0a5-a815-45e3-b0f9-95ad12100617 6/17/2010 6:41 PM

  • Graph isn't update when Windows is minimezed

    Dear All,
    I'm using Labview 8.2.1.
    I have program where data are displayed on Graph.
    When I Minimize the Window, data fo the graph are not refresh.
    Please see attached file.
    Thanks for your help.
    Solved!
    Go to Solution.
    Attachments:
    Analyse bug graph LV 821.vi ‏13 KB
    Err_Graph.JPG ‏54 KB

    Hello __KB__,
    Use the ForceRedraw method in order to refresh your graph :
    Here the help of this method : Force Redraw Method
    Regards,
    Jérémy C.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Travaux Pratiques d'initiation à LabVIEW et à la mesure
    Du 2 au 23 octobre, partout en France

  • Freehand MXa text pixelated problem

    In Freehand Mxa text that's alng a path or rotated get's scrambled (pixelated) on the Mac.
    I've tried Freehand Mxa on the PC windows XP and there it's not???
    What's causing text to scramble on the mac?
    Are there any solutions to it?
    Daniel Hoogendoorn
    PS
    Freehand Mxa-Snow leopard act's the same

    It's a known issue. See this technote:
    http://kb2.adobe.com/cps/191/tn_19153.html
    My workaround is to put a hairline stroke on the letters while adjusting kerning, baseline shift, etc. The stroke forces redraw of the letters.

  • Failure to draw palette

    After several hours attempting to add a progress palette to my scripts, I've concluded that there is no way to get the palette to completely display. The box is drawn, as is the Cancel button, but the background, static text and progress bar are not show, and the Cancel button is not sensitive to clicks.
    I've tried inserting hide() and show(), insert waits, etc. to no avail. I suspect that the redraw thread isn't even being run while my onClick command function is running.
    Is there a method that will force redraw that I can put in my processing loop? How do I make the palette have focus so the button click will work?
    Is the thread model for scripting documented anywhere?
    Perhaps it would be better for Adobe and its customers if "Extend"Script were open sourced?

    Jack,
    This is a problem with Bridge in that when a script is running full speed, all of the redraws (bridge main window included) are not executed. Eventually the bridge window itself will go white, giving the impression that things have locked up.
    That said, well after I wrote the Import from Camera script (which suffers from this malaise), I figured out a way around this.
    The basic method is to use scheduled tasks. Each iteration of your script will be a separate execution of a scheduled task. You have to give it a 50-100ms or so between iterations to give Bridge a chance to update things.
    Here is a example implementing a background file copy. Hope it helps.
    Since then I've come up with easier implementations. First don't use a recurring task, reschedule the task on each iteration until you're out of iterations. That cleans things up a lot.
    Bob
    Adobe Workflow Scripting
    #target bridge
    if ( BridgeTalk.appName == "bridge" ) {
    var BgFileCopy = {};
    try {
    BgFileCopy.scriptInfo = new ScriptManager.ScriptInfo();
    BgFileCopy.scriptInfo.set( "name", "Background File Copy" );
    BgFileCopy.scriptInfo.set( "author", "Bob Stucky" );
    BgFileCopy.scriptInfo.set( "company", "Adobe Systems, Inc." );
    BgFileCopy.scriptInfo.set( "copyright", "Copyright (c) 2004-2005 Adobe Systems Incorporated. All rights reserved" );
    BgFileCopy.scriptInfo.set( "version", "0.1.1" );
    BgFileCopy.scriptInfo.set( "date", "08-03-2005" );
    BgFileCopy.scriptInfo.set( "website", "http://www.adobe.com" );
    } catch ( e ) {
    // background file copy for scripting
    BgFileCopy._bgProcessRunning = false;
    BgFileCopy._bgTaskId = "";
    BgFileCopy._array = new Array();
    BgFileCopy._cycle = 500;
    BgFileCopy._nextId = 0;
    BgFileCopy._ticks = 0;
    /// method: BgFileCopy.bgProcess()
    /// brief: Execute a background copy cycle
    /// This is a primitive for internal use only. This method is the master process
    BgFileCopy._bgProcess = function( ) {
    try {
    BgFileCopy._ticks++;
    var a = new Array();
    for ( var i = 0; i < BgFileCopy._array.length; i++ ) {
    var copier = BgFileCopy._array[ i ];
    if ( !copier.isEmpty ) {
    copier._executeBackground();
    a.push( copier );
    } else if ( !copier.closeOnEmpty ) {
    a.push( copier );
    BgFileCopy._array = a;
    if ( a.length == 0 ) {
    app.cancelTask( BgFileCopy._bgTaskId );
    BgFileCopy._bgProcessRunning = false;
    } catch ( e ) {
    alert( e );
    // app.document.status = "BG Process: " + BgFileCopy.ticks++;
    BgFileCopy._addBgProcess = function( object ) {
    try {
    BgFileCopy._array.push( object );
    if ( !BgFileCopy._bgProcessRunning ) {
    BgFileCopy._bgTaskId = app.scheduleTask( "BgFileCopy._bgProcess()", BgFileCopy._cycle, true );
    BgFileCopy._bgProcessRunning = true;
    } catch ( e ) {
    alert( e );
    BgFileCopy.factory = function( onComplete, onTick, onError ) {
    var t = new BgFileCopy.FileCopier( BgFileCopy._nextId++, onComplete, onTick, onError );
    BgFileCopy._addBgProcess( t );
    return t;
    BgFileCopy.toString = function(){
    return "[Object BgFileCopy]";
    /// class: BgFileCopy.CopySet
    /// brief: Utility class that links two files, on a copyFrom, one a copyTo file.
    /// During execution, a copier will copy files as a set, "from" one file "to" the other.
    BgFileCopy.CopySet = function( from, to ) {
    this.from = from;
    this.to = to;
    /// toString() everyone should have one
    BgFileCopy.CopySet.prototype.toString = function() {
    return "[Object BgFileCopy.CopySet]";
    /// class: BgFileCopy.CopyError
    /// brief: wrapper object to carry error information back to the calling process
    BgFileCopy.CopyError = function( fileCopier, err, from, to ) {
    this.fileCopier = fileCopier;
    this.error = err;
    this.from = from;
    this.to = to;
    /// class: BgFileCopy.FileCopier
    /// brief: the workhorse class that executes the copy
    /// Do not use the constructor, use the BgFileCopy.factory method to obtain one of these
    /// The FileCopier object will not start executing until you call its execute method
    BgFileCopy.FileCopier = function( id, onComplete, onTick, onError ) {
    this.id = id;
    this.onComplete = onComplete || BgFileCopy.onComplete;
    this.onTick = onTick || BgFileCopy.onTick;
    this.onError = onError || BgFileCopy.onError;
    this.executing = false;
    this.acceptNewFiles = true;
    this.rewindOnError = false;
    this.closeOnEmpty = false;
    this.isEmpty = false;
    this.error = "";
    this.errored = false;
    this.buffer = new FIFOBuffer();
    this.copied = new Array();
    this.fileCount = 0;
    this.current = 0;
    BgFileCopy.FileCopier.prototype.toString = function() {
    return "[Object BgFileCopy.FileCopier]";
    /// method: BgFileCopy.FileCopier.add
    /// brief: adds a CopySet of files to the copy buffer;
    /// throws: an exception if the copier is flagged to not accept new sets of files
    BgFileCopy.FileCopier.prototype.add = function( from, to ) {
    if ( this.acceptNewFiles ) {
    this.buffer.push( new BgFileCopy.CopySet( from, to ) );
    this.isEmpty = false;
    this.fileCount++;
    return true;
    throw "BgFileCopy.FileCopier not accepting new files to copy";
    /// method: BgFileCopier.FileCopier.setRewindOnError /// brief: sets a flag rewind on an error condition
    BgFileCopy.FileCopier.prototype.setRewindOnError = function( boo ) {
    this.rewindOnError = boo;
    /// method: BgFileCopier.FileCopier.rewind
    /// brief: removes all copied files. Use if there is an error condition and you want all the
    /// files copied befor the error to be deleted
    BgFileCopy.FileCopier.prototype.rewind = function() {
    for ( var i = 0; i < this.copied.length; i++ ) {
    this.copied[ i ].remove();
    BgFileCopy.FileCopier.prototype.setCloseOnEmpty = function() {
    this.closeOnEmpty = true;
    this.acceptNewFiles = false;
    /// method: BgFileCopier.FileCopier._copy
    /// brief: The primitive method called by BgFileCopier's master process to execute the copy
    BgFileCopy.FileCopier.prototype._executeBackground = function() {
    var set = this.buffer.pop();
    if ( set != undefined ) {
    if ( this.onTick ) {
    this.onTick( set, ++this.current, this.fileCount );
    if ( set.from.copy( set.to ) ) {
    this.copied.push( set.to );
    return;
    } else {
    this.error = set.from.error;
    this.errored = true;
    if ( this.onError != undefined ) {
    this.onError( new BgFileCopy.CopyError( this, this.error, set.from, set.to ) );
    if ( this.rewindOnError ) {
    this.rewind();
    return;
    } else {
    if ( this.closeOnEmpty ) {
    if ( this.onComplete ) {
    this.onComplete();
    this.isEmpty = true;
    /// method: BgFileCopier.onComplete /// brief: default onComplete handler
    BgFileCopy.onComplete = function() {
    app.document.status = "Copy Complete";
    /// method: BgFileCopier.onTick /// brief: default onTick handler
    BgFileCopy.onTick = function( set, current, fileCount ) {
    app.document.status = "Copying: " + decodeURI( set.from.name ) + " To: " + decodeURI( set.to.name );
    /// method: BgFileCopier.onErr /// brief: default onError handler
    BgFileCopy.onError = function( copyError ) {
    app.document.status = copyError.error;
    // test code, creates a menu in Bridge, sets the onSelect handler.
    // creates a folder /my documents/copyTemp - this is the only place it copies to...
    // open a page with files in Bridge, select the menu
    // it will copy all of the files in that folder, or if you selected a couple
    // it will copy the selected files.
    BgFileCopy.execute = function() {
    try {
    $.level = 1;
    var files = getBridgeFiles();
    var copier = BgFileCopy.factory();
    var toFolder = new Folder( "~/my documents/copyTemp" );
    toFolder = verifyFolder( toFolder, true );
    for ( var i = 0; i < files.length; i++ ) {
    var from = files[ i ];
    var to =

  • [SOLVED] Newsbeuter 2.7 unread highlight focus font color.

    Hi, newsbeuter 2.7 added this new feature:
    newsbeuter 2.7
    changes in this release:
    2.7 (2013-08-27):
    Fix crash bug.
    >> Add option to colorize unread messages (Patrick Steinhardt).
    Add option to swap title and hints bar (Patrick Steinhardt).
    Add %u and %t support to itemview (Giuliano Schneider).
    Only force redraw if a form action is active (Patrick Steinhardt).
    Can I change the highlight font color to more readable?
    This is snippet of my newsbeuter config solarized colorscheme:
    # Theme
    color background color12 color8
    color listnormal color12 color8
    color listfocus color0 color3
    color info color10 color0 bold
    color article color12 color8
    Last edited by serdotlinecho (2013-09-03 16:57:38)

    fijit wrote:The new colour options are called "listfocus_unread" and "listnormal_unread"
    I simply set them to be the same as listfocus and listnormal.

  • Is there a way to force s:List redraw or reprocess what it's displaying?

    Is there a way to force the s:List to redraw it's content, I do some processing, and the processing doesn't get reflected unless you scroll down, and then scroll back up.
    It looks like when you scroll down and scroll back up it's triggering some sort of re-calculation or redraw of the items.
    Is there a way to force it to do that re draw or re-calculation without having to scroll down?

    Unfortunately that didn't work.
    I don't even necessarily have to scroll down, once i touch the scroller it seems to redraw the items in the s:list.

Maybe you are looking for

  • Info records pulling into purchase orders

    I have created an info record for a material group only (i.e. without material master as it is for a non-stock item).  It is my understanding that this creates a vendor-material group relationship.  When creating a purchase order for this unique comb

  • Urgent XSL Question

    For XML      <PolicyCoverages>           <row>                <covNm>Coverage A</covNm>                <lmt>10000</lmt>                <deductible>0</deductible>                <covPremium>2000</covPremium>                <optFlg>N</optFlg>          

  • Kodak print option not appearing in my print dialoge

    Hi all, I REALLY hope someone can help me. I just installed PhotoShop Elements 8 for Mac OS X. One of the main reasons I installed this product is to have the capability to print Kodak prints using my existing Kodak Gallery Account. Based on my under

  • IPhone 5 video recordings have alot of digital noise. Do i need a new phone?

    Hi everyone!. Well i preordered a iPhone 5 and after a few days use i got what was a dead mic and had to get the phone replaced. Apple gladly gave me a new phone but it seems to have developed some sort of issue where any video recording i do seems t

  • Buy Downloadable version of Flash 8

    I need to upgrade my flash in order to work on some documents someone created for me. I want to buy Flash 8, but I see Adobe has taken it off line. Does anyone know where I can buy a downloadable full version or even get a demo version that will last