Trying to get multiple sounds to certain out puts

I have an X-Fi Platinum s/c running on Windows Ult7 64. I am trying to get my headphones to only hear radio chatter in FSX or FS2004, and other noises on my main speakers (engine, cockpit noises, etc...etc). Is there any way to do this?

There was a program listing a few weeks back for virtual audio cable. Do a google for that and see if that suits your needs.

Similar Messages

  • Trying to get multiple cell values within a geometry

    I am provided with 3 tables:
    1 - The GeoRaster
    2 - The geoRasterData table
    3 - A VAT table who's PK is the cell value from the above tables
    Currently the user can select a point in our application and by using the getCellValue we get the cell value which is the PK on the 3rd table and this gives us the details to return to the user.
    We now want to give the worst scenario within a given geometry or distance. So if I get back all the cell values within a given geometry/distance I can then call my other functions against the 3rd table to get the worst scores.
    I had a conversation open for this before where JeffreyXie had some brilliant input, but it got archived while I was waiting on Oracle to resolve a bug (about 7 months)
    See:
    Trying to get multiple cell values within a geometry
    If I am looking to get a list of cell values that interact with my geometry/distance and then loop through them, is there a better way?
    BTW, if anybody wants to play with this functionality, it only seems to work in 11.2.0.4.
    Below is the code I was using last, I think it is trying to get the cell values but the numbers coming back are not correct, I think I am converting the binary to integer wrong.
    Any ideas?
    CREATE OR REPLACE FUNCTION GEOSUK.getCellValuesInGeom_FNC RETURN VARCHAR2 AS
    gr sdo_georaster;
    lb blob;
    win1 sdo_geometry;
    win2 sdo_number_array;
    status VARCHAR2(1000) := NULL;
    CDP varchar2(80);
    FLT number := 0;
    cdl number;
    vals varchar2(32000) := null;
    VAL number;
    amt0 integer;
    amt integer;
    off integer;
    len integer;
    buf raw(32767);
    MAXV number := null;
    r1 raw(1);
    r2 raw(2);
    r4 raw(200);
    r8 raw(8);
    MATCH varchar2(10) := '';
    ROW_COUNT integer := 0;
    COL_COUNT integer := 0;
    ROW_CUR integer := 0;
    COL_CUR integer := 0;
    CUR_XOFFSET integer := 0;
    CUR_YOFFSET integer := 0;
    ORIGINY integer := 0;
    ORIGINX integer := 0;
    XOFF number(38,0) := 0;
    YOFF number(38,0) := 0;
    BEGIN
    status := '1';
    SELECT a.georaster INTO gr FROM JBA_MEGARASTER_1012 a WHERE id=1;
    -- first figure out the celldepth from the metadata
    cdp := gr.metadata.extract('/georasterMetadata/rasterInfo/cellDepth/text()',
    'xmlns=http://xmlns.oracle.com/spatial/georaster').getStringVal();
    if cdp = '32BIT_REAL' then
    flt := 1;
    end if;
    cdl := sdo_geor.getCellDepth(gr);
    if cdl < 8 then
    -- if celldepth<8bit, get the cell values as 8bit integers
    cdl := 8;
    end if;
    dbms_lob.createTemporary(lb, TRUE);
    status := '2';
    -- querying/clipping polygon
    win1 := SDO_GEOM.SDO_BUFFER(SDO_GEOMETRY(2001,27700,MDSYS.SDO_POINT_TYPE(473517,173650.3, NULL),NULL,NULL), 10, .005);
    status := '1.2';
    sdo_geor.getRasterSubset(gr, 0, win1, '1',
    lb, win2, NULL, NULL, 'TRUE');
    -- Then work on the resulting subset stored in lb.
    status := '2.3';
    DBMS_OUTPUT.PUT_LINE ( 'cdl: '||cdl );
    len := dbms_lob.getlength(lb);
    cdl := cdl / 8;
    -- make sure to read all the bytes of a cell value at one run
    amt := floor(32767 / cdl) * cdl;
    amt0 := amt;
    status := '3';
    ROW_COUNT := (WIN2(3) - WIN2(1))+1;
    COL_COUNT := (WIN2(4) - WIN2(2))+1;
    --NEED TO FETCH FROM RASTER
    ORIGINY := 979405;
    ORIGINX := 91685;
    --CALCUALATE BLOB AREA
    YOFF := ORIGINY - (WIN2(1) * 5); --177005;
    XOFF := ORIGINX + (WIN2(2) * 5); --530505;
    status := '4';
    --LOOP CELLS
    off := 1;
    WHILE off <= LEN LOOP
    dbms_lob.read(lb, amt, off, buf);
    for I in 1..AMT/CDL LOOP
    if cdl = 1 then
    r1 := utl_raw.substr(buf, (i-1)*cdl+1, cdl);
    VAL := UTL_RAW.CAST_TO_BINARY_INTEGER(R1);
    elsif cdl = 2 then
    r2 := utl_raw.substr(buf, (i-1)*cdl+1, cdl);
    val := utl_raw.cast_to_binary_integer(r2);
    ELSIF CDL = 4 then
    IF (((i-1)*cdl+1) + cdl) > len THEN
    r4 := utl_raw.substr(buf, (i-1)*cdl+1, (len - ((i-1)*cdl+1)));
    ELSE
    r4 := utl_raw.substr(buf, (i-1)*cdl+1, cdl+1);
    END IF;
    if flt = 0 then
    val := utl_raw.cast_to_binary_integer(r4);
    else
    val := utl_raw.cast_to_binary_float(r4);
    end if;
    elsif cdl = 8 then
    r8 := utl_raw.substr(buf, (i-1)*cdl+1, cdl);
    val := utl_raw.cast_to_binary_double(r8);
    end if;
    if MAXV is null or MAXV < VAL then
    MAXV := VAL;
    end if;
    IF i = 1 THEN
    VALS := VALS || VAL;
    ELSE
    VALS := VALS ||'|'|| VAL;
    END IF;
    end loop;
    off := off+amt;
    amt := amt0;
    end loop;
    dbms_lob.freeTemporary(lb);
    status := '5';
    RETURN VALS;
    EXCEPTION
        WHEN OTHERS THEN
            RAISE_APPLICATION_ERROR(-20001, 'GENERAL ERROR IN MY PROC, Status: '||status||', SQL ERROR: '||SQLERRM);
    END;

    Hey guys,
    Zzhang,
    That's a good spot and as it happens I spotted that and that is why I am sure I am querying that lob wrong. I always get the a logic going past the total length of the lob.
    I think I am ok using 11.2.0.4, if I can get this working it is really important to us, so saying to roll up to 11.2.0.4 for this would be no problem.
    The error in 11.2.0.3 was an internal error: [kghstack_underflow_internal_3].
    Something that I think I need to find out more about, but am struggling to get more information on is, I am assuming that the lob that is returned is all cell values or at lest an array of 4 byte (32 bit) chunks, although, I don't know this.
    Is that a correct assumption or is there more to it?
    Have either of you seen any documentation on how to query this lob?
    Thanks

  • How do I get the sound to come out of external speakers?

    How do I get the sound to come out of external speakers?

    Thanks for our reply.  My speakers are powered Bose speakers but still didn't pick up the sound until I tried this suggestion from another discussion thread.  This worked like a charm:
    Re: External speakers don't work created by ally100 in MacBook Pro -View the full discussion
    I had a similar problem a while back. The issue was with the speaker jack plug and the macbook phone socket. For some reason the jack plug was not a good a fit, as say the jack that comes with the iphone ear phones. A few tiwsts and turns of the speaker jack plug and it eventually became a snug(ish) fit. Have a look on you tune. There are a couple of videos on there that might help if this is not the issue. 

  • Trying to get fios since it came out in NYC... Need advice

    I live in the Financial District in Manhattan, NY and I have been trying to get FIOS for three years now, with no luck... I call in every few weeks and still no availability, I just get the typical 6 - 12 months response from VZ I have been getting for 3 years.
    A year ago, the building across the street from me got FIOS. I called to let VZ know and see if I could get it too. They said that because it wasnt on my block, it wouldnt help me in my neverending quest to get FIOS.
    A month ago, a building right next door (on the same block, about 5 feet from my front door) just was finished being built, and they have FIOS available to their residents, built into the building.... Yet when I call VZ, they still say it is unavailable to me, even though though my neighbor has it.
    You would think VZ would be trying to expand their coverage as much as they can, yet whenever I call customer service to inquire about getting FIOS, I feel like I just get put on hold for an hour and I dont end up any closer to my goal.
    Since my new neighbor (we even share a wall) has FIOS, does anyone have any advice on how I could get it? Getting FIOS seems to be almost as difficult as dealing with TWC...
    Thanks all

    jdg9999999 wrote:
    A month ago, a building right next door (on the same block, about 5 feet from my front door) just was finished being built, and they have FIOS available to their residents, built into the building.... Yet when I call VZ, they still say it is unavailable to me, even though though my neighbor has it. 
    Are you in a Multiple Dwelling Unit (condo/apartment)?
    If so, VZ can not install FIOS in your building until your landlord/HOA signs two agreements.
    If you landlord/HOA has not been contacted by FIOS, they can get in touch here:
    http://communities.verizon.com/default.aspx?page=owncontact

  • Trying to get my sound card to work with ArchLinux

    Okay, let me tell you my problem. I'm still somewhat of a noob when it comes to linux so don't be hard on me . And, yes that's half of my problem, anyways I've got a sound card called the Soundblaster X-FI USB and I've been trying it to get it to work with the alsaconf command which hasn't worked of course Let me point out that whenever I use my backup flashdrive with PuppyLinux it the Alsaconf inside of it see's the card that I'm using and automatically sets it up.. Plus whenever I type the ' cat /proc/asound/cards ' command I get this..
    0 [Intel          ]: HDA-Intel - HDA Intel
                          HDA Intel at 0xefffc000 irq 21
    1 [S51            ]: USB-Audio - SB X-Fi Surround 5.1
                          Creative Technology SB X-Fi Surround 5.1 at usb-0000:00:1d.2-2, full speed
    *(The first one being my dead onboard audio)
    So please help me out here I really want to have sound again and hey maybe I'll learn something new about linux!

    konni wrote:
    mhhm... the creative x-fi support for linux seems to be rather bad...
    --> http://www.phoronix.com/scan.php?page=n … &px=Njc3Mg
    there's some experimental driver that maybe makes it work with alsa, see here:
    http://www.phoronix.com/scan.php?page=n … &px=Njc3NQ
    My card is a USB which isn't compatible with the driver that they include. So no help there ;(. I've loaded Ubuntu recently and it has worked perfectly with my soundcard (Creative X-FI USB Surround 5.1) right out of the box. I personally think there has to be a way to get it to work in Archlinux since it worked in Ubuntu...
    Although. I suppose I could just use Ubuntu but I'm more of a fan of Arch. So does anyone have any idea what Ubuntu used as in drivers wise to get my card to work in linux??

  • Trying to get multiple clips to line up & be exactly the same size?

    Hi, I'm trying to figure out how to get four clips to line up perfectly and be the exact same size. I'm able to do it manually by dragging out the corners of each clip, but I know it's not perfect. I feel like there has to be an easier way to achevie what I'm trying to do. Any help or ideas would be great. Thanks.
    Dan
    Powermac G5 Dual 2.3   Mac OS X (10.4.8)  

    You want all the clips to be 50%. One one clip into the Viewer and in the Motion tab set the Scale value to 50. Copy the clip. Select all the other clips and use Edit>Paste Attributes and check Basic Motion.

  • Trying to get proper sound

    Hi,
    I have very low sound in my laptop with alsa so I wanted to try pulseaudio and oss. In ubuntu sound works great which has pulse by default. I tried setting up pulse in Arch with KDE but it doesn't seem to work. I tried oss and it doesn't work either. When I try to use /etc/rc.d/oss start the system just hangs.
    Any suggestions?:(

    pulseaudio is tricky, I forget what they are called but I believe its pavucontrol and pavumeter or something like that, just look them up (Pulse Audio Volume...) so pavu<xxx>.  Those helped to set the proper inputs and things. You just have to fight with it a bit.
    First, when you install OSS you don't have to remove ALSA (if I remember correctly) Your best bet is to follow the Arch Wiki guides when installing each one, they are what I use when dealing with sound because sometimes it can be a bit of a nightmare.  Secondly, I had some issues where I had to set a dbus error so that pulseaudio would default the correct card as the 1st card so I didn't have to keep changing it and resetting all the settings each time I rebooted.  It depends if you have more than one sound card or not.  Good luck!

  • Trying to get multiple colours in an xy plot

    Hi, I am creating an xy plot from two arrays (x and y) and I have a third array of equal size that contains a Pass/Fail boolean value. I am trying to make the plot so that if the data point "passes" it will be green, and if it "fails" it will be red. I tried to extract a sub array, but the passes and fails are randomly distributed, so I couldn't isolate the passes and the fails into distinct arrays. My second problem is that I would like the index number ( +1) to appear on the plot beside each point.
    Thanks
    Jeff
    Jeff
    Using Labview 7 Express

    You can always generate the circle manually as curve segments seperated by a NaN, Attached is a simple draft (LV 7.0) on how you could do this. See if it makes sense.
    I tend to use complex numbers for simplicity for 2D geometry. Newer LabVIEW versions can graph complex data as xy on an xy graph, making things even easier.
    Message Edited by altenbach on 02-16-2007 12:57 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    MakeCircles.gif ‏31 KB
    MakeCircles1.vi ‏40 KB

  • Getting error While attaching Report out put Pdf file to POAPPRV workflow

    I am getting below error in workflow
    Item Type = POAPPRV
    Item Key = 60383-243513
    User Key =40515
    Error Name = WF_ERROR
    Error Message = [WF_ERROR] ERROR_MESSAGE=3835: Error '-20002 - ORA-20002: [WFMLR_DOCUMENT_ERROR]' encountered during execution of Generate function 'WF_XML.Generate' for event 'oracle.apps.wf.notification.send'. ERROR_STACK=
    GNE_PO_CREATE_FILE_ATTACHMENT.Gne_Create_File_Attachment(60383-243513 OAPPRV, text/html)
    Wf_Notification.GetAttrblob(207046, PO_REPORT, text/html)
    WF_XML.GetAttachment(207046, text/html)
    WF_XML.GetAttachments(207046, http://gnedxbebsdev.gerab.ae:8003/pls/DEV, 850
    WF_XML.GenerateDoc(oracle.apps.wf.notification.send, 207046)
    WF_XML.Generate(oracle.apps.wf.notification.send, 207046)
    WF_XML.Generate(oracle.apps.wf.notification.send, 207046)
    Wf_Event.setMessage(oracle.apps.wf.notification.send, 207046, WF_XML.Generate)
    Wf_Event.dispatch_internal()
    Error Stack =
    Activity Id = 124108
    Activity Label = NOTIFY_APPROVER_SUBPROCESS:GNE_PO_NOTI_TO_CEO
    Result Code = #MAIL
    Notification Id = 207046
    The Code used in procedure is given below
    procedure Gne_Create_File_Attachment (document_id in varchar2,
    display_type in varchar2,
    document in out blob,
    document_type in out varchar2)
    is
    l_itemtype varchar2(100);
    l_itemkey varchar2(100);
    l_output_directory varchar2(30);
    l_filename varchar2(255);
    src_loc bfile;
    bdoc blob;
    src_offset number := 1;
    dst_offset number := 1;
    amount number;
    l_request_id varchar2(100);
    begin
    l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
    l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
    select attribute4
    into l_request_id
    from po_headers_all
    where to_char(PO_HEADER_ID)=l_itemtype;
    l_output_directory := 'APPLCSF/APPLOUT';
    l_filename := 'o'||l_request_id;
    src_loc := bfilename(l_output_directory,l_filename);
    dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
    dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
    dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
    dbms_lob.fileclose(src_loc);
    amount := dbms_lob.getLength(bdoc);
    dbms_lob.copy(document,bdoc,amount,1,1);
    document_type := 'application/pdf; name=attach.pdf';
    EXCEPTION
    WHEN OTHERS THEN
    wf_core.CONTEXT('GNE_PO_CREATE_FILE_ATTACHMENT'
    ,'Gne_Create_File_Attachment'
    ,document_id
    ,display_type);
    RAISE;
    end GNE_Create_File_Attachment;
    PROCEDURE Gne_Assign_wf_Attribute(
    itemtype IN VARCHAR2,
    itemkey IN VARCHAR2,
    actid IN NUMBER,
    funcmode IN VARCHAR2,
    resultout OUT NOCOPY VARCHAR2)
    IS
    v_user_name varchar2(100);
    BEGIN
    IF FUNCMODE = 'RUN' THEN
    wf_engine.setitemattrdocument
    (itemtype => itemtype
    , itemkey => itemkey
    , aname => 'PO_REPORT'
    , documentid =>'PLSQLBLOB:GNE_PO_CREATE_FILE_ATTACHMENT.GNE_Create_File_Attachment/'
    || itemkey
    || ':'
    || itemtype);
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    wf_core.CONTEXT('GNE_PO_CREATE_FILE_ATTACHMENT'
    ,'Gne_Assign_wf_Attribute'
    ,itemtype
    ,itemkey);
    RAISE;
    END Gne_Assign_wf_Attribute;
    Can Any Body Please help me....
    It is very urgent..
    Thanks In Advance
    Anil Kumar

    There are two ways to look at what error the PLSQLBLOB API is throwing.
    1) Call your PLSQLBLOB API GNE_PO_CREATE_FILE_ATTACHMENT.Gne_Create_File_Attachment directly from a PLSQL block and verify that it returns the BLOB data successfully.
    You could also call another WF API that in turn executes the PLSQLBLOB API internally. For example,
    <pre>
    declare
    l_document blob;
    l_doctype varchar2(240);
    l_aname varchar2(90);
    begin
    dbms_lob.CreateTemporary(l_document, true, dbms_lob.Session);
    -- 207046 - This is the notification id of your failed workflow
    -- PO_REPORT - Document type attribute
    -- 'text/html' - Content Type being generated for
    Wf_Notification.GetAttrBLOB(207046, 'PO_REPORT', 'text/html', l_document, l_doctype, l_aname);
    -- Print the size of the document here to verify it was fetched correctly
    end;
    </pre>
    2) Turn on log for SYSADMIN user with following attributes.
    Log Enabled = TRUE
    Log Level = ERROR
    Log Module = wf.plsql%
    Restart the Workflow Deferred Agent Listener and Workflow Notification Deferred Agent Listener and run your workflow process. Search for log messages written for above context and you can identify the error at wf.plsql.WF_XML.GetAttachment module with message starting as "Error when getting BLOB attachment ->"
    Hope this helps.
    Vijay

  • Trying to get this "One" sound with Logic pro 8

    Hi everyone i spent like 2 hours last night trying to get this sound with Logic Pro 8 soft synths trying to find a sound exactly like or close to this sound: http://home.comcast.net/~tommykry/Weezer%20-%20Troublemaker.mp3
    The sound can be heard at 00:19 and through out the song, its like a low bass synth kind of sound that drifts down when its hit, like a portamento kind of thing. In live weezer videos the bass player is hitting a pad on a keyboard so i know its a key sound not a bass guitar slide. ive heard this sound in trance and techno songs as well. I have Sonar 8 and pro tools 8 as well and can look there if i have too, also have an Access viress Ti, But im trying to do this all in Logic. Like i said i played around for like more than 2 hours going through most of all the Logic synths, patch after patch trying to find something close i could tweak, so if anyone has more experience with The Soft synths in Logic Pro 8 and can steer me in the right direction i would be greatful.
    Thanks
    Tommy

    In live weezer videos the bass player is hitting a pad on a keyboard so i know its a key sound not a bass guitar slide.
    He could just be triggering a bass slide sample...
    It's some kind of bass sound that bends down, in a similar style to what a bass player might do. Whether it's a real bass or a synth is difficult to say (and probably doesn't matter a great deal), but in any case it's certainly compressed, and grunged up dirty with some amp sim or distortion...
    Try that route...

  • Have timesheet data. Trying to get staff at risk of burn out (worked 8hrs a day during last 3 weeks)

    Hi all,
    I've been trying to get a semi-complex measure out for over a day now but seem to be going round in circles. Most frustrating is I don't quite understand why one version throws an error, another throws out the wrong number and then whatever you guys come
    up with will give me the correct answer!
    I have a workbook uploaded here which I used for a different question, but majority of the data model is the same :
    https://onedrive.live.com/?cid=1C0322C61F94C9E9&id=1C0322C61F94C9E9%21125
    What I'm trying to do is find staff members that are at risk of burn out (eg consistently working > 8hrs a day)
    My main timesheet table (Time) is as such:
    StaffID (fk to staff table)
    ClientID (fk to client table)
    TaskID (fk to task table)
    TimesheetDate (fk to date table)
    EffortInHrs
    my date dim is standard fare, only thing i've added is an EndOfWeekDate (eg EOWDate. sunday is the last day therefore for each date for this week the endofweekdate column = 18-jan. For last week it was 11-Jan etc) and I also have a 'last freshed date' that
    shows the last time the model was refreshed
    A staff member can only record time against a specific task once per day, but they can have multiple tasks across multiple clients for one day
    The business rule im working with is
    if they've worked more than 8hrs at least once in the last 3 weeks (dates that fall between EOWdate for 'now' minus 3 weeks and EOWdate for 'now' ), then return the sum of EffortInHrs for all clients for every day in the last 3 weeks
    I've given up in getting it in one go so i'm trying to cobble together a number of calc columns and measures to get me closer.. but it all seems to stall
    eg the following calc column (DailySumOfHrs)
    =
    CALCULATE (
    SUM ( [EffortInHours] ),
    FILTER (
    ALLEXCEPT ( TIME, 'Time'[TimesheetDate], TIME[StaffID] ),
    DATESBETWEEN (
    'Date'[Date],
    'time'[TimesheetDate],
    'Time'[TimesheetDate]
    gives me the sum of effort in hrs for the day for each staff member. I couldn't get a measure version of this working. It would either aggregate across all days/staff or give context errors.
    So when I tried to take it to the next step to find the max using the same formula
    =
    CALCULATE (
    SUM ( [EffortInHours] ),
    FILTER (
    ALLEXCEPT ( TIME, 'Time'[TimesheetDate], TIME[StaffID] ),
    DATESBETWEEN (
    'Date'[Date],
    'time'[TimesheetDate],
    'Time'[TimesheetDate]
    I get errors, i'm guessing because i'm mixing my fact and date tables now and it doesn't know it can use the TimeSheetDate 'context' to filter.
    To get the 'last 3 weeks' filter working I added the following to the date dim
    =if([EndOfWeek]<[RefreshDateLocal] +7 && [EndOfWeek] > [RefreshDateLocal] -14,1,0)
    i then used it in an intermediate measure to get the max at the weekly grain
    WeeklyMax :=
    IF (
    MAX ( 'Date'[Last3WeeksFilter] ) = 1,
    CALCULATE (
    MAX ( TIME[DailySumOfHrs] ),
    FILTER (
    ALL ( 'Date'[date] ),
    MAX ( 'Date'[EndOfWeek] ) = MAX ( 'Date'[EndOfWeek] )
    'Date'[Last3WeeksFilter] = 1
    BLANK ()
    and finally the measure itself
    BurntOutHrs:=if([WeeklyMax]>8,SUM([EffortInHours]),blank())
    I am not happy with this at all. There are so many conditions (eg filters added) that need to be satisfied for this to return a sensible result and I need to expose a number of the 'backend' filters that users would need to add to the report to get the correct
    answer.
    As is, it only works for a simple Staff, date, burntouthrs report. If users attempt to create their own pivot table/chart and try to break it down by client or task it doesn't look right at all. I'd also like to be able to count how much stuff are working
    long hrs but this approach wouldn't support that at all.
    I could probably post dozens of my attempted dax that to me logically look like it should work but either aggregate wrong or throw context errors. Unfortunately my current approach to dax still is to try various, almost random variations until one works
    for whatever reason
    I always aim to have a measure that 'just works' in all contexts where it makes logical sense. For me to get that happening here i'd probably need to spend another few hrs trying all kinds of allexcept() conditions for each filter where i want it to work
    and hope none contradict each other
    Thinking about it now, this isn't really a separate measure at all.. i think a better approach would be to add a calc column to the staff table that checks if that staff member has >8hrs assigned for any day (i dont think the default time->staff relationship
    would allow this though). But i'm still interested on how to accomplish it using the separate 'measure' approach
    I'll go spend the rest of today trying to get the flag working in the staff dim!
    Thanks!
    Jakub @ Adelaide, Australia Blog

    Jakubk, is this still an issue?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • I need help getting sound to come out of my TV when using HDMI. Any solutions?

    I'm able to pull up my picture when connecting my HDMI cable to my Macbook pro...however I can't get the sound to come out of my Toshiba TV.  When I go under system preferences, then sound and select my Toshiba TV as an option.  It says it has no output controls.  I fiddled with my sound setting in my TV and stil no luck.   Does anyone know any solutions for this problem.  Help is greatly appreciated.

    Hey jbarwins
    Check to make sure that you are up to date on your computer. Another recommendation would be to try a different cable and also reset the NVRAM on your computer.
    About NVRAM and PRAM
    http://support.apple.com/kb/HT1379
    OS X Mountain Lion: Use a television as a display
    http://support.apple.com/kb/HT1339
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • TS3274 The sound on my ipad 2 is not working.  I have a Logitech Keyboard case that I use with my ipad 2.  Last night, the sound quit working.  I've tried everything to get the sound back - still no sound.  HELP!! Please?

    Trying to get the sound working again on my ipad 2.  I have a Logitech keyboard case I use with my ipad 2.  Last night the sound quit but I don't know why.  I've tried everything and can't get the sound back again.  Help!

    HI there,
    There are a couple things you can try. The first thing I would recommend is resetting all settings by going to Settings > General > Reset > Reset All Settings. If that doesn't work, take a look at the article below for additional troubleshooting steps.
    Note: The article title impies that it is for iPhones, but the troubleshooting steps are still aplicable to iPads.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    Hope that helps,
    Griff W.

  • How to get multiple selected fields in list

    Hello all,
    I am trying to get multiple selected value from a list but i dont know how to get multiple selected fields from a list though AS3.
    Actually i want to pass the selected fields to php, so for that i need to get the selections and send to php.
    Thankx..

    i want to put the selected fields of list in an array through AS3....
    actually......i figured it out how to do that...........
    Its simple......use
    list.selectedItems[index]
    and to get the number of items selected......
    list.selectedItems.length
    simple.....

  • Cannot get any sound forn iPod nano 3 on my JBL iPod dock, it used to work fine, but I haven't used it for awhile.  Appreciate any suggestions for non technical grandmother. Thanks

    I have an older iPod nano.  I have a JBL iPod dock that worked fine with this over a year ago, but I tried it recently and I cannot get any sound to come out.  I am a technically challenged grandmother so this stuff does not come naturally.  Help would be appreciated.  Thank you

    Wow, thank you so much!
    Turns out there was a topic on the forums there with guy having same problem and they linked him to topics that saved his iPod too.
    Thank you so much, it works now

Maybe you are looking for

  • Error while copying from crm to R/3

    Hi, An error has occured while coping an installation order from crm to R/3. Any suggestions mates. Error message is:An error has occured in the system R3PCLNT501 while copying the document Regards, Jan.

  • Account assignment for movement type 221

    Hi, Instead of using account suggested by GBB-VBR for movement type 221 we want to use account entered by user in transaction as an offset to inventory account. However SAP keeps on hitting account determined automatically (from GBB-VBR) and ignores

  • Migrating to office 365/Win 8.1 from Office 2010/Win 7.0 the Outlook Personal folders are missing.

    In Office 2010 I had emails archived into private data file personal folders/subfolders under Outlook 2010. My Office 2010 installation was wiped out when I upgraded from Windows 7 to Windows 8.1. The outlook.pst files are still available. When I ins

  • Problem in FB60 bapi

    Hi friends , i m developing a prog with bapi of FB60 it always fire the error no 014 i.e. FI/CO interface: Line item entered several times i am feeding the data which is given below in the BAPI . Please help me if anybody has worked on this BAPI w_it

  • My browser don't work properly

    I have 9300 curve. When ever I browse any site my browser show a message "closeing this because of low memory". I have done 2 thing 1st restarted it and 2nd taken out battery on running case but my problem is not solve. Help me what can I do to resol