Intenisty graph Z scale marker values not working

Hello ,
           I have a VI that plots Intensity graph, I have assigned certain RGB values to the Z-scale markers. But all I see is green intensity chart always.
Below I have attached the Block diagram and front panel.
Please advice where can I go wrong in this one.
Thank you
Abhi
Abhilash S Nair
Research Assistant @ Photonic Devices and Systems lab
[ LabView professional Development System - Version 11.0 - 32-bit ]
LabView Gear:
1. NI PXI-7951R & NI 5761
2. The Imaging Source USB 3.0 monochrome camera with trigger : DMK 23UM021
OPERATING SYSTEM - [ MS windows 7 Home Premium 64-bit SP-1 ]
CPU - [Intel Core i7-2600 CPU @ 3.40Ghz ]
MEMORY - [ 16.0 GB RAM ]
GPU - [ NVIDIA GeForce GT 530 ]
Attachments:
IntensityPlotBD.png ‏142 KB
intenistyFP.png ‏290 KB

Ben,
     Strange thing is that all is showing white now. It was working petfect untill I put in a program that shows the mouse cursor for intensity values as long as I hover the mouse above the Intensity graph.
I am attachingn a VI so that you can see it for yourself. Also a test result that shows all values are almost same. In fact its supposed to be like sine wave. To get the actual values I will have to divide by 2^14 since my AD is 14 bit AD.
But I dont really know where am I going wrong.
Abhilash S Nair
Research Assistant @ Photonic Devices and Systems lab
[ LabView professional Development System - Version 11.0 - 32-bit ]
LabView Gear:
1. NI PXI-7951R & NI 5761
2. The Imaging Source USB 3.0 monochrome camera with trigger : DMK 23UM021
OPERATING SYSTEM - [ MS windows 7 Home Premium 64-bit SP-1 ]
CPU - [Intel Core i7-2600 CPU @ 3.40Ghz ]
MEMORY - [ 16.0 GB RAM ]
GPU - [ NVIDIA GeForce GT 530 ]
Attachments:
Desktop.zip ‏135 KB

Similar Messages

  • Illustrator scale tool is not working

    Scale tool in my illustrator is not worrking. How can I solve this problem?

    Hi
    I made 3rd step and most of the functions lost from the menus
    iPhone'umdan gönderildi
    15 Mar 2014 tarihinde 12:27 saatinde, "Jacob Bugge" <[email protected]> şunları yazdı:
    Re: Illustrator scale tool is not working
    created by Jacob Bugge in Illustrator - View the full discussion
    nurcan,
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences):
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press CtrlAltShift/CmdOptionShift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6211732#6211732
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6211732#6211732
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6211732#6211732. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Illustrator at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Pick List Value Not Working Properly

    Hi Oracle Framework Gurus,
    I have a strange Issue in which one of my cusom page is working properly in Jdev and not working Properly when deployed in the apps instance.
    There are two custom pages with the same VO.
    What I do is have a picklist from one of the custom page and depending on the value of the picklist and I navigate to the other custom page.
    This is working properly in the JDev,But for some reasons it works properly in apps instance, when I try to run the first time(ie) when I run page A and pick 'X' from the picklist the Page 'B' is coming properly as per the controller code and when i pick 'Y' from the picklist in Page B, it is navigating to Page A as per the controller code.
    This works fine for the first time,But when i again select 'X' from the picklist the proper value from the Picklist is not getting selected and passed to the custom package and so I get wrong values in Page 'B'
    What could be the reason for it as it working fine in Jdev,I can navigate from Page A to Page B and Page B to Page A as many times possible.

    Hi Anand,
    Controller1 :
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    //int intPersonId = pageContext.getEmployeeId();
    int intPersonId; // = pageContext.getEmployeeId();
    String strPersonId = Integer.toString(277671);
    //String strPersonId = Integer.toString(intPersonId);
    java.util.Date sysdate = pageContext.getCurrentUserDate();
    String convSysDate = pageContext.getOANLSServices().dateToString(sysdate);
    // Date testdate = (Date)sysdate.dateValue();
    // get the Application Module
    OAApplicationModule oaAM = pageContext.getApplicationModule(webBean);
    Serializable parameters[] = { strPersonId,convSysDate };
    Serializable param[] = { strPersonId };
    System.out.println("The Sysdate PF "+convSysDate);
    //pass parameters to Application Module
    oaAM.invokeMethod("insertLovRow", param);
    if ((String)pageContext.getSessionValue("PFlag1") != null)
    String PFlag1 =(String)pageContext.getSessionValue("PFlag1");
    String SDate1 =(String)pageContext.getSessionValue("SDateSession1");
    Serializable param1[] = { SDate1 };
    oaAM.invokeMethod("insertLovRow", param);
    oaAM.invokeMethod("initEmpLovQuery1",param1);
    oaAM.invokeMethod("initEmpTransLovQuery1");
    OAMessageChoiceBean orgMesgChoiceBean = (OAMessageChoiceBean)webBean.findChildRecursive("Year");
    orgMesgChoiceBean.setPickListViewObjectDefinitionName("EmployeeTest.oracle.apps.per.server.EmpTransDateLov");
    orgMesgChoiceBean.setListValueAttribute("StartDate");
    orgMesgChoiceBean.setListDisplayAttribute("DateRange" );
    orgMesgChoiceBean.setPickListCacheEnabled(false);
    else
    oaAM.invokeMethod("insertRow", parameters);
    oaAM.invokeMethod("initQuery", param);
    oaAM.invokeMethod("execQuery");
    oaAM.invokeMethod("totexecQuery");
    OAMessageChoiceBean orgMesgChoiceBean = (OAMessageChoiceBean)webBean.findChildRecursive("Year");
    orgMesgChoiceBean.setPickListViewObjectDefinitionName("EmployeeTest.oracle.apps.per.server.EmployeeDateLovVO");
    orgMesgChoiceBean.setListValueAttribute("StartDate");
    orgMesgChoiceBean.setListDisplayAttribute("DateRange" );
    orgMesgChoiceBean.setPickListCacheEnabled(false);
    oaAM.invokeMethod("initEmpLovQuery");
    OAViewObject oaviewobject1 =(OAViewObject)oaAM.findViewObject("EmployeeUtilVO1");
    oaviewobject1.reset();
    if (oaviewobject1 != null)
    do
    if(!oaviewobject1.hasNext())
    break;
    oaviewobject1.next();
    OARow row = (OARow)oaviewobject1.getCurrentRow();
    String fullName = (String)row.getAttribute("EmpDep");
    System.out.println("The Name is "+fullName);
    } while(true);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    //int intPersonId = pageContext.getEmployeeId();
    //String strPersonId = Integer.toString(intPersonId);
    int intPersonId; // = pageContext.getEmployeeId();
    String strPersonId = Integer.toString(277671);
    OAApplicationModule oaAM = pageContext.getApplicationModule(webBean);
    if (pageContext.getParameter("ViewDetails") != null)
    pageContext.putSessionValue("strPersonId", strPersonId);
    pageContext.setForwardURL("OA.jsp?page=/EmployeeTest/oracle/apps/per/webui/EmployeePanelIB",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, // Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES, // Show breadcrumbs
    OAWebBeanConstants.IGNORE_MESSAGES);
    System.out.println("strPersonId "+strPersonId);
    String strEvent= pageContext.getParameter(EVENT_PARAM) ;
    if ( strEvent.equals("update"))
    OAMessageChoiceBean DepStatus1 = (OAMessageChoiceBean) webBean.findIndexedChildRecursive("Year");
    String sDate = DepStatus1.getSelectionValue(pageContext);
    //String sDate = DepStatus1.getValue(pageContext).toString();
    //Serializable parameters[] = { strPersonId,sDate };
    Serializable parameters[] = { strPersonId,sDate };
    Serializable param[] = { strPersonId };
    System.out.println("The PersonId "+strPersonId);
    System.out.println("The Controller Date passed is IBUtil "+sDate);
    oaAM.invokeMethod("insertRow", parameters);
    oaAM.invokeMethod("initQuery", param);
    oaAM.invokeMethod("execQuery");
    String flag = "1";
    //pageContext.putSessionValue("strPersonId", strPersonId);
    pageContext.putSessionValue("PFlag", flag);
    pageContext.putSessionValue("SDateSession", sDate);
    pageContext.setForwardURL("OA.jsp?page=/EmployeeTest/oracle/apps/per/webui/EmpTestPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, // Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES, // Show breadcrumbs
    OAWebBeanConstants.IGNORE_MESSAGES);
    Controller 2:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    //int intPersonId = pageContext.getEmployeeId();
    int intPersonId; // = pageContext.getEmployeeId();
    String strPersonId = Integer.toString(277671);
    //String strPersonId = Integer.toString(intPersonId);
    java.util.Date sysdate = pageContext.getCurrentUserDate();
    String convSysDate = pageContext.getOANLSServices().dateToString(sysdate);
    // get the Application Module
    OAApplicationModule oaAM = pageContext.getApplicationModule(webBean);
    Serializable parameters[] = { strPersonId,convSysDate };
    Serializable param[] = { strPersonId };
    System.out.println("The Sysdate PF "+convSysDate);
    //pass parameters to Application Module
    oaAM.invokeMethod("insertLovRow", param);
    if ((String)pageContext.getSessionValue("PFlag") != null)
    String PFlag1 =(String)pageContext.getSessionValue("PFlag");
    String SDate1 =(String)pageContext.getSessionValue("SDateSession");
    Serializable param2[] = { strPersonId, SDate1 };
    Serializable param1[] = { SDate1 };
    oaAM.invokeMethod("insertLovRow", param);
    oaAM.invokeMethod("initEmpLovQuery1",param1);
    oaAM.invokeMethod("initEmpTransLovQuery1");
    OAMessageChoiceBean orgMesgChoiceBean = (OAMessageChoiceBean)webBean.findChildRecursive("Year");
    orgMesgChoiceBean.setPickListViewObjectDefinitionName("EmployeeTest.oracle.apps.per.server.EmpTransDateLov");
    orgMesgChoiceBean.setListValueAttribute("StartDate");
    orgMesgChoiceBean.setListDisplayAttribute("DateRange" );
    orgMesgChoiceBean.setPickListCacheEnabled(false);
    else
    oaAM.invokeMethod("insertRow", parameters);
    oaAM.invokeMethod("initQuery", param);
    oaAM.invokeMethod("execQuery");
    oaAM.invokeMethod("totexecQuery");
    OAMessageChoiceBean orgMesgChoiceBean = (OAMessageChoiceBean)webBean.findChildRecursive("Year");
    orgMesgChoiceBean.setPickListViewObjectDefinitionName("EmployeeTest.oracle.apps.per.server.EmployeeDateLovVO");
    orgMesgChoiceBean.setListValueAttribute("StartDate");
    orgMesgChoiceBean.setListDisplayAttribute("DateRange" );
    orgMesgChoiceBean.setPickListCacheEnabled(false);
    oaAM.invokeMethod("initEmpLovQuery");
    OAViewObject oaviewobject1 =(OAViewObject)oaAM.findViewObject("EmployeeUtilVO1");
    oaviewobject1.reset();
    if (oaviewobject1 != null)
    do
    if(!oaviewobject1.hasNext())
    break;
    oaviewobject1.next();
    OARow row = (OARow)oaviewobject1.getCurrentRow();
    String fullName = (String)row.getAttribute("EmpDep");
    System.out.println("The Name is "+fullName);
    } while(true);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule oaAM = pageContext.getApplicationModule(webBean);
    //int intPersonId = pageContext.getEmployeeId();
    //String strPersonId = Integer.toString(intPersonId);
    int intPersonId; // = pageContext.getEmployeeId();
    String strPersonId = Integer.toString(277671);
    if (pageContext.getParameter("ViewDetails") != null)
    pageContext.setForwardURL("OA.jsp?page=/EmployeeTest/oracle/apps/per/webui/EmpPanelPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, // Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES, // Show breadcrumbs
    OAWebBeanConstants.IGNORE_MESSAGES);
    pageContext.putSessionValue("strPersonId", strPersonId);
    String strEvent= pageContext.getParameter(EVENT_PARAM) ;
    if ( strEvent.equals("update"))
    OAMessageChoiceBean DepStatus1 = (OAMessageChoiceBean) webBean.findIndexedChildRecursive("Year");
    String sDate = DepStatus1.getSelectionValue(pageContext);
    //String sDate = DepStatus1.getValue(pageContext).toString();
    Serializable parameters[] = { strPersonId,sDate };
    Serializable param[] = { strPersonId };
    System.out.println("The Controller Date passed is CBUtil "+sDate);
    System.out.println("The PersonId "+strPersonId);
    oaAM.invokeMethod("insertRow", parameters);
    oaAM.invokeMethod("initQuery", param);
    oaAM.invokeMethod("execQuery");
    String flag = "2";
    //pageContext.putSessionValue("strPersonId", strPersonId);
    pageContext.putSessionValue("PFlag1", flag);
    pageContext.putSessionValue("SDateSession1", sDate);
    pageContext.setForwardURL("OA.jsp?page=/EmployeeTest/oracle/apps/per/webui/EmpIBUtilPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, // Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES, // Show breadcrumbs
    OAWebBeanConstants.IGNORE_MESSAGES);
    Hi Above two are the controller codes forget the rest of the codes,Concentrate on the PFR code, Just want to know what I am doing is correct or not.
    First time when I select the Picklist value,the value gets passed as a parameter to the custom package and the page gets displayed properly and vice versa,But I am not able to do the same cycle again for some reasons.
    Please get back to me ASAP.
    Regards,
    Magesh.M.K.
    Edited by: user1393742 on Oct 19, 2010 11:58 PM

  • Y min value not working in horizontal Flash Bar Charts

    Hello All,
    Going crazy trying to work this one out.
    I have a problem with a Flash Chart (APEX version 3.0.1.00.07)
    The data mainly begins at 97 and goes to no more than 100, therefore I want the min to start at 96 so the results don't look to similiar. Why when I imput my minimum value, it does not work for Horizontal Flash charts ?
    It seems to work for stack or vertical charts, can something be done via the "custom XML" ?
    Link below use deatils as follows
    User Name = [email protected]
    Password = helpme
    http://apex.oracle.com/pls/otn/f?p=35407:3:550931101789266:::::
    select option "Same day"

    Hi Deb,
    Both of your queries are using multi-series syntax i.e. returning more than one series of data, therefore your generated chart is actually generating 6 series rather than just the two that you're aiming for. You could try changing your queries to ensure they each generate a single series of information, which would then result in the extra Y-axis being applied to your "Series 2". Here's an example of what I mean:
    Series 1:
    select null link, label, value from (
    select 'test' label, 1 value from dual
    union all
    select 'test2' label, 2 value from dual
    union all
    select 'test3' label, 3 value from dual
    )Series 2:
    select null link, label, value from (
    select 'test' label, 100 value from dual
    union all
    select 'test2' label, 200 value from dual
    union all
    select 'test3' label, 300 value from dual
    )I hope this helps.
    Regards,
    Hilary

  • Field value not working as "Can grow" when exported in PDF

    Hi, I have a unique problem. We have a report which is using a sub-report. When we run that report in Crystal report and preview then it looks fine. This subreport is designated as "can  grow" so if the field length is bigger than the size then it is coming in the second row. Everything works fine except when we export this report in PDF.
    When we export in PDF then this field is not working as "Can grow" and remaining value of the fields is  truncated. This is happening both in XI and 2008 version of Crystal client.
    Thanks,

    Hi, This is declared as bug by Business Objects Support and Product team will decide if they want to include fix in next release (or fix). This is not possible before Dec 2009 or Early 2010. 
    Below are the general steps on how to apply the suggested workaround:
    1. Remove the on-demand subreport caption, and add an empty string to it instead.
    1.1 In the u201CDesignu201D view of the report, right click on the subreport and select u201CFormat Subreportu2026u201D
    1.2 In u201CFormat Editoru201D window, under the tab u201CSubreportu201D, click on the u201CX-2u201D button of the option u201COn-Demand Subreport Captionu201D
    1.3 In the u201CFormula Workshopu201D window, highlight the text in the formula, and cut it. ( Ctrl-X)
    ( We are just copying the text, as we need to use the samething for the formula or text object we will use to replace this. )
    1.4 Type the following in the formula: u201Cu201D
    1.5 Click on the button u201CSave and closeu201D, to close the u201CFormula Workshopu201D
    1.6 Back to the u201CFormat Editoru201D window, click on the u201COKu201D button to accept the change.
    2. Create a formula or insert a text object in which you add the text or fields you will like to display
    ( In the following steps we will be using a formula )
    2.1 In the u201CField Exploreru201D, right click on u201CFormula Fieldsu201D and select u201CNewu201D
    2.2 In the u201CFormula Nameu201D window, type the name of the formula. ( Example: My subreport caption )
    2.3 In the u201CFormula Workshopu201D, copy the text you cut in step 1.3, or simply add the database fields and text you will like to display for your on-demand subreport caption.
    2.4 Save and close the formula by clicking on the u201CSave and closeu201D button
    3. Insert the formula over the on-demand subreport, and resize the field to be of the desired length.
    4. Format the formula to display like a hyperlink. ( Blue font and underlined text )
    4.1 Right click on the formula inserted in step 3, and select u201CFormat Fieldu2026u201D
    4.2 In the u201CFormat Editoru201D, under the tab u201CFontu201D, set the color to blue
    4.3 Still under the tab u201CFontu201D, check the u201CEffectsu201D option u201CUnderlineu201D
    4.4 Under the tab u201CCommonu201D, check the option u201CCan Growu201D
    4.5 Click on the u201COKu201D button to accept the change
    5. Move the formula to the back in order to ensure you can drill-down on the on-demand subreport
    5.1 Right click on the formula inserted above the on-demand subreport and select u201CMove u2013 To Backu201D
    Now, when exporting the report to PDF format, the formula used to replace the u201Con-demand subreport captionu201D that displays more than one line will all be exported.
    This workaround has following limitations:
    The User can see the service description in two lines because of the u2018Text Objectu2019, the On demand subreport is not growing into the second line in the crystal report since we removed the caption.
    So the user has to carefully click on the first line of the description in the main report to open the subreport. If he clicks on the second line then it wonu2019t open the required subreport and it may create confusion.
    If we manually stretch out the subreport to occupy two lines space then it will leave a gap in between when we have only 1 line service description.
    So plan ahead of time about how lengthy text in su-report would be.

  • Question mark key not working

    hi my question mark key on macbook pro is not working any ideas please

    Does it work when an external keyboard is plugged in?  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 

  • Help Needed With "Extend Marker" Function Not Working

    I have several Clips and used the "DV Start/Stop Detect" function to find the time code breaks, which seems to work well. I've now got a clip full of Segment markers.
    The problem arises when I try to use Extent Markers "Option + `" to make subclips. When I put the play head on a subsequent marker, the Marker/Extend function is grayed out.
    Extending a marker that I have created using the M key works perfectly.
    Why can I not use the Extend function on Segment Markers?
    Any help on this is greatly appreciated. I have 30 odd clips that I need to set up segments for, and doing it manually will add hours to my workload.
    Thanks
    Gary
    Dual G5 2.5 GHz Dual Core, 2.5 GB RAM, 500 GB HDD   Mac OS X (10.4.3)   Final Cut Studio FCP 5.0.4

    Thanks for the reply.
    I am completely aware of items 1 through 3, and never Extend markers in the Timeline. Only the Viewer.
    To perform an Extend Marker and avoid headaches, load the captured clip - the one with the video icon in the Browser - into the Viewer. Then, as you scrub along in the Viewer, Option-` as needed.
    That is precisely what I am doing.
    To Extend the marker I first double click the clip to load the entire clip into the Viewer, where all the Section markers are displayed. I then check Mark>Markers>Extend and the function is grayed out. However, if I move the playhead one frame prior to the Section marker, the previous Section marker extends to the frame prior to the new play head position.
    If I do this with manually entered markers (using the M key, creating Marker 1, 2, 3.... in sequence on the Viewer timeline), then the Previous marker is extended to the frame immediately prior the the current play head position - i.e. from Marker 1 to Marker 2. I do not have to move off the Marker 2 position to be able to extend Marker 1.
    Also, simply selecting all your Markers and either dragging them to another bin (or pressing Command-U) does not produce the needed subclips?
    Of this I am also aware. I find the Command-U process just confuses the issue, creating more clips to manage (others may disagree). I prefer to simply drag the "Subclips" directly from the Main clip into a Timeline.
    Because you're doing all this to get subclips, right? Or wrong?
    If I understand your reply correctly, I think you misunderstood my problem. I have been using subclips for several years, and find them VERY useful, especially with multi-camera shoots. So, I am quite familiar with creating and extending markers.
    I just started experimenting with the Detect feature and find it works quit well (most of the time). My problem is that the Segment markers created by the Detect process, do not perform the same as manually place markers, as far as the Extend marker function is concerned, anyway.
    BTW - By using the TC display in my Panasonic PV-GS400 Camera, and sending the FCP video via Firewire to the camera, the camera displays the TC on the captured clip, which I then rename the marker to for TC reference. As long as the Date/Time on the cameras are properly synced, syncing clips in the Timeline is a breeze!!
    Anyway, to clarify, my process is as follows:
    1. Capture a clip.
    2. Display the clip in the Viewer
    3. Select "DV Start/Stop Detect" and watch as the section markers appear in the Viewer.
    4. In Viewer, place play head on the first Section marker
    5. Press the M key to Edit Marker.
    6. Change the Name of the marker to the timecode of the Marker now displayed in the Camcorder window.
    7. Use Shift-Down Arrow to move to the next Section Marker
    8. Press Option+` to Extend the previous marker - which does not work and is grayed out in the Mark>Markers>Extend menu.
    9. Back to step 5.
    This process works perfectly with manually created markers. Because the Extend works if I move the play head one frame prior to the current Section marker, this tells me there is something "special" about the Section marker that disables the Extend function, unlike a manually created marker.
    BTW - If I delete the Section marker, and create a manual marker at the same frame, the Extend marker function works again. Again, indicating that Section markers are different somehow from manual Markers.
    Hopefully, this wordy explanation of my process clarifies my problem.
    Aside: The clips are supplied to me by a customer on a 500GB FW800 drive. FCP5 was used to capture the clips from the original Tapes (which I do not have access to). I am the editor for the project.
    Thanks again for the reply. It is greatly appreciated. If there is any other info that I have missed that will help figure this out, please let me know and I will post a response a quickly as possible.
    Gary

  • Chapter Marker Buttons Not Working & .dvdproj Files Too Large

    Chapter marker buttons do not work after saving as VIDEO_TS folder. Only first chapter marker button works in DVD player after VIDEO_TS files are created. The other buttons do nothing. My chapters were created automatically in iDVD. Also, original .dvdproj file mushrooms from 132KB to 3.2Gig upon each "save as VIDEO_TS folder" process. Then reopening original .dvdproj file takes 5 minutes, and I must "save as" to create a new copy to bring the file size back to 132KB. This is horrendous. "Save As" file works fine, but makes a new huge .dvdproj file after creating another VIDEO_TS folder. Unable to complete any project in '08 iDVD.

    +saving as VIDEO_TS folder.+
    Don't do that. From Help:
    +Saving as VIDEO_TS folder: Saving a project as a VIDEO_TS folder allows you to play it back, on your computer, using software such as VLC media player. Saving as a VIDEO_TS folder is similar to saving as a disc image: the output quality is the same, and both methods take about the same amount of time to complete. *You can’t burn a disc from a VIDEO_TS folder*.+
    Suggest you create a disc image and then burn the DVD. File/Save as Disc Image...
    http://docs.info.apple.com/article.html?path=iDVD/6.0/en/18.html
    http://www.kenstone.net/fcphomepage/image_to_diskstone.html
    This will isolate any encoding/burning issues you may encounter. Once the disc image is created, double-click the .img and burn the virtual disc that should appear on your desktop, using Toast to burn the DVD. Disk Utility to burn the .img file. Usually, you can select a burning speed in Disk Utility.
    There are variations to this process based on which OS X you are using...
    Open Disk Utility (in Utilities folder in Applications folder), click on the virtual disc (maybe the .img) in the left-hand window. Click the Burn icon. A new window should drop down and your SuperDrive tray will open after clicking the Burn icon. Insert a recordable DVD. (Verbatim DVD-R preferred by me.) Click the Close button. Wait. Select a burn speed. If you hold your mouse cursor over the pop-up it says: "Select a slower speed to work around burn failures," so select 4x or slower for best results. Then click the Burn button.
    -->If the virtual disk selection won't allow you to click the Burn icon, use the .img file instead. This may have changed in 10.3.9 and did change in Tiger.
    Also, you can use DVD Player to play the virtual disk to check your iDVD project before burning to DVD. Launch DVD Player. File/Open VIDEO_TS (Open DVD Media... in Player 4.6). Find the VIDEO_TS folder and open that. (The audio folder is for DVD-Audio disks.)
    http://docs.info.apple.com/article.html?artnum=93006

  • Wait for field to equal to value not working in Sharepoint desginer 2013

    Hi ,
    I have two Work flow
    WF1 & WF2
    In below image WF2 it will update a list column where WF1 work flow In Progress
    In WF1
    It wait for Other Task Parallel value equal to started.
    WF2 Update the list correctly but WF1 not work properly but
    when I update list Item then it works fine for WF1 .
    Please let me know if any thing wrong.
    Regards
    Sachin

    Hi cameron,
    We have two list as mention below
    Agent list -Attach WF1
    Task list-Attach WF2
    WF1 one wait for action change column value from WF2
    WF2 update a column value as show in fig above perfectly fine, where WF1 in waiting state to get the status.
    but status is already updated.
    When I have edit the same  item in which WF2 update its column value then my WF1 working fine for " wait for Other Task Parallel value equal to started" action in my Agent list.
    Regards
    Sachin

  • CFGRIDCOLUMN VALUES Not Working

    I would like my editable CFGRID to display a list in some of
    the CFGRIDCOLUMN's. I have been unsuccessful at displaying values
    for user selection when using the values attribute. Any ideas out
    there? thx
    <cfformgroup type="page" label="Vision">
    <cfgrid name="gridVision"
    query="Vision"
    insert="no"
    delete="no"
    rowheaders="no"
    selectmode="edit"
    height="100">
    <cfgridcolumn select="no" name="visionTestID"
    display="no">
    <cfgridcolumn select="yes" name="enterDate"
    header="Screening Date" width="100">
    <cfgridcolumn select="yes" name="TestType" header="Test Type"
    values="Instaline, Blackbirds">
    <cfgridcolumn select="yes" name="TestNumber">
    <cfgridcolumn select="yes" name="Glasses" header="Glasses"
    values="Tested With, Lost-Broken, Forgotten">
    <cfgridcolumn select="yes" name="BothEyes" header="Both
    Eyes Result">
    <cfgridcolumn select="yes" name="LeftEye" header="Left Eye
    Result">
    <cfgridcolumn select="yes" name="RightEye" header="Right
    Eye Result">
    <cfgridcolumn select="yes" name="Result" header="Pass or
    Fail">
    <cfgridcolumn select="yes" name="visionReferral"
    type="boolean" header="Referral">
    <cfgridcolumn select="yes" name="ScreenerID"
    header="ScreenerID">
    </cfgrid>

    If you are using flash form. This is how I would do it. The
    value does not work because it's a title for the grid.
    <cfform format="Flash" name="Vision" height="250"
    width="1000" preservedata="yes" style="marginTop: 0;
    background-color:##CCCCCC;">
    <cfformgroup type="horizontal">
    <cfgrid name="VisionGrid" query="Vision" format="Flash"
    rowheaders="No" autowidth="yes" onchange="for (var i:Number = 0;
    i<Glasses.length; i++) {if (Glasses.getItemAt(
    ).data == VisionGrid.selectedItem.Glasses) Glasses.selectedIndex
    = i}">
    <cfgridcolumn select="no" name="visionTestID"
    display="no">
    <cfgridcolumn select="yes" name="enterDate"
    header="Screening Date" width="100">
    <cfgridcolumn select="yes" name="TestType" header="Test
    Type" values="Instaline, Blackbirds" width="100" >
    <cfgridcolumn select="yes" name="TestNumber"
    width="100">
    <cfgridcolumn select="yes" name="Glasses"
    header="Glasses" values="Tested With, Lost-Broken, Forgotten"
    width="100">
    <cfgridcolumn select="yes" name="BothEyes" header="Both
    Eyes Result" width="100">
    <cfgridcolumn select="yes" name="LeftEye" header="Left
    Eye Result" width="100">
    <cfgridcolumn select="yes" name="RightEye" header="Right
    Eye Result" width="100">
    <cfgridcolumn select="yes" name="Result" header="Pass or
    Fail" width="100">
    <cfgridcolumn select="yes" name="visionReferral"
    type="boolean" header="Referral" width="100">
    <cfgridcolumn select="yes" name="ScreenerID"
    header="ScreenerID" width="100">
    </cfgrid>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfformitem type="text" width="75">Test
    Number:</cfformitem>
    <cfinput type="text" name="TestNumber" width="170"
    bind="{VisionGrid.dataProvider[VisionGrid.selectedIndex]['TestNumber']}"
    onChange="VisionGrid.dataProvider.editField(VisionGrid.selectedIndex,
    'TestNumber', TestNumber.text);"/>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfformitem type="text"
    width="75">Glasses:</cfformitem>
    <cfselect name="Glasses" width="170" size="1"
    onchange="VisionGrid.dataProvider.editField(VisionGrid.selectedIndex,
    'Glasses', Glasses.selectedItem.data);">
    <option value="Tested Withmin">Tested
    With</option>
    <option value="Lost-Broken">Lost-Broken</option>
    <option value="Forgotten">Forgotten</option>
    </cfselect>
    </cfformgroup>
    </cfform>

  • Book mark is not working on EP Portal

    Dear All,
    I'm trying for bookmark on EP portal but it was not working.When I click the bookmark option noting happened. My address bar url also not changed.
    Please help ......
    Regards,
    Sasi
    Message was edited by: Sasidhar B

    Hi,
    After you click on bookmark, you should note a slight change in the URL dsplayed in the address bar ( I think that the keyword BOOKMARK with the BOOKMARK id gets added in the URL). At this stage, you should add the URL to your browser favorites.
    The bookmark saves the url in your favorites list in your web browser.
    After clicking that entry from the favorites list you should be normally prompted for a user name and password to the EP, and then the report should display.
    Should be straightforward. If that's not the issue, post your finsings (and don't forget to assign points if this is useful).
    Regards,
    Xibi

  • Why does marking faces not work in photoshop elements 11?

    I follow all the instructions and get flagged "No new people found in your selection". When I select an individual photo a square appears round around faces asking "Who is this". So I am having to mark faces in each individual photo and with over 6000 photo's this is a big task. Marking photo's worked well in Elements 10

    PSE simply uses the system fonts. Have you installed the font in the default location?
    Are you using a small font size on a large resolution image?

  • Scale to Fit not working

    I use very high resolution monitors in my office and most of the client PCs show up tiny in the logmin app window.  Resizing the window results in a large window with a huge black border... why can't the default be to scale to the window size like Teamviewer or just any other remote access program? ok, so resizing doesn't work, but me thinks "ah ha! the Scale to Fit button will do the job" - WRONG!  It does nothing.  Instead I have to use Zoom until it sort of fills the window.  What am I missing?  How do I get Scale to Fit to work? Thanks 

    Welcome to the forum.
    Unfortunately, you've posted to the wrong sub-forum. You want the PrPro Forum for CS3.
    Now, the MOD's will probably move this one to that location for you, but in the meantime, can you tell us in full detail what your Project Preset is and also the full details of your source footage? Next, give a description of your Export settings.
    That will likely point up where the error is.
    Good luck,
    Hunt

  • Php redirect based on value not working?

    Hello, i have a signup page, a login page, failed.php and a landing page once they have signed up.
    the user signs up (application-formP1.php) then once they have done this they are redirected to the next page (application-formP2.php) they then have other information to add.
    on application-formP1.php there is a redirect that if the user has finished with the page (completed it) they are directed to application-formP2.php
    if($status == "P1complete")
              header("location: application-formP2.php");
    the trouble i am having is if i just try to access application-formP1.php ( which is the signup page) it is automatically sending the user to application-formP2.php even if they are not signed in then because they are not signed in it is sending the user to the failed page (obiously because the retstrict user is working)
    i have included the code below for application-formP1.php
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO LettingsTenApp (tenID, progress, tenTitle, tenUsername, tenPassword, tenSex, tenEmail, tenDobDD, tenDobMM, tenDobYY, tenDepend, tenMarital, tenPrevSurn, tenEmployTyp, tenNINumber) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['tenID'], "int"),
                                                         GetSQLValueString($_POST['progress'], "text"),
                           GetSQLValueString($_POST['tenTitle'], "text"),
                           GetSQLValueString($_POST['tenUsername'], "text"),
                           GetSQLValueString($_POST['tenPassword'], "text"),
                           GetSQLValueString($_POST['tenSex'], "text"),
                           GetSQLValueString($_POST['tenEmail'], "text"),
                           GetSQLValueString($_POST['tenDobDD'], "text"),
                           GetSQLValueString($_POST['tenDobMM'], "text"),
                           GetSQLValueString($_POST['tenDobYY'], "text"),
                           GetSQLValueString($_POST['tenDepend'], "text"),
                           GetSQLValueString($_POST['tenMarital'], "text"),
                           GetSQLValueString($_POST['tenPrevSurn'], "text"),
                           GetSQLValueString($_POST['tenEmployTyp'], "text"),
                           GetSQLValueString($_POST['tenNINumber'], "text"));
      mysql_select_db($database_Letting, $Letting);
      $Result1 = mysql_query($insertSQL, $Letting) or die(mysql_error());
      $insertGoTo = "application-formP2.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    mysql_select_db($database_Letting, $Letting);
    $query_rsTenant = "SELECT * FROM LettingsTenApp";
    $rsTenant = mysql_query($query_rsTenant, $Letting) or die(mysql_error());
    $row_rsTenant = mysql_fetch_assoc($rsTenant);
    $totalRows_rsTenant = mysql_num_rows($rsTenant);
    $status = $row_rsTenant['progress'];
    // Redirect user if thier application is completed
    if($status == "P1complete")
              header("location: application-formP2.php");
    and the form
    <form action="<?php echo $editFormAction; ?>" method="post" name="form1" >
            <input type="submit" value="Save &amp; continue" />
            <input type="hidden" name="progress" value="P1complete" />
            <input type="hidden" name="MM_insert" value="form1" />
    </form>
    thanks

    i noticed i dint have the session variable on the form i have now included this
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "failed.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO hostLettingsTenApp (tenID, progress, tenTitle, tenUsername, tenPassword, tenSex, tenEmail, tenDobDD, tenDobMM, tenDobYY, tenDepend, tenMarital, tenPrevSurn, tenEmployTyp, tenNINumber) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['tenID'], "int"),
                                                         GetSQLValueString($_POST['progress'], "text"),
                           GetSQLValueString($_POST['tenTitle'], "text"),
                           GetSQLValueString($_POST['tenUsername'], "text"),
                           GetSQLValueString($_POST['tenPassword'], "text"),
                           GetSQLValueString($_POST['tenSex'], "text"),
                           GetSQLValueString($_POST['tenEmail'], "text"),
                           GetSQLValueString($_POST['tenDobDD'], "text"),
                           GetSQLValueString($_POST['tenDobMM'], "text"),
                           GetSQLValueString($_POST['tenDobYY'], "text"),
                           GetSQLValueString($_POST['tenDepend'], "text"),
                           GetSQLValueString($_POST['tenMarital'], "text"),
                           GetSQLValueString($_POST['tenPrevSurn'], "text"),
                           GetSQLValueString($_POST['tenEmployTyp'], "text"),
                           GetSQLValueString($_POST['tenNINumber'], "text"));
      mysql_select_db($database_hostLetting, $hostLetting);
      $Result1 = mysql_query($insertSQL, $hostLetting) or die(mysql_error());
      $insertGoTo = "application-formP2.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    $colname_rsTenant = "-1";
    if (isset($_POST['P1complete'])) {
      $colname_rsTenant = $_POST['P1complete'];
    mysql_select_db($database_hostLetting, $hostLetting);
    $query_rsTenant = sprintf("SELECT progress FROM hostLettingsTenApp WHERE tenID = %s", GetSQLValueString($colname_rsTenant, "int"));
    $rsTenant = mysql_query($query_rsTenant, $hostLetting) or die(mysql_error());
    $row_rsTenant = mysql_fetch_assoc($rsTenant);
    $totalRows_rsTenant = mysql_num_rows($rsTenant);
    $status = $row_rsTenant['progress'];
    // Redirect user if thier application is completed
    if($status == "P1complete")
              header("location: application-formP2.php");
    ?>
    but it still is staying on this page if the column "progress" has "P1complete " in it

  • Add People and Mark Face not working in Organizer 13

    Have not been able to tag 1 person since installing PSE 13 and 13.1.
    "Add People" finds no people in any picture, and the flag informing that analysis has been run is not set, so "Mark Face" can not be used. Have tried the procedure "Troubleshooting face recognition issues in Organizer" without success. Help!

    Einar,
    Please try out following steps:
    1. Go to Preferences (Ctrl +K) > Media Analysis
        and verify that the check box for 'Analyze Photos for People Automatically' is checked.
    2. In Media room > Go to View and see People Recognition option is checked.
    Now tr out your workflow and see if it helps.
    In case it still does not start , Create a new catalog and Import some media with faces in them.
    Now run Add People on the media you imported in new catalog and see if it starts working.
    In case it starts, try switching to your older catalog and run Add people again.

Maybe you are looking for