Dynamic photo viewer ?

Hello, I have a library of images all with Photoshop embedded
metadata keywords.
I want to create a Flash picture viewer. that will allow a
user to dynamically generate a gallery based on metadata keyword
entries ?
Where would I start to implement this sort of gallery ?
ie. are there any packages out there already that offer this
sort of functionality ?
Thanks for any leads.

Have you seen this?
http://www.adobe.com/devnet/dreamweaver/articles/spry_photo_album.html

Similar Messages

  • I can't modify a photo viewer AS3 file

    I found a photo viewer tutorial that fascinates me, and the
    author allows use and modification. I like the way it looks except
    for the 10 buttons (which I believe are present via XML). I need
    tips on how I should go about replacing the buttons with a
    scrolling thumbnails movie clip I have. Thus, I will need to assure
    that the image sizes of the gallery coincide with the positioning
    of my scrolling thumbnails because my thumbnails are 100x100.
    I believe the code was created dynamically based on the
    number of items loaded from the xml file (10), and it centers to
    the top of the stage.
    yours sincerely

    Unlock the lock in that window & change it to Read & Write, assuming this file is on your hard drive.

  • All Photos view in full screen can't happen?

    Just want to be sure I'm not missing something.  When I'm using iPhoto in full screen mode, I only have Events, Faces, Places, Albums, Projects and NO PHOTOS view.  Right?

    Wrong.  This is what I get in the Photos mode with Event Titles shown:
    Click on a photo and it goes full screen.
    This is what it looks like without Event Titles shown:
    OT

  • Problem with embeding the same view in dynamically created view container

    Hello Experts,
                  I am getiing a dump when i try to embed the same view inside the dynamically created view container of
    dynamically created tabs of a tabstrip
    The requirement go like this, i have 2 views in which i have have to embed the 2nd view to view1 where i have an empty
    tabstrip without tabs. During runtime i create tabs as well as view containers accordingly and then try to embed view2 in tabs.
    I have put the below mentioned code in HANDLEIN,
      DATA: lref_vcntlr  TYPE REF TO if_wd_view_controller,
            lref_comp    TYPE REF TO if_wd_component_usage,
            lv_embed_pos TYPE string.
      lref_vcntlr = wd_this->wd_get_api( ).
      lv_embed_pos = 'FILE_PERS_EDIT/VC_GENERAL'.
      TRY.
          CALL METHOD lref_vcntlr->do_dynamic_navigation
            EXPORTING
              source_window_name        = 'FILE_PERSISTENCE_WND'          " Window
              source_vusage_name        = 'FILE_PERS_EDIT_USAGE_1'       " Source View usage
              source_plug_name          = 'TO_EDIT_LAYOUT'                       " Outbound plug
              target_view_name          = 'PERS_EDIT_LAYOUT'                  " Second view to be embedded
              target_plug_name          = 'IN'                                                  " Second view inboun plug
              target_embedding_position = lv_embed_pos
            RECEIVING
              component_usage           = lref_comp.
        CATCH cx_wd_runtime_repository .
      ENDTRY.
      wd_this->fire_to_edit_layout_plg( ).
    This works fine for the first time.
    However onaction tab select i change the embeding position( 'FILE_PERS_EDIT/view container name of different tab') of the view2 an try to embed view2 in a different tab.
    At this point i get a dump stating View2 already present in the window 'FILE_PERSISTENCE_WND' of component.
    I think, the view2 embediing has to be removed before i add the view2 in a different tab
    Kindly let me know how to remove view2 embedding from tab1 before i add a view2 to a different tab or is there any other
    means to handle this problem?
    Thanks & Best Regards,
    Srini.

    Hello Srini,
    I found a solution to your problem, because I had a similar task.
    In WDDOINIT I changed the method do_dynamic_navigation to if_wd_navigation_services_new~prepare_dynamic_navigation:
    DATA:
        l_view_controller_api TYPE REF TO if_wd_view_controller.
      l_view_controller_api = wd_this->wd_get_api( ).
      TRY.
          CALL METHOD l_view_controller_api->if_wd_navigation_services_new~prepare_dynamic_navigation
            EXPORTING
              source_window_name        = 'WDW_MAIN'
              source_vusage_name        = 'VW_SUB_USAGE_1'
              source_plug_name          = 'TO_VW_CONTENT'
              target_component_name     = 'ZTEST_DYNAMIC'
              target_view_name          = 'VW_CONTENT'
              target_plug_name          = 'DEFAULT'
              target_embedding_position = 'VW_MAIN/VC_TAB.VW_SUB/TAB1_VC'
            RECEIVING
              repository_handle         = wd_this->g_rep_handle.
        CATCH cx_wd_runtime_repository .
      ENDTRY.
      wd_this->fire_to_vw_content_plg( param1 = 'TAB1' ).
    In the action I first deleted the navigation targets, then navigated to the empty-view and last I called my target view:
      DATA:
        lv_position           TYPE string,
        l_view_controller_api TYPE REF TO if_wd_view_controller,
        lr_view_usage         TYPE REF TO if_wd_rr_view_usage,
        lr_view_***_t         TYPE wdrr_vca_objects,
        lr_view_***           LIKE LINE OF lr_view_***_t.
      l_view_controller_api = wd_this->wd_get_api( ).
      lr_view_usage = wd_this->g_view->get_view_usage( ).
      lr_view_usage->delete_all_navigation_targets( plug_name = 'TO_VW_CONTENT' ).
      CLEAR lv_position.
      CONCATENATE 'VW_MAIN/VC_TAB.VW_SUB/' old_tab '_VC' INTO lv_position.
      TRY.
          l_view_controller_api->if_wd_navigation_services_new~do_dynamic_navigation(
          source_window_name = 'WDW_MAIN'
          source_vusage_name = 'VW_SUB_USAGE_1'
          source_plug_name   = 'TO_EMPTYVIEW'
          target_component_name = 'ZTEST_DYNAMIC'
          target_view_name   = 'EMPTYVIEW'
          target_plug_name   = 'DEFAULT'
          target_embedding_position = lv_position ).
        CATCH cx_wd_runtime_repository.
      ENDTRY.
      CLEAR lv_position.
      CONCATENATE 'VW_MAIN/VC_TAB.VW_SUB/' tab '_VC' INTO lv_position.
      TRY.
          wd_this->g_rep_handle = l_view_controller_api->if_wd_navigation_services_new~prepare_dynamic_navigation(
            source_window_name = 'WDW_MAIN'
            source_vusage_name = 'VW_SUB_USAGE_1'
            source_plug_name   = 'TO_VW_CONTENT'
            target_component_name = 'ZTEST_DYNAMIC'
            target_view_name   = 'VW_CONTENT'
            target_plug_name   = 'DEFAULT'
            target_embedding_position = lv_position ).
        CATCH cx_wd_runtime_repository.
      ENDTRY.
      wd_this->fire_to_vw_content_plg( param1 = tab ).
    Ann.: I my example, I had 3 views: VW_MAIN which embedds VW_SUB. VW_SUB has the tabs in it and VW_SUB embedds VW_CONTENT.
    BR,
    Roland

  • Is it even possible to dynamically apply view criteria in an ADF Web App?

    This is one of those situations where something that should take an hour ends up taking days.
    * I have a view.
    * The view has Bind Variables associated with it.
    * The view has View Criteria associated with it.
    * Each of the View Criteria use different Bind Variables.
    * I have a search criteria input page that receives from the user what will ultimately be used to set the bind variables.
    * I have a search results page that uses the view to display a table.
    * I have the code that dynamically sets view criteria and parameters. It is based on the following:
    http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcadvvo.htm#BCGFHAGA
    * This code works great, until the iterator associated with the table binding to the view is initialized. At that time, the view is reset to its defaults, and all of my code's doings are discarded. How do I know this? Because I have gone so far as to run my code that sets view criteria and binding variables dynamically in a phase event handler for the search results page in the render response phase. There is no other point at which to dynamically modify the view.
    This is turning into a situation where it seems I will need 5 different views and 5 different pages in order to show a single set of query results. I cannot get dynamically applied view criteria to work in an ADF web app. Has anyone else done it? Can anyone relate to this? Are there any other suggestions before I conclude that it's not possible for this framework to handle this simple scenario?
    Thanks

    There must be a setting or something that I am still missing here. If I write code just like this and make sure it is executed, I still only see the results of my view executed without the view criteria applied using the default bind variable values that I supplied in the view object.
    It's like the fact that I set the bind variables, the view criteria, and executed the view query programmatically is lost on the iterator -- it's like it never happened. What setting is used to ensure that the iterator uses the outcome of what I executed programmatically? There has to be a critical set or setting that I am missing.
    Here is the iterator and search region definitions defined in the page def "executables" section:
      <executables>
         <iterator Binds="CustomSearchView1" RangeSize="25"
                  DataControl="AppModuleDataControl"
                  id="CustomSearchView1Iterator"/>
        <searchRegion Binds="CustomSearchView1Iterator"
                      Customizer="oracle.jbo.uicli.binding.JUSearchBindingCustomizer"
                      id="CustomSearchView1Query"/>
        </executables>Here's the "tree" binding in the page def file:
      <bindings>
       <tree IterBinding="CustomSearchView1Iterator" id="CustomSearchView1">
          <nodeDefinition DefName="Model.CustomSearchView" Name="CustomSearchView10">
            <AttrNames>
              <Item Value="CustomId"/>
              <Item Value="CustomProjectNumber"/>
              <Item Value="CustomName"/>
              <Item Value="CustomStatus"/>
              <Item Value="CustomStatusDate"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
      </bindings>In an effort to take page flow out of this mess, I had modified this to include the search criteria and search results on a single page. So, I now have a "Search" button. When the "Search" button is clicked, the action method does the following:
        public String searchActionListener ()
              // Get search criteria from select one choice and text input controls.
              AppModule appModule =
                    ( AppModule ) Configuration.createRootApplicationModule (
                        "Model.AppModule",
                        "AppModuleLocal");
              appModule.customSearch( searchCriteria1,
                                                   searchCriteria2,
                                                   searchCriteria3 );
        }In my application module this translates to:
        public void customNoticeSearch ( String searchCriteria1, String searchCriteria2, String searchCriteria3)
           CustomSearchViewImpl searchViewImp =
               ( CustomSearchViewImpl ) this.getCustomSearchView1 ();
           searchViewImp.customExecuteQuery ( searchCriteria1, searchCriteria2, searchCriteria3);
        }Finally, in my custom view object implementation code:
        public void customExecuteQuery ( String searchCriteria1, String searchCriteria2, String searchCriteria3 )
            // Set-up the parameters that are part of the core query.
            this.setp_searchCriteria1( searchCriteria1);
            this.setp_searchCriteria2( searchCriteria2);
            if ( searchCriteria3 != null )
                ViewCriteriaManager vcm = this.getViewCriteriaManager();
                ViewCriteria vc = vcm.getViewCriteria ( "WithLastCriteria" );
                this.setp_searchCriteria3( new Number ( searchCriteria3 ) );
                this.applyViewCriteria( vc );
            System.out.println ("This is fun.");
            this.executeQuery();
        }This code executes, but the results table is empty, and I know that there are results, because I can execute use execute with params to execute the base query and get the correct results back.
    Thanks for taking a look at this.

  • Can't open a link in a web page, goes immediately to down load and then when opened it shows downloaded to windows photo viewer, which won't open

    I open a web page, in the web page there is a link to open another link. I click on this link and the doc is 'downloaded' automatically , I click on the 'green arrow' download button at top of screen, the page opens and says 'windows photo viewer can't open the picture because photo viewer doesn't support this file format or you don't have the latest update to photo viewer'!! I just want to open the link. Grateful for advice.

    Where is that happening? Please provide the URL.

  • No more key photos in "Photos" view?

    After upgrading, I can no longer see key photos in "Photos" view. Is this a setting that I can change, or did iPhoto '11 drop this feature?

    It appears that that is a change in '11
    LN

  • My photos always seem to look darker in photoshop elements than when I view them in windows photo viewer - and now I have purchased the annual contract for photography cloud they look exactly the same in PS CC6 as they do in photo viewer - but I still use

    My photos always seem to look darker in photoshop elements than when I view them in windows photo viewer - and now I have purchased the annual contract for photography cloud they look exactly the same in PS CC6 as they do in photo viewer - but I still use PS Elements 12 for some tasks and they still appear slightly darker in there - any ideas? - Regards Robert

    My photos always seem to look darker in photoshop elements than when I view them in windows photo viewer - and now I have purchased the annual contract for photography cloud they look exactly the same in PS CC6 as they do in photo viewer - but I still use PS Elements 12 for some tasks and they still appear slightly darker in there - any ideas? - Regards Robert

  • In new iOS 8 photos app, I am missing photos in photo view that are in album view

    All my photos in the iPhoto app on my iMac appear correctly in the album view in the new Photos app on my iPhone 6.  However, not all the photos appear in the photos view.  To try and get the counts to match, in iTunes, I synced my iPhone after unchecking the syncing of photos.  I checked the Photos app on my iPhone and there were no photos.  Then I checked to sync all photos in iTunes and synced my iPhone again.  Every photo on my iMac was in the album view, but there were still missing photos in the photo view.
    Anyone have this problem and a solution?

    Thanks for your response.  Turns out the iPhotos database was corrupted.  I rebuilt it and now the counts match.
    I do have summarize photos turned off as you suggested.
    But now I have a new problem.  I have smart albums in iPhoto on my iMac that correspond to decades.  These albums and the photos they contain appear perfectly in the album view on my iPhone 6.  However, a few photos in the photos view appear with the wrong date.  So I'm working on resolving this.

  • Dynamically embed View into View Container UI Element

    Hi all,
    I'm searching for a possibility to embed a view into a dynamically created View container element.
    I want to do this out of another view, where a tabstrip is contained. So I have a button on this view for generation of a new tab with an view container element in it. Now I got to the point where I have to set the view to this container within the tab strip.
    I read several blogs and articles, where this is done via the window manager within an method of the window, but non how to do this within a view.
    Any ideas?
    Thanks
    Olli

    HI,
    that's nit what I wanted. What I want to do is a kind of table maintenance. There is a button under the tabstrip for creating a new row. If the user klicks on that button a new tab should be created for the new row. Therefore the view on the tabs are always the same.
    I have created the tabstrib. dynamically add a tab to this strip on button press is no problem. Also a ViewContainerElement is created. But now I have to set the statically created view for the row maintenance into the container.
    Thanks
    Ragards
    Olli

  • Officejet pro 8000 wireless will not print from windows photo viewer. all other diagnostics ok.

    OS is Windows 7 Home Premium x 64. All functions and printing are ok with this unit, excepting for printing through Windows Photo Viewer. Have latest software, drivers, etc., and all HP software and hardware diagnostic tools check out ok.
    Checked Windows event log, and get Event 350, PrintService - Document  failed to print and was deleted because of corruption in the spooled file. The associated driver is: . Try printing the document again.
    There is no additional info on this event listed in the Microsoft TechNet Events and Errors Message Reporting Center
    When this happens, all of the lights on the printer flash very rapidly.
    To correct, I clear the queue through Explorer, Troubleshoot, and unplug printer to reset.
    Any suggestions appreciated.
    Thanks

    FYI, I got this to work by treating my printer as a wired printer, even though it allegedly has wireless functionality. Luckily, my ohter devices can print to it wirelessly. At least I don't need to replace my printer just yet...

  • How do I print 4x6 photos on an HP Officejet Pro 8600 Plus via Windows Photo Viewer or Gallery

    Dear Experts, I've got an HP Officejet Pro 8600 printer with just one paper tray in which I loaded 4x6 photo paper.
    The printer was purchased in January 2014, the latest drivers are installed. Now I would like to print a single 4x6 photo using Windows Photo Viewer or Gallery.I loaded the 4x6 photo paper  into the tray as indicated by the little icon labeled 4x6in, so I suppose I got the HW part right. It's just the SW part which gives me a hard time. The available paper size options in Windows Photo Viewer and Gallerydon't include photo paper sizes, just the standard paper and envelope sizes.Hence I checked in the HP Printer Assistant in "Set Preferences" what kind of paper sizes are available, and there is exactly the same list as proposed by Gallery, missing photo paper sizes. So I guess Gallery just picks the sizes from the driver and ther are no photo paper sizes. This is an issue because I prefer to print from my PC using Win 7 or Win 8 and not from a SD card or a USB stick. Any help is very welcome, thank you in advance!   

    Thank you for this link! Actually I installed a brand new Windows 8 system in January 2014 and then bought the HP Officejet Pro 8600 Plus printer a few days later. To install this printer I did not use the CD that came with it but already used this link. Just to be sure that I have the latest version I again reinstalled the driver. The result is definitive: You cannot print common photo paper sizes like 4x6,  5x7, 8x10, etc. via a PC using photo SW like HP Photo Creations, MS Gallery, Windows Photo Viewer or any other SW on a HP Officejet Pro 8600 Plus. The reason is most likely that HP marketing decided that an Officejet should not be smart enough for photos, after all the company sells also Photosmarts. Because you cannot create your own formats  you are limited by the driver to what is typically available in an office, in this case:  A4, Letter, legal, Statement, Executive, A4, A5, A6, B54 (JIS), Envelopes #10-DL-C5-C6-A2-Monarch, Japanese Postcard, Japanese Envelope Chou #3-#4, L, 2L, O**bleep**u hagaki, Index Card Letter-A4, Edge-to-Edge Letter-A4, Env. Japanese No 3-No 4 and that's it, not more. Thank you anyway for trying to help me but in this case only the SW developers in HP can help.It would be great to be able to print from time to time a 4x6 photo on this printer like I would do.Copying photos on a USB stick or on a SD card first and then use this way to print on the printer is too cumbersome for me.

  • Navigating through photos in single-photo view in iphoto with trackpad is not working after installing new OS Mountain lion

    I have recently download new OS Mountain lion on my macbook (white late 2010 model). I had snow leopard before.
    On iphoto, when i was viewing my photos in a single-photo view (double clicking on a photo), i was unable to go to the next photo/previous photo using my trackpad. Only way i could do this was by pressing arrow buttons on my key board.
    If i remember correctly, i was able to do this by using 3 fingers (sliding left to right or sliding right to left) on snow leopard.
    I can navigate back and foward on my internet browser using two fingers. And yes, i have tried using my two fingers on iphoto but nothing happens.
    I have checked my trackpad setting and everything seems to be right.
    Any ideas how i could fix this?
    Thank You
    p.s. i have iphoto 09

    Terence Devlin wrote:
    I can navigate back and foward on my internet browser using two fingers. And yes, i have tried using my two fingers on iphoto but nothing happens.
    This works here - but I'm on iPhoto 11. IIRC it worked on 09 too though.
    It's not working for me.

  • Dynamic Photo Gallery in Flash using AS3.0 and XML, but it doesn't work and missed up my app.

    Hi,
    I am creating an iPad app using AS3. The app contains three sections.
    One of those sections (chocolate sources)contains Dynamic Photo Gallery using XML. The photos, thumbnails, and text in this section are loaded from XML.
    I faced may issue when I tried to run this app:
    The gallery photos didn't show up
    The thumbnails (buttons to navigate the photo gallery) didn't show up at all. (The thumbnails should show up under the photo gallery box.)
    The text doesn't show up (the text should be in every photo as describtion)
    I want to include Swipe in the photo gallery, how can I do that?
    When I click on "Chocolate Sources" button, the photo gallery appears in every section, here are print screens describe what I mean:
    The photo gallery covers the home screen too.
    Here is my XML:
    <?xml version="1.0" encoding="utf-8"?>
    <sources>
              <section>
                        <details>
                                            Cocoa tree exists in the tropics area, such as Central and South America.
                                  </details>
                                            <image>
                                                      <url>coca1.jpg</url>
                                                      </image>
                                                      </section>
              <section>
                        <details>
                        Cocoa is supplied in many countries such as Indonesia, Ghana, Brazil, Ecuador and Cameroon.
                        </details>
                                  <image>
                                  <url>coca2.jpg</url>
                                  </image>
                                            </section>
              <section>
                                  <details>
                                  Dark chocolate helps to relax and reduce the stress and blood pressure because it has antioxidants elements, which helps in vasodilatory process.
                                  </details>
                                            <image>
                                            <url>coca3.jpg</url>
                                                      </image>
                                                                </section>
              <section>
                        <details>
                        Chocolate provides energy and hyperactive sometimes because it contains high level of caffeine and sugar.
                        </details>
                                  <image>
                                  <url>coca4.jpg</url>
                                            </image>
                                                      </section>
              <section>
                        <details>
                        Chocolate could be mixed with many different flavors, such as mint, strawberry, orange, banana, vanilla, hazelnut, almond, coconut, and etc.
                        </details>
                                  <image>
                                  <url>coca5.jpg</url>
                                  </image>
                                            </section>
              <section>
                        <details>
                                  Chocolate is expressing of well hospitality and good time due to its lovely taste.
                                  </details>
                                            <image>
                                            <url>coca6.jpg</url>
                                                      </image>
                                                                </section>
    </sources>
    And here is my Action Script for "Chocolate Sources" section:
    stop();
    function Choco1(evt:MouseEvent): void {
              gotoAndStop('16');
    choco_btn.addEventListener(MouseEvent.CLICK,Choco1);
    function Souc1 (evt:MouseEvent): void {
              gotoAndStop ('31');
    souc_btn.addEventListener(MouseEvent.CLICK,Souc1);
    function ShopIn1 (evt:MouseEvent):void {
              gotoAndStop('46');
    shops_btn.addEventListener(MouseEvent.CLICK,ShopIn1);
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import fl.motion.MotionEvent;
    import flash.events.MouseEvent;
    import flash.sampler.NewObjectSample;
    import flash.text.TextFormat;
    var xmlLoader: URLLoader = new URLLoader (new URLRequest("sources.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, finishedXmlLoader);
    var xmlFile:XML;
    var xextend:int = 10;
    var gal:galary = new galary ();
              gal.x = 85;
              gal.y = 165;
              addChild(gal);
    var txfe: TextField = new TextField ();
    txfe.x = 25;
    txfe.y = 45;
    var tformat:TextFormat = new TextFormat ();
    tformat.bold = true;
    tformat.color = 0xFFFFFF;
    tformat.size = "18";
    tformat.font = "Arial";
    txfe.defaultTextFormat = tformat;
    addChild(txfe);
    function finishedXmlLoader (e:Event): void{
              xmlFile = new XML (xmlLoader.data);
              var leng:int = xmlFile.image.length();
              txfe.text = xmlFile.image.details[0];
              for (var i:int = 0;i<leng;i++){
                        var b:thumbs = new thumbs ();
                        b.x = xextend;
                        b.y = 480;
                        b.buttonMode = true;
                        b.details = (i+1).toString();
                        addChild(b);
                        b.addEventListener(MouseEvent.MOUSE_OVER, theMosover);
                        b.addEventListener(MouseEvent.MOUSE_OUT, theMosout);
                        b.addEventListener(MouseEvent.CLICK, onMosClick);
                        var bloader:Loader = new Loader();
                        bloader.load(new URLRequest("thumbs/" + (i+1) + ".jpg"));
                        b.addChild(bloader);
                        xextend += b.width + 50;
    var loader:Loader = new Loader ();
    loader.load(new URLRequest ("pictures/coca1.jpg"));
    gal.addChild(loader);
    function theMosover(m:MotionEvent):void{
              m.currentTarget.alpha = 0.5;
    function theMosout (m:MouseEvent):void{
              m.currentTarget.alpha = 1.0;
    function onMosClick(m:MouseEvent):void{
              var loader:Loader = new Loader();
              loader.load(new URLRequest("pictures/" + m.currentTarget.details + ".jpg"));
              gal.addChild(loader);
              txfe.text = xmlFile.image.details[int(m.currentTarget.details) -1];
    I need an urgent help to fix the errors and make this section work well.
    thanks.

    try:
    txfe.text = xmlFile.section[int(m.currentTarget.details) -1].details;
    instead of
    txfe.text = xmlFile.image.[int(m.currentTarget.details) -1];
    and add your thumbs to gal, not the stage.  when you're done with the gallery, remove gal.

  • Dynamic photo gallery in flex

    superb post for a Dynamic photo gallery using a xml generated flex application http://flexlearner.wordpress.com/2009/09/04/dynamic-photo-gallery-in-flex/

    try:
    txfe.text = xmlFile.section[int(m.currentTarget.details) -1].details;
    instead of
    txfe.text = xmlFile.image.[int(m.currentTarget.details) -1];
    and add your thumbs to gal, not the stage.  when you're done with the gallery, remove gal.

Maybe you are looking for

  • ITunes 6.0.1.3 installation problems

    I have problems installing the latest iTunes update. I get this message when I try to run itunes: "iTunes.exe has generated errors and will be closed by Windows. You will need to restart the program. An error log has been created." In my log I find m

  • Text not appearing in Design view

    There is a twist here... One one mac with CS5 Dreamweaver  the text  shows up in the design window just file On ANOTHER mac with CS5 Dreamwearer certain text doesn't show up.  The text is black so that isn't an issue.  Why would there be a difference

  • Error after setting up new Taskflow

    I have copied the existing taskflow in HRMS application "US HRMS PERSON TASKFLOW" and created a new one. Every node in the new taskflow is the same as the old one, only I have added one node in this new taskflow. However, after assigning this taskflo

  • Deleting a locked file

    Hello all, I recently bought a Macbook Pro to replace my WinXP laptop. I'm really enjoying it so far, just one question: I am using an external hard drive to transfer some files from my old machine to the Macbook. I dragged and dropped a folder full

  • Unable to run validate_layer procedure

    Hi, I never able to execute validate_layer procedure. Although I can use validate_geometry procedure for all records in the table, but it is easy to run validate_layer instead. I just like to know what is the error in statement. I have tried the proc