Xml slideshow playback controls issue

Hi, I'm trying to create a picture slideshow which can be controled by the user with play / stop / next buttons. I've managed to program the play / stop events with success, but I'm stuck trying to create the next button event since it doesn´t work properly. The first time I hit the next button it takes me to the same picture that has been currently loaded, the second time I hit the next button it works as expected, takes me to the next image.
I appreciate your help, thank you in advance.
Here's the Code:
import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;
stop();
//Escondo botones navegación
navigation.visible = false;
//Declaro/inicio variables
var loadernike:loadercreditos = new loadercreditos();
var my_speed:Number;
var my_total:Number;
var my_images:XMLList;
var my_loaders_array:Array = [];
var my_labels_array:Array = [];
var my_success_counter:Number = 0;
var my_playback_counter:Number = 0;
var my_contador_next:Number = 0;
var my_slideshow:Sprite = new Sprite();
var my_image_slides:Sprite = new Sprite();
var my_label_slides:Sprite = new Sprite();
var my_preloader:TextField;
var my_timer:Timer;
var my_prev_tween:Tween;
var my_tweens_array:Array = [];
var my_xml_loader:URLLoader = new URLLoader();
//Precarga xml
my_xml_loader.load(new URLRequest("images/interior/NIKE/slideshow.xml"));
my_xml_loader.addEventListener(Event.COMPLETE, processXML);
var htmlContent:TextField;
function processXML(e:Event):void
    var my_xml:XML = new XML(e.target.data);
    my_xml.ignoreWhitespace = true;
    //htmlContent = my_xml.title.text();
    my_speed = my_xml. @ SPEED;
    my_images = my_xml.IMAGE;
    my_total = my_images.length();
    loadImages();
    trace("imag", my_images);
    my_xml_loader.removeEventListener(Event.COMPLETE, processXML);
    my_xml_loader = null;
function loadImages():void
    for (var i:Number = 0; i < my_total; i++)
        var my_url:String = my_images[i]. @ URL;
        var my_loader:Loader = new Loader();
        my_loader.load(new URLRequest(my_url));
        my_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
        my_loaders_array.push(my_loader);
        //formateo texto;
        var myFont = new Font1();
        var myFormat:TextFormat = new TextFormat();
        myFormat.align = TextFormatAlign.RIGHT;
        myFormat.font = myFont.fontName;
        var my_label:TextField = new TextField();
        my_label.textColor = 0xffffff;
        my_label.embedFonts = true;
        my_label.antiAliasType = AntiAliasType.ADVANCED;
        my_label.defaultTextFormat = myFormat;
        my_label.text = my_images[i]. @ TITLE;
        //my_label.autoSize = TextFieldAutoSize.LEFT;
        my_label.width = 450;
        my_label.background = true;
        my_label.border = true;
        my_label.backgroundColor = 0x000000;
        //my_label.htmlText = htmlContent;// Assign the HTML content to the text field*/
        my_labels_array.push(my_label);
        //preloader;
        addChild(loadernike);
        loadernike.x = (stage.stageWidth - loadernike.width)/2;
        loadernike.y = (stage.stageHeight - loadernike.height)/2 + 50;
function onComplete(e:Event):void
    my_success_counter++;
    if (my_success_counter == my_total)
        startShow();
    var my_loaderInfo:LoaderInfo = LoaderInfo(e.target);
    my_loaderInfo.removeEventListener(Event.COMPLETE, onComplete);
function startShow():void
    removeChild(loadernike);
    loadernike = null;
    //muestro botones navegacion
    navigation.navintback.visible = false;
    navigation.visible = true;
    addChild(my_slideshow);
    my_slideshow.addChild(my_image_slides);
    my_slideshow.addChild(my_label_slides);
    my_slideshow.x = 30;
    my_slideshow.y = 160;
    nextImage();
    my_timer = new Timer(my_speed * 1000);
    my_timer.addEventListener(TimerEvent.TIMER, timerListener);
    my_timer.start();
    //boton stop;
    function clickstopboton(event:MouseEvent):void
        navigation.navintnext.gotoAndStop(1);
        if (MisGlobales.vars.i == 0 && MisGlobales.vars.h != 1)
            navigation.navint.gotoAndPlay(2);
            my_timer.stop();
        else if (MisGlobales.vars.i==1 && MisGlobales.vars.h != 1)
            //play
            navigation.navint.gotoAndPlay(1);
            my_timer.start();
        if (MisGlobales.vars.h == 1 && MisGlobales.vars.i == 0)
            navigation.navint.gotoAndStop(2);
            my_timer.stop();
        else if ( MisGlobales.vars.h == 1 && MisGlobales.vars.i == 1 )
            navigation.navint.gotoAndStop(1);
    navigation.navint.addEventListener(MouseEvent.CLICK, clickstopboton);
    navigation.navint.buttonMode = true;
    //boton next;
    function clicknextboton(event:MouseEvent):void
        my_timer.stop();
        navigation.navint.gotoAndStop(2);
        nextImage();
        my_playback_counter++;
        trace("playback_counter_next",my_playback_counter);
        if (my_playback_counter == my_total)
            my_playback_counter = 0;
    navigation.navintnext.addEventListener(MouseEvent.CLICK, clicknextboton);
    navigation.navintnext.buttonMode = true;
    //boton back;
    function clickbackboton(event:MouseEvent):void
        my_timer.stop();
        nextImage();
        my_playback_counter--;
        if (my_playback_counter == 0)
            my_playback_counter = my_total;
            my_timer.stop();
    navigation.navintback.addEventListener(MouseEvent.CLICK, clickbackboton);
    navigation.navintback.buttonMode = true;
    //slide auto
    function nextImage():void
        var my_image:Loader = Loader(my_loaders_array[my_playback_counter]);
        my_image_slides.addChild(my_image);
        my_tweens_array[0] = new Tween(my_image,"alpha",Strong.easeOut,0,1,1,true);
        var my_label:TextField = TextField(my_labels_array[my_playback_counter]);
        my_label_slides.addChild(my_label);
        my_label.x=(stage.stageWidth - 63) - my_label.width;
        my_label.y=(my_image.y+my_image.height)+7;
        my_tweens_array[1] = new Tween(my_label,"alpha",Strong.easeOut,0,1,1,true);
    function timerListener(e:TimerEvent):void
        hidePrev();
        my_playback_counter++;
        if (my_playback_counter == my_total)
            my_playback_counter = 0;
        nextImage();
        trace("playback_counter_play",my_playback_counter);
    function hidePrev():void
        var my_image:Loader = Loader(my_image_slides.getChildAt(0));
        my_prev_tween = new Tween(my_image,"alpha",Strong.easeOut,1,0,1,true);
        my_prev_tween.addEventListener(TweenEvent.MOTION_FINISH, onFadeOut);
        var my_label:TextField = TextField(my_label_slides.getChildAt(0));
        my_tweens_array[2] = new Tween(my_label,"alpha",Strong.easeOut,1,0,1,true);
    function onFadeOut(e:TweenEvent):void
        my_image_slides.removeChildAt(0);
        my_label_slides.removeChildAt(0);
    function clickbotonskb(event:MouseEvent):void
        my_timer.removeEventListener(TimerEvent.TIMER, timerListener);
        gotoAndPlay(10);
        MovieClip(root).main.main_bar.seccinteriors.my_playback_counter_sk = 0;
    skunkfunk_btn.addEventListener(MouseEvent.CLICK, clickbotonskb);
    skunkfunk_btn.buttonMode = true;
See example at:
http://www.neoconfort.com/neoconfort/Neoconfort.html

I did a workaround by using the slideshow component shown in
http://flashotaku.com/blog/slideshow-component-as3-documentation/
Thank you to FlashOtaku

Similar Messages

  • Captivate 2 Playback Control Issue

    Grretings All:
    I have a Captivate Project that utilizes buttons for all
    navigation, so I do not need to see the playback control bar,
    except I need the user to be able to use the CC button. I was able
    to go into the skin control and eliminate all the other buttons,
    except the Info (I) button. So right now the CC button and the Info
    button are displayed. Not only is the info button unneeded it looks
    bad in the design. I believe this has come up before, but I have
    not been able to find the solution. Any suggestions on how to turn
    off the Info button in Captivate 2?
    Thanks in advance,
    W. Keith

    Hi W.Keith
    You should probably contact fellow Adobe Community Expert
    Paul Dewhurst. I know Paul has done some amazing things with
    Playback Controls. Perhaps you can contract with him to assist you
    in banishing the Info button.
    Click here to visit Paul's
    site
    Cheers... Rick

  • Slideshow playback has no music. Suggestions?

    Hi All,
    Running latest LR 1.3.1, on a MacBook Pro 15" Intel, with latest Leopard updates.
    Lightroom Slideshow will play fully normal with transitions, etc., using both factory and custom user-adjusted settings. Looks great, except, there is no music.
    I do have 'Soundtrack' checked, and have tried selecting 'Music', 'Library', etc., as well as specific 'playlists'. Still get nothing, no music.
    FYI, I have noticed that when I click 'Refresh Playlist from iTunes' it is not refreshing the playlist, as in, it only shows existing older playlists. None of my more recently added playlists show up on refresh. It would seem to imply LR is not actually seeing iTunes.
    Any thoughts?
    Thanks for your help.
    Sol

    OK, I guess this is one of those "you only need this information if . . ." type deals.
    *The Problem: Lightroom won't recognize iTunes music for 'Slideshow' playback.
    *Issue creating the problem: Multiple libraries for iTunes. (This assumes you know this is an option.)
    *The Solution: Use the 'local' library only.
    When at home (and my home office) I run my larger iTunes library located on an external 160 GB HD. Apparently, Lightroom has an issue with that.
    I restarted iTunes, holding the 'Option'-Mac ('Control'-PC) and selected my local library located on my actual MacBook Pro HD. It's much smaller, but more importantly, it's located on the same drive as Lightroom. Lightroom sees it now, including 'Playlist' changes, etc. All is good now.
    Glad I could help. ;-)
    Sol

  • How do you fix scaling issue with any video playback control bar (too small to see) on Firefox 28?

    Using a 3200x1800 dpi resolution lap top (Samsung Ultrabook 9 series), when I want to play videos on a webpage, the playback control bar (runs across the bottom of a given video for settings like play, pause, sound level, etc.) is too small to see. I tried scaling using various methods, Windows 8.1 OS, Firefox ad-ons like No squint with no success. Of course, these tools work to rescale everything else but the playback control bar. This is not a problem on IE as when you rescale, everything including the playback control bar
    rescales. Thanks

    You can set the layout.css.devPixelsPerPx pref on the <b>about:config</b> page to 1.0 or on Windows 8 to 1.25 and if necessary adjust layout.css.devPixelsPerPx starting from 1.0 in 0.1 or 0.05 steps (1.1 or 0.9) to make icons show correctly.
    *http://kb.mozillazine.org/about:config
    See also:
    *https://support.mozilla.org/kb/forum-response-Zoom-feature-on-Firefox-22
    Use an extension to adjust the text size in the user interface and the page zoom in the browser window.
    You can look at this extension to adjust the font size for the user interface.
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/
    You can look at the Default FullZoom Level or NoScript extension if web pages need to be adjusted after changing layout.css.devPixelsPerPx.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • IPad mini losses playback controls/capabilities using shared library content videos

    While accessing my shared "authorized" video library on my MacBook Pro, using the latest iTunes version (as of this submission), with my sparkling new iPad mini, the playback controls simply disappear usually after a few minutes, i.e. no progress bar, buttons for stop/start/pause/"done".
    The video stream from the shared library cannot be stopped without the on-screen controls so we either attempt to turn off the unit (pressing the top on/off button) or (usually) press the home button after which the video stream/app stops then return to the expected ipad screen but the residual sound stream will continue to run indefinitely.
    Most of the time, we hit the home button to end the video playback then wait for the sound stream portion to end which on average takes up to 1-5 minutes to stop completely.
    This is repeatable too. 
    SUMMARY:
    1). Without power cycling, we can play a video from the shared librar
    2). then wait long enough for the video controls to "go missing" or again go unresponsive
    3.) then press the home button which returns you to your normal iPad screen
    4.) but the sound stream portion will take a while to take its course before ending.
    Also, we gave power-cycling between issues but the each and every time, the shared library video playback inevitably ended up with same results.
    iPad mini with iOS 6.1.3 factory , wifi only unit with legitimate software, etc. I.e. no jailbreak nonsense.
    Any suggestions?  Or is this a glitch/bug which needs addressing?  Or a simple setting on the unit?
    Thanks in advance!!!

    I have nearly the same problem, but with an iPad 3rd generation. The symptoms are exactly the same, just a different device.
    You documented the problem well, I can only add that resetting and reloading did not solve the problem for me.

  • XML Comparision Using XDX - Issue with Carriage Return key

    Hi
    I am using oracle XDX for doing a comparision between 2 xml files .I have issue is any node contains a enterkey chr(13)||chr(10) the xml shows that node as different.Even though they are same .

    Hi All,
    Ive updated the problem..with some output... essentially Ive get it to a situation wher I load ALL my records into the table but I still get a bad file with a "|" record issue and the log file still syas that Im trying to load 7 record when I only have the 6 records.
    ...............SQL statment...
    set trimpspool on
    set feedback off
    set heading off
    set linesize 500
    set pagesize 0
    spool loaddata_FP.lst
    SELECT '"'||spart.x_lsm_region||'"'||','||
    '"'||spart.x_sub_type||'"'||','||
    '"'||spart.x_origin_type||'"' ||'|'
    FROM siebel.cx_ls_part_ship spart;
    spool off
    -- sample of control file
    load data infile 'loaddata_FP.lst' "str '|'"
    into table siebel_data_fp fields terminated by "," optionally enclosed by '"'
    (x_lsm_region,
    x_sub_type,
    x_cust_face_staff,
    x_nature_partner,
    x_origin_type)
    --sample log file with error why is it telling me I have 7 records when I am processing 6?
    value used for ROWS parameter changed from 64 to 22
    Record 7: Rejected - Error on table SIEBEL_DATA_FP, column X_SUB_TYPE.
    Column not found before end of logical record (use TRAILING NULLCOLS)
    Table SIEBEL_DATA_FP:
    6 Rows successfully loaded.
    1 Row not loaded due to data errors.
    0 Rows not loaded because all WHEN clauses were failed.
    0 Rows not loaded because all fields were null.
    --- sample bad file showing the pipe ... whay is sqlloader trying to process this pipe when its part of the record...
    /u01/oracle/admin/adhoc/xxxl(TESTxx)$
    /u01/oracle/admin/adhoc/xxx(TESTxx)$ vi FCT_PARTNERSHIP_ldrcontrol.bad
    "FCT_PARTNERSHIP_ldrcontrol.bad" [Incomplete last line] 2 lines, 213 characters
    |
    ~
    ~
    ~
    any help appreciated!
    Edited by: spliffer on 04-May-2010 05:06

  • Video playback control won't show after upgrade to 3.1

    Hi,
    I have a iPod Touch 2nd Generation. After upgrading from 2.2 to 3.1, when I tap the video during video playback, the playback control won't show. I have to tap it many many times in order for the playback control to show. Does anyone have the same problem? Does anyone know how to fix it? It is upsetting to pay for an upgrade that would break existing behavior.
    Thanks.

    I have the same problem and the reset didn't fix it. In fact I went in to the store and the Apple Genius saw the issue and replaced my ipod with a rebuilt ipod that had ipod 2.x software. I upgraded it to 3.2 and once again the playback controls don't show up. Called support and they think it's a bug ... hoping for a fix.
    Any ideas?

  • Video playback control to be keyboard accessible

    I need to make player controls accessible in Flash CS3 by using only the Tab and Enter keys. I am using the FLVPlayback's SkinUnderAllNoFullscreen.swf. Thank you in advance.

    I have the same problem and the reset didn't fix it. In fact I went in to the store and the Apple Genius saw the issue and replaced my ipod with a rebuilt ipod that had ipod 2.x software. I upgraded it to 3.2 and once again the playback controls don't show up. Called support and they think it's a bug ... hoping for a fix.
    Any ideas?

  • Playback control actions

    Hi there - can anyone help me with the playback control is
    captivate.
    I have a captivate demo that i am loading into a flash movie,
    via an empty movie clip on the flash time line, with a loadMovie
    command in flash. What i want to be able to do is to create either
    a javascript command, or some kind of action that will , upon
    pressing the close button in the captivate move - a) close the
    captivate swf, b) send the flash movie to a certain frame in the
    timeline, and play.
    I have tried importing the captivate demo into Flash 8 - the
    results are dissapointing as you lose the caption fades, mouse
    movements, and strangely, the alignment of the text in the caption
    boxes. I would liek to keep the smoothness of the .swf from
    captivate, but also have the movie close upon the user pressing the
    close button.
    Thanks

    I don't know how to solve this, but imagine the issue is
    this:
    The Lectora controls likely suppose the SWF is one long
    timeline.
    Captivate SWFs are movie clips in movieclips with all sorts
    of layering.
    So that's likely why the Lectora controls don't work...on the
    other
    hand, I've never used Lectora so maybe you can specify the
    object
    relationship they're trying to control.
    The question about the audio is likely related to how an
    'event' audio
    clip will not stop when the timeline is stopped and will
    likely run out
    of sync. A 'streamed' audio clip will work as you expect. I
    don't know
    how CP publishes the audio, but would assume 'stream'.
    Best solution, unless Lectora can help, is to NOT use Lectora
    controls
    on the CP SWF but use the CP controls (skin) that are
    published with the
    CP SWF by default... ?
    Erik
    MrsZev wrote:
    > I'm trying to publish my Captivate demos (just the swfs)
    to Lectora 2007, and
    > use Lectora actions to control the playback
    (specifically, to stop them when
    > the Lectora action is executed).
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - eLearning
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    Authorware Tips!

  • "Back" functionality in playback control

    Hi,
    I've published my output in Captivate 3. A strange occurrence: sometimes, when I click "back" in succession in the playback control, the previous slides are displayed and sometimes the movie gets stuck on a certain slide and is unable to go backwards.
    Any explanation for this?
    Thanks, DGR

    Hi there
    Just thinking about this from a logical standpoint.
    You have a playhead that is in motion moving from frame to frame. Along the way it may be stopped at various places awaiting some interaction or it may suddenly be moved to a different position. So repeated (and possibly fast) clicks on the back button might possibly confuse the issue. For example, if the playhead reached a point where it was suddenly supposed to skip to a different slide and you happened to click Back to move it to the skip ahead point. I could see that causing confusion.
    All this is pure speculation. But I'm wondering if it's having a play in the scenario you are listing.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Apple Mail doesn't show playback controls for audio attachments

    Anytime I look at an email with an audio attachment (be it one that I'm creating or one that I received) the little audio preview does not include any playback controls aside from the play button. (view below).
    Although you can press play (and pause) you can't follow the transport... I've found that you can click in the space where the transport would be and it will skip through the track, but even then it only corresponds to 70% of the length of the track.
    Any suggestions on fixing this issue would be appreciated.
    Thanks!
    David

    Anytime I look at an email with an audio attachment (be it one that I'm creating or one that I received) the little audio preview does not include any playback controls aside from the play button. (view below).
    Although you can press play (and pause) you can't follow the transport... I've found that you can click in the space where the transport would be and it will skip through the track, but even then it only corresponds to 70% of the length of the track.
    Any suggestions on fixing this issue would be appreciated.
    Thanks!
    David

  • Zen Micro - MTP playback control functional

    I want to buy a zen micro v2 which supports MTP.
    I know that the v2 version of Zen Micro is MTP enabled player.
    Microsoft has released MTP specification 0.83, which does not have playback control functionality. Mocrosoft has said that it will release the specification for this playback control in one or two months of time.But they have released an intermediate version of this MTP which has this playback control functionality.
    A scenario to understand my question:
    When you connect Zen Micro to a car stereo system, you can not control its playback functionality from the car stereo's head unit. To be more specific you can not issue Play/Pause/Stop/Volume increase/Volume decrease commands from the car stereo's head unit.
    So please tell whether zen micro has this support? If not will it be providing this functionality in the coming months?
    please suggest me any other Zen palyers which has this functionality.
    Thanks in advance,
    Regards.

    DM, the Micro's remote control works exactly as you suggested; it's an inline remote that plugs into the headphone jack, and the headphones plug into the remote.
    Unfortunately, I think the problem is more along the lines of car audio manufacturers' willingness to design a physical interface between a car stereo and the Micro than anything in the MTP spec. Microsoft can enable this kind of control in the MTP spec all it wants to, but until manufacturers are willing to use physical interfaces other than the iPod dock connector, it's all for naught.

  • Can Captivate 7's playback controls control Flash swf files?

    Hi folks,
    I have created a swf file using Adobe Flash and I have imported it as an animation slide in Captivate 7. I have turned on the playback controls to just have the play button and the progress bar. When I export the presentation, the playback controls do not work. The scrubber moves as the presentation is playing, but I can't pause the presentation. When I stop the scrubber or even move it left or right, it does not affect the presentation and it just keeps playing. Am I doing something wrong? I don't want to have to create a custom nav bar in Flash as it would just be easier to use Captivate's playback bar.

    I don't think it can be expained quickly as it can be very complicated. But...
    Select New Project/Widget in Flash and choose static widget. You need to be very adept in AS3 to actually get them to work.

  • How to add a custom multimedia playback control to add a time line of what is being played?

    How to add a custom skin in multimedia playback control to add a time line of what is being played?  As it is being played...
    I need a time line so any part of the what is being played can be found by time, ie at 1 minute and 30 seconds in and continues for 45 seconds out of a 50 minute audo.

    If you're talking about a playback controller within the rich media annotation (RMA) then you need to write your own widget in Flash or Flex, and then place the video and widget files using the multimedia "Add Flash" tool in Acrobat instead of the "Add Video" tool. Aside from a bunch of proprietary code to handle events, commenting and the API (which you can live without for basic play-pause-scrub applications), video RMAs are just an embedded SWF file containing an FLVPlayback component. The skin and the video file itself are added to the RMA as resource entries. You can build your own version and have it display whatever controls you want, provided you know how to write ActionScript!
    If you're talking about a controller that's external to the RMA (e.g. a series of links or buttons elsewhere on the page) then in the past you would use FLV video files and the 'cue points' feature that's built into Acrobat - however Adobe removed the ability to create FLV files in the latest version of CC, so unless you have CS6 or earlier it's a non-starter. Instead you can manually set playback start points using the special "multimedia operations" link action in your PDF - though stopping playback at a defined point is very difficult without FLV cues. For that you're back to writing your own widget.

  • Looking for better playback controls

    When I create FLV files for web streaming directly through
    Adobe Flash, I
    can take advantage of many choices of playback controls, my
    favorite one
    being the ArcticExternalAll. The downside: RIPing my slide
    shows takes
    hours.
    The newest version of ProShow Producer has greatly improved
    Flash export,
    allowing me to create high-quality Flash files directly from
    it in a
    fraction of the time -- minutes instead of hours. Its
    downside: Only a
    use-it-or-not choice of one playback control, and it's a
    lousy one.
    I would like to learn more about these playback controls:
    - Which file is responsible for designating the controls, the
    SWF or the
    FLV?
    - Can the user swap one control for another?
    - Can I take the external ArcticExternalAll.swf and somehow
    patch the video
    to include the control file?
    Any input is appreciated...
    Rick A.
    Pleasanton CA

    I misspoke, then, or I was not specific enough. I take AVI
    files and import
    them into Flash and then publish them as FLVs. That is the
    sum total of my
    experience using Flash.
    However, I am an advanced computer user and a quick study, so
    if you were to
    point me in the right direction, that is likely all I would
    need...
    RA
    "kglad" <[email protected]> wrote in message
    news:gip1dr$nmp$[email protected]..
    > you indicated you knew how to use the flvplayback class
    to stream flv
    > files. that's one way to do it.

Maybe you are looking for

  • Calculation in rtf template

    I got error when I perform calculation in a field, the code is <?sum(current-group()/_IFNULL__BE_measures_._TOTAL_COST___0_) div sum(current-group()/_BE_measures_._GROSS_SALES_)?> It shows errors: Caused by: oracle.xdo.parser.v2.XPathException: An in

  • I'm having trouble understanding how to upload a web gallery?

    I've been trying to upload a web gallery for weeks, I just can't seem to get it right. Does anyone have any tips or advice? I use godaddy as my host. Thanks!!

  • Unpegged Supply Records in ATP Enabled Plan

    OK this is a variation of a thread I had up about two weeks ago. Working an SR on this and seem to be spinning wheels a bit. We run two plans daily. One plan is for planner/buyers to launch planned orders and reschedules etc. We follow up with a seco

  • How to control the jms transactiion in WLI

    Hi, I'm new to WLI integration area; I have JPD which will subscribe message from message broker channel via JMS event generator. i have requirement to put business validation and needs to rollback the message if validation fails with few seconds tim

  • Audio level reduced by a few dB fr orig multicam clip

    I'm baffled to figure out why the audio level in the 1st multicam clip is always higher when I take that multicam clip and put it in another project. The audio level is reduce by -3 to -6 dB. Now I have to increase everything by about 3 to 6 dB in th