Dynamic link from premiere to speedgrade not working, constantly crashing

Hello,
please help me. I'm trying to color correct my video in Speedgrade (I'm not using 4k files).
When I try to send the project from Premiere CC to Speedgrade whit dynamic link, everything seems fine, except that when the project finishes to be downloaded from SG, it crashes.
And it's the same if I try to open a random video clip from inside SG. I open it, put it in the timeline, but when I click on Looks, it crashes.
All the videos I'm using are quicktime, h.264.
Thanks a lot

The Direct Link process should totally bypass Sg's preferences and "needs" as far as frame-rates & sizes & such not. But clearly this whole issue is affecting people with a variety of gear, and it doesn't seem to care if it's a newish or oldish video card. So they've a quirk in their code to deal with.
Not that Sg deals with framerates perfectly all the time ... I've been having a devil of a time the last couple weeks with any attempt to export an EDL into Sg from PrPro. Footage reads as 29.97 ... sequence is 29.97 ... and the EDL is 29.97. But Sg insists that the EDL is 30 fps ... and even though it's got that bit in the prefs to account for such things if there really IS a difference ... "if edl is x & footage is frame-rate above conform to rate below" and all ... haven't been able to get Sg to accept the EDL. It will play the first 5-6 seconds of each clip & then the monitor goes black and it says "Media out of  range" ... funsies.
Given the number of times or reasons one might need an EDL approach in emergency situations ... or as I was and a number of others are still trapped into because of this bug ... I've been trying to figure this bugger out. Still trying ...
Neil

Similar Messages

  • Dynamic link from Premiere to Speed grade is incredible slow.

    Dynamic link from Premiere to Speed grade is incredible slow. About 10 minutes or so. I usually measure the time by hands of Solitaire, min 3 wins.  I've trashed prefs, OS and apps all updated, run system maintenance. I'm at a loss. This workflow isn't working for me. Please give me some troubleshooting ideas.
    Thanks Bill
    Mac OS 10.10.2 64gb ram
    Premiere CC 2014 8.2.0
    Speedgrade Cc 2014

    bill lauer wrote:
    Or is the workflow save/Quit my project in Premiere. then open in Speedgrade. Then save/Quit my project in Speedgrade and re-open in Premiere?
    yeah thats basically it, you could leave premiere open but save and close the project before opening it up in speedgrade. if you are going to be in speedgrade a while, its best to just close premiere so it doesn't tie up any system resources sitting in the background. the dynamic link buttons/commands in premiere and speedgrade just save, close, and open in other program. so once you do your work in speedgrade save the project, close, then open it back in premiere and it should all be there.

  • Dynamic Link from Premiere freezes at 50%

    I have never used the dynamic link from Premiere CS4 to Encore CS4 so I don't know if this feature has ever worked. I tried to send just a 25 minute unedited timeline to Encore to see if it worked.  Encore goes through it's features but freeze at 50% at transporting timeline.  Any ideas?

    I may have answered my own question. I finually did get it to work, maybe by chance.  I msconfig and cleaned out my start up menue and that seems to have cured it.

  • JSF : Dynamic link generated by commandLink does not work

    In the following code, without <f:verbatim>, it is giving "Duplicate ID in the view" Exception. But with <f:verbatim>, the links generated by commandLink does not work. Please help me to solve this problem.
    Thank you in advance.
    Regards
    Abdul
    <%-- jsf:pagecode language="java" location="/src/pagecode/eservice/DisplayMoreEServices.java" --%><%-- /jsf:pagecode --%>
    <%@ include file="/includes/g_common_include.jsp" %>
    <%@page import="java.util.Map"%>
    <%@page import="bh.com.cio.egov.EGOVConstants"%>
    <%@page import="javax.portlet.PortletSession"%>
    <%@page language="java"%>
    <%
         PortletSession ses = renderRequest.getPortletSession();
         Map eServiceCatMap = (Map) ses.getAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT);
         renderRequest.setAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT,eServiceCatMap);
    %>
    <%@page import="bh.com.cio.egov.vo.EServiceVO"%>
    <f:view>
         <script type="text/javascript">          
              function blinkThis(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('switchColor(\'' + id + '\', \'#8A7C5B\', ' + timeout + ')', timeout);
              function switchColor(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('blinkThis(\'' + id + '\', \'#FF3030\', ' + timeout + ')', timeout);
         </script>
    <f:loadBundle basename="nls.egovresource" var="nls"/>
    <hx:scriptCollector id="scriptCollector1">
         <h:form id="form2">     
    <f:verbatim>
              <div class="header-top">
                   <h:outputText value='#{nls["eservice_label_title"]}'></h:outputText>
              </div>
              <c:forEach items="${requestScope.REQ_ESERVICE_LIST_BY_CAT}" var="categoryVOs" varStatus="catIndex">
                   <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                        <tr>
                             <td> </td>
                             <td class="gray1" height="30px">
                                       <c:out value="${categoryVOs.value.category.categoryName}" escapeXml="false"></c:out>
                             </td>                
                        </tr>
                        <tr>
                             <td width="2">
                                  <div align="right">           
                                       <img src='<%= imageRootDir + "dot.png"%>' width="4" height="1" />
                                  </div>
                             </td>
                             <td width="100%" >
                                  <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                                       <c:forEach items="${categoryVOs.value.eservice}" var="service" varStatus="serviceIndex">
                                       <%
                                            EServiceVO serviceObj = (EServiceVO) pageContext.getAttribute("service");
                                            String action = null;
                                            int serviceId= -1;
                                            if(serviceObj!=null)
                                                 action = serviceObj.getServiceAction();
                                                 serviceId = serviceObj.getServiceId();
                                            if(action!=null && action.startsWith("$"))
                                       %>
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_en" value="${service.serviceAction}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_ar" value="${service.serviceActionAr}" scope="request"/>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">                              
                                                      <tr>
                                                           <td width="95%" id="extMoreCell_${catIndex.index}_${serviceIndex.index}">                                                                      
                                                                <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>
                                                                <h:commandLink styleClass="links menu-txt" action="#{pc_EServiceView.doExternalLinkAction}">
                                            <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"/>
                                                 <f:param name="PARAM_ESERVICE_URL_EN" value="#{jstl_to_jsf_url_en}"></f:param>
                                                 <f:param name="PARAM_ESERVICE_URL_AR" value="#{jstl_to_jsf_url_ar}"></f:param>
                                                 <f:param name="JSP_ACTION" value="ACT_EXTERNAL_ESERVICE"></f:param>
                                            </h:commandLink>
                                                           </td>
                                                      </tr>                                             
                                                 </table>
                                                 <script type="text/javascript">
                                                      <c:if test="${service.serviceId eq '53'}">
                                                           blinkThis('extMoreCell_7_3', '#FF3030', 1000);
                                                      </c:if>                                        
                                                      <c:if test="${service.serviceId eq '54'}">
                                                           blinkThis('extMoreCell_7_4', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '55'}">
                                                           blinkThis('extMoreCell_7_5', '#FF3030', 1000);
                                                      </c:if>          
                                                      <c:if test="${service.serviceId eq '56'}">
                                                           blinkThis('extMoreCell_0_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '57'}">
                                                           blinkThis('extMoreCell_8_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '59'}">
                                                           blinkThis('extMoreCell_1_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '58'}">
                                                           blinkThis('extMoreCell_5_6', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '28'}">
                                                           blinkThis('extMoreCell_1_4', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '20'}">
                                                           blinkThis('extMoreCell_5_3', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '60'}">
                                                           blinkThis('extMoreCell_7_6', '#FF3030', 1000);
                                                      </c:if>     
                                                 </script>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>'><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%}
                                       else if(action!=null)
                                       %>                                                                                               
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <wps:urlGeneration contentNode="${service.serviceAction}" allowRelativeURL="false" keepNavigationalState="true">
                                       <%
                                       //String urlC = "http://"+renderRequest.getServerName()+":"+renderRequest.getServerPort()+wpsURL;
                                       String urlC = "" + wpsURL;
                                       %>
                                       <c:set var="url" value="<%=urlC%>" scope="request"/>
                                  </wps:urlGeneration>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                                      <tr>
                                                           <td id="intMoreCell_${catIndex.index}_${serviceIndex.index}">
                                                           <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>     
                                                           <hx:outputLinkEx styleClass="links menu-txt" value="#{url}">
                                                                <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"></h:outputText>
                                                           </hx:outputLinkEx>
                                                           </td>
                                                      </tr>                                                                                                                             
                                                 </table>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>' ><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%
                                            %>               
                                       </c:forEach>                                             
                                  </table>
                             </td>
                        </tr>
                   </table>                                                                                                                                                                     
              </c:forEach>
              </br>
              <h:messages styleClass="messages" id="messages1"></h:messages>
              </f:verbatim>     
              </h:form>
         </hx:scriptCollector>
    </f:view>

    1) Throw your code away and use h:dataTable instead of c:forEach to render a table of dynamic size.
    or:
    2) Hand-assign every UIInput and UICommand element inside the loop an unique ID. E.g. "commandLinkId" + loopIndex

  • Dynamic Link from Premiere to After Effects causing 'Zoom' controls not to function...

    I'm using Premiere Pro CS5 with a Dynamic link to an After Effects CS5 composition and I'm having some real issues with zoom control (once I'm in AE). When I run the composition 1 or 2 times the zoom function (ctrl +/-) will work, but after a few run through's it doesn't function at all. Even trying to manually change the zoom by clicking won't work. This happens EVERY time I use a dynamic link -- anyone else having this issue? (It also won't allow me to render... but I can see my comp move when I scrub through with the mouse).
    Also, when I create the same composition w/o the dynamic link everything works perfectly... (I just don't want to have to re-render it out... which is why I would like Dynamic Link to work properly).
    Here's what I'm running;
    Windows 7 Pro - 64bit
    Core i7-960
    24GB DDR3
    x2 300GB 10k RPM HD
    ATI 4790 1GB
    Thanks,
    Drew

    Mylenium, Todd,
    Thanks for your suggestions. I've updated all of my 3rd party software drivers, as well as AECS5 and it seemed to work... for an extra 10 minutes. I ended up turning off OpenGL (as directed above) and that has seemed to help as well (although render playback seems to suffer). I will test for another few hours and hopefully it will continue to work.
    I was also able to replicate the problem on my laptop with the same proceedures... perhaps it's the ATI card that's causing the issue... but it doesn't seem to be a one-time event. (Although it's causing my laptop to crash now mid-render).
    Cheers,
    D

  • Dynamic Link from Premiere CC to After Effects CC Issues.

    Just bought a new iMac maxed out 3.75ghz quad-core, 32 gig of ram, 1t solid state and 4 gigs of video ram; so my machine is more then capable of using adobe video applications very well.  I like to do a lot of dynamic link things from premiere to after effects and 9 times out of 10 I use a black video (File>New>Black Video) as my place holder on the time line or you could use bars or a color matte, doesnt matter..  When I do my composite in after effects and then come back to premiere to render, it takes freaking forever if I leave after effects open.  If I close after effects then do the render, it fires through the premiere render and no problems. 
    Now I also have a maxed out 12 core 64 gig ram Mac Pro tower at work and I have the same problem.  Is this a known bug thats in the works of being fixed?  Is there a work around instead of closing after effects to render to make it work smoother?  Is adobe aware of this issue?  Nothing is crashing or failing, its just taking a long time to render when i dynamic link if i leave after effects open.  Any help or feedback would be awesome, thanks!

    Todd_Koprivas
    I spoke with vidya sagar from tech support a few minutes ago to get an update on when, maybe this update to fix this problem will be rolled out.  He told me he and his whole team is aware of the situation.  He mentioned its a problem where ram between premiere and after effects isn't being balanced out enough and thats why premiere is taking so long to render out after effect compositions.  With all do respect, I'm not trying to be a nag.  Can you maybe give me a progress report on where the team is with fixing this related issue?  Vidya said your the man to ask and that you're a very reliable resource to get information out of with problems such as this.

  • Dynamic link from Premiere CC 2014 to Audition CC 2014

    When I dynamic link to audition and save and go back to premiere it saves my files to my
    user folder instead of saving it to my project folder where I’m working from. I have not found a way to specify the folder to save back to. You would think it would save the file back to the folder where the original was.
    And if I save them straight to my desired folder I have to import those files into premiere and relink them.
    How can this be fixed… any ideas what to do?

    Todd_Koprivas
    I spoke with vidya sagar from tech support a few minutes ago to get an update on when, maybe this update to fix this problem will be rolled out.  He told me he and his whole team is aware of the situation.  He mentioned its a problem where ram between premiere and after effects isn't being balanced out enough and thats why premiere is taking so long to render out after effect compositions.  With all do respect, I'm not trying to be a nag.  Can you maybe give me a progress report on where the team is with fixing this related issue?  Vidya said your the man to ask and that you're a very reliable resource to get information out of with problems such as this.

  • Getting the Dynamic Link from Premiere Pro to AE

    I read the dynamic link process in the Pr Pro on line ref manual BUT I'm just not getting easily as they say.
    In Premiere I have edited my clips and they are on the time line in a sequence.
    I want to take the edited clips, that are on the time line, individually into AE to do my effects and color correction.
    I know to go to File >Dynamic Link>New AE Comp--- but the problem is that when I get the empty AE linked Comp I can only import the unedited clip from Pre Pro.  What am I doing wrong???   is there a way to copy the clip from the time line an put into the AE comp.   I did try to do that by simply copy and paste but the clip that ends up in AE is not readable.  I pasted it into the timeline window of AE, it shows up but contains nothing.  When I double click on it I get and error message saying invalid Quick time movie
    I am on a Mac usign CS4
    Thank U

    OK its more than a year later since I originally posted this question.
    I've been using the Dymanic Link method since that time, but recently read about pasting the Pre Pro sequenct into AE and remembered your suggestion of pasting instead.  My work flow has been 1) Make Rough Edit version in Pre Pro, 2) Take each clip seqment individually into AE through Dynamic Link and dow what ever needs to be done; and 3) Render out the refined Sequence in Pre Pro.
    So, If I am working on a project and in Pre Pro and I have lets say 5 video and audio layers and the entire sequence is 5 min. long, its best to IMPORT the Pre Pro Sequence into AE and work on that WHOLE 5 min project in AE. 
    I guess that I would end up doing a lot of pre-composing for each layer to keep the AE project from becoming 100 layers deep (even thought I have heard about 100 layers deep, I'm not trying to go there)
    Is this the way most professional people work?  what I mean is this the most efficient way to work: Dymanic Link for small fixes and Importing Pre Pro Sequence and/or video tracks for longer or larger works.
    thanks

  • Dynamic link from premiere pro

    Usually when i dynamic link to audition and save and go back to premiere it saves my files to my project folder im working from.
    Something has changed and they save elsewhere, if  I move the files to the project folder it stuffs up premiere wanting to reconnect everything..
    And if I save them straight to my desired folder I have to import those files into premiere, frustrating me
    Any ideas what I can do.?

    I also need help with this. Whenever I dynamicly link is saves the new AA wav file next to where my PP proj file is. I don't want it to do this I want to save it to where all my media is. Is there really no way to tell audition to default save extracted audio from premiere to a certain location?.
    The extracted WAV file is generated by Premiere, in this case, and Audition doesn't have any control over where it is saved.  You can submit a feature request directly to Premiere by visiting https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Encore keeps freezing when I use dynamic link from premiere.  Any thoughts?

    I just got done editing my sequence in Premiere Pro CS6.  I've added my chapter markers and sent to Encore via Dynamic Link.  Once I choose my project name and location it begins the import.  At 50% it freezes.  I've tried it on multiple machines and hard drives.  I've done this a million times before and have now just run into issues.  Any thoughts?
    I'm working on a 2010 Mac Pro and a 2013 Macbook Pro (non retina)

    You'll have a much better chance asking your question in the Encore forum. There are not many Encore users who  venture here. This forum is for general Creative Suite questions.

  • Dynamic Link from Premiere CS4

    When I export Premiere to AE, the composition icon in AE but nothing else.No associated video files, etc. I double-click it or drag it into the timeline area - nothing happens. However, I am able import a Premiere project frm within AE and I can do all those things - but Dynamic Link is not involved. Can I link the two after the fact?

    I don't really get what you are saying. For DynamicLink, you do not export anything, you open the saved Premiere Pro project using the DynamicLink option in the import dialog. Upon doing so, you will be prompted with what sequence to use and that's all. If you are referring to creating a AE comp from Premiere using Replace with AE Composition, then that's a different thing. In either case, however, the AE project must be saved in the same location as the Premiere project for things to show up properly.
    Mylenium

  • Dynamic Link from Premiere to After Effects (Source footage keeps erasing)

    I am using Premiere cs4 and when I right clip on a clip on my sequence and hit (Replace with After Effects Composition) It opens it up with after effects.  That part works.  I also can make changes in After effects to the clip and I go back to Premiere and the changes are made.  The problem is when I close After effects, in my premiere project the file that I changed in after effects goes offline and It is only color bars.  If I open up the after effects project again it also shows that the source footage I edited is offline.
    How do I fix this issue.   All I want to do is take a couple clips in my premiere project and edit them in after effects.  How do I keep it through the dynamic link and keep it saved even when after effects is closed??  Or if I have to reopen after effects how do I make it so the footage loads back in?
    Please help!
    Thanks

    Hellow Kate
    Now that worked for me 2! Thank you very much for the advice. Hope they fix this serious issue in the CS5 edition that is announced.
    Otherwise I think the adobe-software is not wurth that amount of money. Indeed, it's very incredible software with great tools. But
    such problems can not be tolerated...
    Hope they do something about it!
    Kind regards
    G

  • Download link from order e-mail not working 'page error'

    I ordered Adobe Photoshop Elements 10 & Adobe Premiere Elements 10 back in Nov2011.  I downloaded both to learn I needed the 64 bit version.  When I had time I downloaded Photoshop Elements 64 bit and got my project done.  Now I went back to get my 64 bit version of Premiere but the link no longer works.  On the order it says you can re-download anytime.  I sign in to my Adobe Account, go to Order History, hover over download - I see the address in my browser status bar at bottom left.  When I click on download the the status bar displays the yellow triangle with the warning message 'page error'  when you expand the message it indicates a address is not working.  I tried turning my firewall off - didn't have to do that before - but same message.  There must be a link where paying customers can get the proper download?  Everything I find is for the trial version.  Is there a link?  Why do the links in the order e-mail expire?  Thanks in advance!            

    OK, I finally worked around the issue.  Right click on the word download – then select open in new window.  Not sure why this worked – but it did.  Jeff, the alternate download option does appear on the second page that loads AFTER you get past the initial download link.  Though once I got there I was able to use the primary download for 64 bit.  Thanks all for looking at this.  J potter, try this and see if it helps.

  • Link from flash file/moving not working on a page

    I will apologize first for what maybe a very elementary
    questions. I was sent an swf file to add to a web page. I got the
    movie to run on some of the pages where I inserted it into a
    template and the template updated those pages. I think had to
    insert it into another page and the movie does not work there. Does
    this have something to do with the script in the script folder? A
    conflict of some sort?
    Also, I need to link the file a URL and putting <a
    href> brackets around it is not working. Does the link to the
    page have to embedded in the swf file?
    Thanks for any help on this.
    URL to see pages
    Movie working but no link:
    http://www.grantwrangler.com/advertise.html
    Movie not even showing up:
    http://www.grantwrangler.com/index.html

    > Also, I need to link the file a URL and putting <a
    href> brackets around it is
    > not working. Does the link to the page have to embedded
    in the swf file?
    wrapping an A HREF tag around a flash .swf object will not
    work.
    the link has to be "in" the swf, back when it was an FLA file
    in flash.
    Or- the .swf has to have actionscripting in it so that it
    will take a url as
    a parameter.
    On the flash not showing--
    Random observations from a quick look.
    There is no \ backslash in a web path or url.
    you can usually "get away with it" on a windows server, but
    it's incorrect
    and something to avoid.
    <!-- Dependencies -->
    <link type="text/css" rel="stylesheet"
    href="build\fonts\fonts.css">
    <!--<link type="text/css" rel="stylesheet"
    href="build\reset\reset.css">-->
    <script type="text/javascript"
    src="build\yahoo\yahoo.js"></script>
    <script type="text/javascript"
    src="build\dom\dom.js"></script>
    <script type="text/javascript"
    src="build\event\event.js"></script>
    <!-- Source file and calendar css -->
    <script type="text/javascript"
    src="build\calendar\calendar.js"></script>
    <link rel="stylesheet" type="text/css"
    href="build\calendar\assets\calendar.css" >
    The javascript call to show the flash file contains an
    absolute local path:
    'file:///Macintosh HD/Users/user/Documents/ Work/Nimble Press
    Ÿ/Grant
    Wrangler/Website/GW ADs/tiged
    The noscript tag uses an absolute local path:
    <param name="movie" value="file:///Macintosh
    HD/Users/user/Documents/
    Work/Nimble Press Ÿ/Grant Wrangler/Website/GW
    ADs/tiged.swf">
    <param name="quality" value="high">
    <embed src="file:///Macintosh HD/Users/user/Documents/
    Work/Nimble Press Ÿ/Grant Wrangler/Website/GW
    ADs/tiged.swf" quality="high"
    pluginspage="
    http://www.adobe.com
    it's also not a good idea to put things in a folder using a
    blank space, and
    whose name contains the word "ADs"
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Report a problem link from my receipt does not work

    The link said not able to connect to iTunes when I tried to report a problem from my receipt after purchasing a song from iTunes

    Contact iTune Support
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • OBIEE 11G   HOLAP( drill through)   from ORACLE OLAP  to  Relaltional table

    Hi Experts... I have some idea that the drill through from an essbase cube to an relational cube can be possible with few limitations in OBIEE 10g. I am looking for the same feature with ORACLE OLAP option . I have OLAP cube built in 11g (leve5 - gra

  • Still having a problem with ComboBox in a Table

    In my JClient app I still can't get a ComboBox to work in a JTable. The ComboBox doesn't display in the table and my pageDef file (below) looks fine to me. Can anyone verify that a ComboBox in a JTable works in the production release or tell me what

  • Workflow, OEM with OWB 9.0.4

    How do I register a workflow process which I've created in OWB 904 to execute with OEM, or for that matter, kick one off at the command line (solaris)? Do I need workflow client to register this with OEM? Since it was listed as optional, I don't have

  • Blue Screen instead of sleep

    I experienced a strange behaviour of my iMac G5 (isight) the last few days: I set the iMac to first display the screensaver after 10 minutes, then to go to sleep after 45 minutes. Now, the saver shows up, no problem. But then, instead of going to sle

  • Where is the fade in docs

    Where is the documentation for fading in and fading out several pictures? How do you expect a beginner to learn anything with this flash and no howto's to do something simple?