Sapscript box intensity option is'n work

Hi everybody,
i have a SAPscript with <b>boxes</b> the option <b>intensity</b> activated and when i see the <b>print preview</b> i don't have any mistake, but when i <b>print</b> my form, the <b>intensity option disappears</b>.
Greetings.

Hi,
You have to define intensity in SAP script.
Example :
/:BOX XPOS '0' CH YPOS '0' LN HEIGHT '3.0' LN WIDTH '28.0' CH INTENSITY 20
and Still doesn't work check Printer.
Lanka

Similar Messages

  • Multiple Selection not working on List Box Properties/Option Screen

    When I select multiple selection on the List Box Properties/Options tab, I get no difference from the single selection default. It still highlights only the last of the multiple entries (like a single selection) and displays only the last entry. Is there something else I need to do?
    Thanks for your help.

    To select multiple items, you need to hold down the Ctrl key when clicking additional items.

  • DVR Search Option No Longer Works - After The Crap Upgrade

    The new software upgrade is crap. DVR search option no longer works. I can't use the search option to find my favorite programs and set the DVR to record them. It only lets me put the first letter in the search field and then nothing. I can't enter any more letters aftet that.
    Verizon sent me another DVR but it has same issues. They sent a technician to my house and he basically told me, the upgrade is crap and lots of people are having technical issues.
    He gave me another box and said it is working. Now I have three DVRs sitting in my house and I have to return two. After he left I tried to search and I have the same exact issue so basically he just lied and didn't fix anything.
    I called tech support over and over, and they just told me that they can't do anything. They basicaly admitted that the upgrade is crap and the are clueless on how to fix it. So I'm stock with 3 DVRs that don't work. Billing department told me they can't give me any discounts either.
    Anyone else is having these issues?

    Same issue here.  Sent me another box, same model as the old one.  Same exact issues.  Called Tech support back, they admitted it was a known issue, and nothing he could do about it.  Was told I had to talk to someone in SALES to get them to send me a newer box.
    New box is here, and now i have no option to record.  Oh, and last time I called tech support... I got 'disconnected' (after being on hold for 30+ minutes).  They are really dropping the ball, and I will not be renewing.

  • SAPSCRIPTS - BOX COMMAND.

    Hi ,
    I hava script in which i am supposed to print an internal table.
    now. the script is designed in such a way that on first page the main window starts at line 17 of the page and on second page the main window starts at line no 7.
    i ma printing my internal table in the main window. i am ussing box command to get a tabular look n feel . on first page the y pos of the box is set to 18 LN. n its gettin printed properly.
    till first 15 records the data gets printed on first page but if the records in the internal table are more than 15 then then the output continues to second screen.
    now while setting the ypos how should  set the value? how exatly i am supposed to count the value to set for the y pos? when we say BOX ypos 7 LN dose it mean set ypos  at line 7 from upword direction? n line of the window or line 7 of the page?

    Hi
    See this and use accordingly
    SAPScripts
    http://esnips.com/doc/1ff9f8e8-0a4c-42a7-8819-6e3ff9e7ab44/sapscripts.pdf
    http://esnips.com/doc/1e487f0c-8009-4ae1-9f9c-c07bd953dbfa/script-command.pdf
    http://esnips.com/doc/64d4eccb-e09b-48e1-9be9-e2818d73f074/faqss.pdf
    http://esnips.com/doc/cb7e39b4-3161-437f-bfc6-21e6a50e1b39/sscript.pdf
    http://esnips.com/doc/fced4d36-ba52-4df9-ab35-b3d194830bbf/symbols-in-scripts.pdf
    http://esnips.com/doc/b57e8989-ccf0-40d0-8992-8183be831030/sapscript-how-to-calculate-totals-and-subtotals.htm
    POSITION WINDOW
    SIZE WIDTH '160' MM HEIGHT '140' MM
    BOX FRAME 10 TW
    Box
    BOX HEIGHT '11' MM WIDTH '160' MM FRAME 10 TW INTENSITY 35
    linessssssss
    BOX XPOS '20' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '45' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '80' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '120' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    Boxes, Lines, Shading: BOX, POSITION, SIZE
    Use the BOX, POSITION, and SIZE commands for drawing boxes, lines, and shading to print particular windows within a form or passages of text within a window in a frame or with shading.
    The SAP printer drivers that are based on page-oriented printers (the HP LaserJet driver HPL2, the Postscript driver POST, the Kyocera Prescribe driver PRES) employ these commands when printing. Line printers and page-oriented printers not supported in the standard ignore these commands. You can view the resulting printer output in the SAPscript print preview.
    Syntax:
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    BOX Command
    Syntax
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    Effect: draws a box of the specified size at the specified position.
    Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT, and FRAME, you must specify both a measurement and a unit of measurement. Specify the INTENSITY parameter as a percentage between 0 and 100.
    XPOS, YPOS
    Upper left corner of the box, relative to the values of the POSITION command.
    Default: Values specified in the POSITION command.
    The following calculation is performed internally to determine the absolute output position of a box on the page:
    X(abs) = XORIGIN + XPOS
    Y(abs) = YORIGIN + YPOS
    WIDTH
    Width of the box. Default: WIDTH value of the SIZE command.
    HEIGHT
    Height of the box. Default: HEIGHT value of the SIZE command.
    FRAME
    Thickness of frame.
    Default: 0 (no frame).
    INTENSITY
    Grayscale of box contents as %.
    Default: 100 (full black)
    Measurements: You must specify decimal numbers as literal values (like ABAP numeric constants) by enclosing them in inverted commas. Use the period as the decimal point character. See also the examples listed below.
    Units of measurement: The following units of measurement may be used:
    TW (twip)
    PT (point)
    IN (inch)
    MM (millimeter)
    CM (centimeter)
    LN (line)
    CH (character).
    The following conversion factors apply:
    1 TW = 1/20 PT
    1 PT = 1/72 IN
    1 IN = 2.54 CM
    1 CM = 10 MM
    1 CH = height of a character relative to the CPI specification in the form header
    1 LN = height of a line relative to the LPI specification in the form header
    /: BOX FRAME 10 TW
    Draws a frame around the current window with a frame thickness of 10 TW (= 0.5 PT).
    /: BOX INTENSITY 10
    Fills the window background with shading having a gray scale of 10 %.
    /: BOX HEIGHT 0 TW FRAME 10 TW
    Draws a horizontal line across the complete top edge of the window.
    /: BOX WIDTH 0 TW FRAME 10 TW
    Draws a vertical line along the complete height of the left hand edge of the window.
    /: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
    /: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.
    POSITION Command
    Syntax
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    Effect: Sets the origin for the coordinate system used by the XPOS and YPOS parameters of the BOX command. When a window is first started, the POSITION value is set to refer to the upper left corner of the window (default setting).
    Parameters: If a parameter value does not have a leading sign, then its value is interpreted as an absolute value, in other words, as a value that specifies an offset from the upper left corner of the output page. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value. If one of the parameter specifications is missing, then no change is made to this parameter.
    XORIGIN, YORIGIN
    Origin of the coordinate system.
    WINDOW
    Sets the values for the left and upper edges to match those of the current window (default setting).
    PAGE
    Sets the values for the left and upper edges to match those of the current output page (XORIGIN = 0 cm, YORIGIN = 0 cm).
    /: POSITION WINDOW
    Sets the origin for the coordinate system to the upper left corner of the window.
    /: POSITION XORIGIN 2 CM YORIGIN '2.5 CM'
    Sets the origin for the coordinate system to a point 2 cm from the left edge and 2.5 cm from the upper edge of the output page.
    /: POSITION XORIGIN '-1.5' CM YORIGIN -1 CM
    Shifts the origin for the coordinates 1.5 cm to the left and 1 cm up.
    SIZE Command
    Syntax
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    Effect: Sets the values of the WIDTH and HEIGHT parameters used in the BOX command. When a window is first started, the SIZE value is set to the same values as the window itself (default setting).
    Parameters: If one of the parameter specifications is missing, then no change is made to the current value of this parameter. If a parameter value does not have a leading sign, then its value is interpreted as an absolute value. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value.
    WIDTH, HEIGHT
    Dimensions of the rectangle or line.
    WINDOW
    Sets the values for the width and height to the values of the current window (default setting).
    PAGE
    Sets the values for the width and height to the values of the current output page.
    /: SIZE WINDOW
    Sets WIDTH and HEIGHT to the current window dimensions.
    /: SIZE WIDTH '3.5' CM HEIGHT '7.6' CM
    Sets WIDTH to 3.5 cm and HEIGHT to 7.6 cm.
    /: POSITION WINDOW
    /: POSITION XORIGIN -20 TW YORIGIN -20 TW
    /: SIZE WIDTH +40 TW HEIGHT +40 TW
    /: BOX FRAME 10 TW
    A frame is added to the current window. The edges of the frame extend beyond the edges of the window itself, so as to avoid obscuring the leading and trailing text characters.
    <REMOVED BY MODERATOR>
    Regards
    Anji
    Edited by: Alvaro Tejada Galindo on Jul 8, 2008 10:59 AM

  • Time Machine options are not working. I am unable to schedule automatic backups.

    Time Machine options are not working. I am unable to schedule automatic backups.  The On-Off button is grayed out. I can perform a backup manually.

    Thanks for responding.  I have an external disk with plenty of room.  It is used only for backup of my computer.  I get a backup by clicking on the Time Machine icon at the top of the page and select "Back Up Now."  When I click on Time Machine Preferences, there is a box labeled "Options" which allows me to exclude items from backup and notify after old backups are deleted.  There is no option to schedule a backup.  The "OFF/ON" box is gray.  For "Next Backup:" it says "Automatic backups off."  I would like to turn it on.

  • With the new safari update (7.0.3), the full screen option has stopped working...please help.

    I updated Safari and now the full screen option will not work. It's one of my favorite features. I have tried going to View -> Enter Full Screen and that doesn't work.

    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Click "Reset".
    Empty Caches
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.
    Turn off Extensions if any, and launch Safari.
    Safari > Preferences > Extensions

  • Option key not working osx 10.9.4

    Hi!
    i have a problem with the option-key for some shortcuts and specifically in photoshop.
    does someone had this problem before or has any idea for a solution?
    Thanks!

    Yam, I'm using 10.6.8, not 10.9, but I wonder if you might have the same problem I had. It turns out I had inadvertently pressed a keyboard combination that invoked Unicode/Hex Input from the Language & Text preferences, and this prevented the option key from working.
    To see if this is the problem do the following (these instructions are for OS 10.6.8; 10.9 will probably have these configured differently):
    Open System Preferences > Language & Text.
    Click the Input Sources tab.
    At the very bottom, on the right, check the box beside "Show Input menu in menu bar" (there may be an easier way but I don't know of it).
    Now, in your Mac menu bar, find the Text Input menu which may look like your national flag, but may not (especially if this is your problem).
    On my system, the icon is just to the right of the speaker volume and just to the left of the battery level icon.
    You should see your flag and/or language (U.S. in my case.)
    Instead, what I saw was this:
    To change it back, click the Text Input icon in your menu bar and choose your language from the drop-down menu:
    If this was your problem, you'll want to disable the keyboard shortcut so that this doesn't happen again:
    Open System Preferences > Keyboard.
    Select the Keyboard Shortcuts tab.
    Find Select next source in Input menu in the list on the right. If it is checked, uncheck it.
    I hope this helps you or someone else. I spent a long time looking before I stumbled upon the answer.

  • Have just reinstalled Acrobat Pro XI and the Fit and shrink to page size options are not working - Any ideas?

    When printing to a laser device my Acrobat Pro XI all of a sudden was not shrinking oversized pages to fit on paper. The Fit and Shrink to page options did not work. Could still output file reduced by using the percentage box but wondered if anyone else has encountered this problem before? Reinstalled Acrobat but problem still there.

    I suddenly have started having this same problem. Anyone have an answer?

  • Is it true that keep options is not working with paragraph span? (CS5)

    Hi all,
    Just wanted to confiem that keep options does not work with Paragraph span.
    thanks,
    shlomit

    That's correct for now. Perhaps in CS6....

  • In my MacBook Pro, finder is crashing after logging in. It is showing crash report with Relaunch option, when i click on Relaunch option finder is working properly but i am unable to see top bar(Apple, Date, Wifi). Even in safari address bar not accepting

    In my MacBook Pro(10.7.5), finder is crashing after logging in. It is showing crash report with Relaunch option, when i click on Relaunch option finder is working properly but i am unable to see Top bar(Apple logo, Date and Wifi etc... bar). Even in safari address bar, TextEdit not accepting any text means when type something not showing up and also i am unable operate any thing from keyboard. Plz help me…..

    One thing that you can try is installing a 'fresh' version of OS X Lion. Boot into your Recovery partition (holding down the command and R keys whilst booting) and elect to install OS X from the Recovery screen. You need not erase your hard drive and you should not lose any of your data.
    Oh, and just as a precaution, I would use Disk Utility, once you're in Recovery mode, to verify your hard drive before trying to install the OS again.
    Clinton

  • Filter option is not working in Reuse alv grid

    Hi all,
    Filter option is not working in alv grid properly.
    if i choose one particular field for filter option .it is working .but another field it is not working though it contains different values.please give the answer.whether i have to pass filter option throuogh reuse_alv _grid or not.thanks in advance
    raj

    Hi raja,
    1. The search/filter is
       CASE SENSITIVE
    2. U can give *
       to search for pattern.
      (IN THAT CASE, it is NOT Case Sensitive)
    regards,
    amit m.

  • Urgent : SSRS reports zoom in option is not working in IE9 compatability view

    Hi,
    We have SSRS reports which when viewed in IE 9 compatability view, zoom in option is not working properly.
    SSRS report have 4 charts inside a rectangle. when zoom in from 100% to 50% only rectangle shrinkes not the charts.
    Please let me know why it is happening and solutions if any?
    Rakesh Jayaram http://blogs.msdn.com/b/rakesh_ramblings/

    Hi Wendy Fu,
    Thanks for your support. Below are the steps and screenshots as per your requirement.
    /*******************Below are the steps to replicate ************************/
    This document explain IE9 compatibility issue with SSRS report (SSRS 2008 R2 and IE9)
    Tools and software used:
    Reports are rendered on Share Point 2010 server which uses SSRS 2008 R2.
    Reports are accessed using web browser IE9, IE10 ….
    Problem statement:
    To work OTHER reports compatibility mode in IE should be ON
    To work SSRS reports (mainly zoom) compatibility mode in IE should be OFF
    OTHER report is being used by customer and they will start using SSRS reports as well. While using both OTHER reports and SSRS reports customer do not prefer to keep switching between compatibility modes.
    “Browser Mode: IE9”
    Steps to reproduce Zoom issue for SSRS report with Compatibility mode is given below:
    Step-1: Select Tools menu -> Compatibility View Settings
    Below setting is suggested for OTHER users so tick as shown below,
    Step-2: On decision center select link and Open the report home page and click the link to open the report.
    Step-3: On SSRS reports Change Zoom level from 100% to say 50%. Here all charts are not moved with container frame.
    If “Browser Mode: IE8” is set with following steps then this issue does not happen.
    Press F12 and from and select IE8 as shown below.
         Press F12 again so this will set the mode and then try Zoom option it works fine. However this setting temporary and will remain for the session only.
    If compatibility mode is OFF then also this does not happen. Please see image below.
    Rakesh Jayaram http://blogs.msdn.com/b/rakesh_ramblings/

  • Layout option doesn't work in Easy Print VI panel, controls on tabs don't appear

    Found two problems with the Report Generation VIs:
    1) In the (Report Generation) Easy Print VI Panel or Documentation.vi, the Layout options don't work (dug down into the sub-VI's and found that they are not connected to anything).
    2) If you have controls or indicators on a Tab Control, and try to use the Easy Print VI Panel or Documentation.vi with the option to include controls in the report, they don't appear. The only controls/indicators that do appear are the ones that are displayed on all of the tabs (ie, create an control and move it on top of the tab control so that it appears on every page).  There is a sub-VI (Expand_control_ref_with_nested_controls.vi) that is called to handle nested controls (ie, clusters, arrays,etc...) but it should have a case to handle tab controls.
    Solved!
    Go to Solution.

    Hey Sajosie,
    Digging into the Sub-VI's you are correct in saying that the Layout Options user input is not connected to anything for most cases. However, In the default case of "Quick Print" the Layout Options are used to modify the layout of the report. In the help for this VI, it mentions that this input is ignored for "Standard Reports" and "HTML" report options. However, it does not mention that this ignoring of the Layout Options is expected for "Word" or "Excel" reports.
    In terms of including controls and indicators in the report that appear on tab controls, I can make a product suggestion to make this sort of front panel design more compatible with the Easy Print VI Panel or Documentation.
    Hope this helps.
    -Ben
    WaterlooLabs

  • How do i copy content from one hard rive to another through my macbook air? the copy and paste option doesn't work

    How do i copy content from one hard rive to another through my macbook air? the copy and paste option doesn't work

    It's because of the extension of the hard drive is a Windows extension ( most likely MSDOS or Ex-FAT), meaning you can only read but not write. If there are no important files (or you can copy the whole thing to your computer/mac) you can just reformat the hard drive and change the extension to NTFS (readable and writable on both windows and mac) or Mac OS Extended (readable and writable on Mac, readable on windows).
    Go to DISK UTILITY
    Choose the Hard Disk you intended
    ERASE
    You can choose either
              (I personally prefer this one, you know just in case)

  • In PHotoshop CC, my blenidng options are not working at all.  A window comes up with the message "

    In PHotoshop CC, my blenidng options are not working at all.  A window comes up with the message "Could not complete your reequest because of a program error.  "
    Linda

    In Photoshop CC whenever I try to apply blending options to a layer, an error message comes up.. In my error message log, this is what comes up
      2013:07:12 16:17:16 : tracked key 0000000000000238 of type struct _ADsc * __ptr64 not found : 1 : REQUIRE failed 2013:07:12 16:17:16 : e:\ps13\ps_14_win_x64_daily_retail\20130423.r.221\photoshop\main\photoshop\interfaces\UTr ackResourceImp.h : 137 : REQUIRE failed 2013:07:18 19:20:19 : tracked key 0000000000000100 of type struct _ADsc * __ptr64 not found : 1 : REQUIRE failed 2013:07:18 19:20:19 : e:\ps13\ps_14_win_x64_daily_retail\20130423.r.221\photoshop\main\photoshop\interfaces\UTr ackResourceImp.h : 137 : REQUIRE failed 2013:09:05 22:42:22 : ..\..\sources\USheetRendererCommands.cpp : 556 : REQUIRE failed 2013:09:16 17:22:13 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:16 17:22:20 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:21 16:19:20 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:21 16:19:37 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:21 16:25:58 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:21 16:28:01 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:34:51 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:35:19 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:35:22 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:35:30 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:37:55 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:37:59 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:38:04 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:38:08 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:38:22 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:43:33 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 17:13:25 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 17:13:42 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 17:13:59 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 17:14:16 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:25 22:04:18 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 16:58:46 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:46:04 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:47:08 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:47:32 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:54:05 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:54:12 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:54:33 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:57:02 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 18:05:03 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 18:05:40 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 18:05:49 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 20:31:17 :
    ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 20:31:53 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed

Maybe you are looking for

  • Continuous play between songs without a pause between tracks

    I have a lot of "mixed" cds which I have uploaded into my ipod. The cd's feature many songs mixed together into one continuous flow. Each track is marked (1-?) so you may select a specific song instead of their only being one long track. The problem

  • JDK 1.4.2 NTLM Support?   Problems with IIS

    Has anyone got the NTLM support in java 1.4.2 to work with MS Internet Information Server (IIS)? I can get the Apache group's httpclient to work, but using the java 1.4.2 authenticator stuff always gives me a status code 500 from the server.

  • Co-ordinates of active page in active doc

    I want to get the co-ordinates on the page, for the center of the active document screen. Also which page it is. Thanks in advance for any help on my first acrobat tryout (though I have done quite a bit of InDesign Scripting)

  • 4th gen click-wheel iPod not syncing

    I have a 40GB 4th Gen click-wheel iPod that although works fine will not sync with my iTunes. I have done all normal troubleshooting items (5R's, restored factory settings, etc.). I am running it on an HP computer and have all software versions up-to

  • !!!!!!!!!!!!!!!!!!!Confused about AEBS - PLEASE HELPPPP!!!!!!!!!!!!!!!!!!!!

    Ok, im about to get a mac, but im so confused on how aebs (airport extreme base station) works. Theres already a connection in my house downstairs which is wireless, but the imac is going upstairs if i use aebs what do i do... does it connect wireles