Change resulution

Hello everyone ,
Does any one know how can I change the application to fit to user resolution screen ?
my app's developed in 768X1024 in original , if user works with 1280X1024 or more , it really gets hard to see , not to talk that in
wide screen it gets worst
working with 12.5 classic
thanks
Moshe

Using 12.5.2 Classic this is how I handle the screen resolution (probably not the best way, but it works for us):
Environment lenv_obj
Long li_screenheight, li_screenwidth, li_x, li_y
GetEnvironment (lenv_obj)
// Determine current screen resolution and validate
li_screenheight = PixelsToUnits (lenv_obj.screenheight, YPixelsToUnits!)
li_screenwidth = PixelsToUnits (lenv_obj.screenwidth, XPixelsToUnits!)
If Not (li_screenheight > 0) or Not (li_screenwidth > 0) Then
  Return
End If
// Get center points
If li_screenwidth > This.Width Then
  li_x = (li_screenwidth / 2) - (This.Width / 2)
End If
If li_screenheight > This.Height Then
  li_y = (li_screenheight / 2) - (This.Height / 2)
End If
// Center window
This.Move (li_x, li_y)
We use that to center the application on the screen. but it can be modified to do whatever you want really.
This is called for every open() event on a window.
You can then go and perform any necessary manipulations required using the li_screenheight/width (the width/height of the monitor (screen resolution) and the This.Width/This.Height (the width and height of the application window.
Rather than using it to find the center of the screen you could do something like This.width = li_screenwidth and This.Height = li_screenheight to make your application window full screen.You will probably then have to also set your datawindows to match the same numbers, but with some kind of offset (to create a gap between the application window and the datawindow)
If it looks small, as suggested by Lars, you may also need to zoom the datawindow to make it more readable.

Similar Messages

  • How to change resulution in bridge

    Hi
    i want to change res in bridge
    when file have less than 300 dpi
    i want to change  res 300dpi  without and change width and height

    I'll try to explain
    a little more in detail:
    I changed my server a while back along with the password to my server.
    Unfortunately Bridge seems to be locked into my old password because everytime I type my more recent server password in Bridge output it automatically reverts back to my old one. Consequently I can no longer upload anythng out of bridge. Is that a little clearer? Ofcourse one can't change a server password in Bridge!

  • Custom Theme change resulution

    Hi
    What can i do to make custom themes in a way that i can change the resolution anytime later by using that pulldown menu (e.g. 1024x768 to 800x600) without having problems with the graphics. I can make single themes in the right resolution but how do i tell keynote to use the right one when i want to change resolution? Or must i use only vector graphics?
    The problem by change the resolution of my custom themes is that all the graphics move somewhere and everything looks confused. When i go back to the right resolution graphics still stay confused and scaled to small or to big too????

    the way to do this properly is to make a theme file for each resolution, and then instead of just using the inspector to change the size, use the theme selector to choose your same theme in the new size. This will reapply the theme properly.

  • Please correct this script

    Hello
    In this script i cant change resulution it will change default size 72 dpi when i chnage 300 dpi it cant work
    also it was not work in cs5 bridge app
    please help me
    #target bridge  
    if( BridgeTalk.appName == "bridge" ) { 
    var menu = MenuElement.find ('myBridgeMenu');
    if (menu == null){
    var newMenu = MenuElement.create( "menu", "Bridge", "before tools/ps", "myBridgeMenu" );
    WebPics = MenuElement.create( "command", "Bridge Processor", "at the end of myBridgeMenu",  "BridgeProcessor" );
    WebPics.onSelect = function () {
       WebPictures();
    function WebPictures(){
    if(app.version.match(/^\d+/) < 2){
        alert("You need CS3 or better to use this script!");
        return;
    if($.os.match(/windows/gi)){
    var TemplateFolder = new Folder(Folder.userData.absoluteURI + "/Adobe/XMP/Metadata Templates");
    var Templates = TemplateFolder.getFiles("*.xmp");
    var TemplateNames =[];
    for(var d in Templates){TemplateNames.push(decodeURI(Templates[d].name.toString().replace(/\.xmp$/i,'' )));}
    var PrefsFile = File(Folder.userData +"/BridgePrefs.dat");
    var Prefs = {};
    if(!PrefsFile.exists){
        Prefs.folder = decodeURI(app.document.presentationPath);
        Prefs.Width = 900;
        Prefs.Height = 800; 
        Prefs.quality = 79;
        Prefs.type = 0;
        if($.os.match(/windows/gi)){
        Prefs.template = 0;
        }else{
    PrefsFile.open('r');
    Prefs = eval(PrefsFile.read());
    PrefsFile.close();
    if($.os.match(/windows/gi)){
    if(Prefs.template == null) Prefs.template = 0;
    if(Prefs.template == undefined) Prefs.template = 0;
    var win = new Window('dialog','Bridge Processor');
    g = win.graphics;
    var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.99, 0.99, 0.99, 1]);
    g.backgroundColor = myBrush;
    win.alignChildren="row";
    win.g10 = win.add('group');
    win.g10.orientation = "row";
    win.title = win.g10.add('statictext',undefined,"Bridge Processor");
    win.title.helpTip="Written by Paul Riggott";
    win.title.alignment="bottom";
    var g = win.title.graphics;
    g.font = ScriptUI.newFont("Georgia","BOLDITALIC",26);
    win.p1= win.add("panel", undefined, undefined, {borderStyle:"black"});
    win.p1.alignChildren="fill";
    win.p2= win.p1.add("panel", undefined, undefined, {borderStyle:"black"});
    win.g3 =win.p2.add('group');
    win.g3.orientation = "row";
    win.g3.alignment="left";
    win.g3.rb1 = win.g3.add('radiobutton',undefined,'Use selected Files');
    win.g3.rb2 = win.g3.add('radiobutton',undefined,'Use files of Type');
    var FileExtensions = "DNG,PSD,PDD,JPEG,JPG,JPE,GIF,BMP,RLE,DIB,TIF,CRW,NEF,RAF,ORF,CIN,DPX,EPS,PS,FLM,PSB,EXR, PCX,PDP," +
    "PCD,RAW,PICT,PCT,PIC,PXR,PNG,TGA,VDA,ICB,VST,TIF,TIFF,WBM,DNG,SCT,PBM,CRW,CR2,DC2,DCR,NEF ,MOS,MRW,X3F,MOV";
    FileExtensions= FileExtensions.toUpperCase();
    FileExtensions = FileExtensions.split(",");
    FileExtensions= ReturnUniqueSortedList(FileExtensions);
    win.g3.dd1 = win.g3.add('dropdownlist',undefined,FileExtensions);
    try{
    win.g3.dd1.selection= Number(Prefs.type);
    }catch(e){win.g3.dd1.selection=0;};
    win.g3.rb1.value=true;
    win.g3.cb1 = win.g3.add('checkbox',undefined,'Use Subfolders');
    win.g3.dd1.enabled=false;
    win.g3.cb1.value=false;
    win.g3.cb1.enabled=false;
    win.g3.rb2.onClick = function(){
    win.g3.dd1.enabled=true;
    win.g3.cb1.value=false;
    win.g3.cb1.enabled=true;
    win.g3.rb1.onClick = function(){
    win.g3.dd1.enabled=false;
    win.g3.cb1.value=false;
    win.g3.cb1.enabled=false;
    win.p3= win.p1.add("panel", undefined, undefined, {borderStyle:"black"});
    win.g10a =win.p3.add('group');
    win.g10a.alignment="left";
    win.g10a.cb1 = win.g10a.add('checkbox',undefined,'Save to Same Location');
    win.g11 =win.p3.add('group');
    win.g11.spacing=10;
    win.g11.orientation = 'row';
    win.g11.alignment="left";
    win.g11.st1 = win.g11.add('statictext',undefined,'Output Folder :-');
    win.g11.st1.preferredSize=[200,20];
    win.g11.bu1 = win.g11.add('button',undefined,'Browse');
    win.g11.st1.alignment="left";
    win.g11a =win.p3.add('group');
    win.g11a.et1 = win.g11a.add('edittext');
    win.g11a.et1.preferredSize=[400,20];
    win.g11a.et1.enabled=false;
    if(Folder(Prefs.folder.exists)){
        win.g11a.et1.text =  decodeURI(Folder(Prefs.folder).fsName);
    if(Folder(Prefs.folder.exists)) outputFolder = Folder(Prefs.folder);
    win.g11.bu1.onClick=function(){  
         outputFolder = Folder.selectDialog("Please select the output folder",Prefs.folder);   
         if(outputFolder !=null) win.g11a.et1.text =  decodeURI(outputFolder.fsName);
    win.p4= win.p1.add("panel", undefined, undefined, {borderStyle:"black"});
    win.g12 =win.p4.add('group');
    win.g12.cb1 = win.g12.add('checkbox',undefined,'Use Fullsize JPEG');
    win.g12.cb1.helpTip="This can take a lot more time!";
    if($.os.match(/windows/gi)){
    win.g12.cb2 = win.g12.add('checkbox',undefined,'Set Resolution');
    win.g12.et1 = win.g12.add('edittext',undefined,'72');
    win.g12.et1.preferredSize=[100,20];
    win.g12.et1.onChanging = function() {
      if (this.text.match(/[^\d]/)) {
        this.text = this.text.replace(/[^\d]/g, '');
    win.g12.orientation = 'row';
    win.g12.alignment="left";
    win.g12.spacing=20;
    win.g12.cb2.onClick=function(){
        if(win.g12.cb2.value){
            win.g12.et1.enabled=true;
            }else{
                win.g12.et1.enabled=false;
    win.g12.cb2.onClick();
    win.g14 =win.p4.add('group');
    win.g14.spacing=0;
    win.g14.orientation = 'row';
    win.g14.alignment="left";
    win.g14.cb1 = win.g14.add('checkbox',undefined,"Fit Image");
    win.g14.cb1.preferredSize=[80,20];
    win.g14.st0 = win.g14.add('statictext',undefined,"W: ");
    win.g14.et1 = win.g14.add('edittext',undefined,'900');
    win.g14.et1.preferredSize=[50,20];
    win.g14.et1.enabled=false;
    win.g14.et1.text = Number(Prefs.Width);
    win.g14.st1 = win.g14.add('statictext',undefined,"px");
    win.g14.st1.preferredSize=[30,20]
    win.g14.st0a = win.g14.add('statictext',undefined,"H: ");
    win.g14.et1a = win.g14.add('edittext',undefined,'900');
    win.g14.et1a.preferredSize=[50,20];
    win.g14.et1a.enabled=false;
    win.g14.et1a.text = Number(Prefs.Height);
    win.g14.st1a = win.g14.add('statictext',undefined,"px");
    win.g14.st1a.preferredSize=[30,20]
    win.g14.st3 = win.g14.add('statictext',undefined,"Quality");
    win.g14.st3.preferredSize=[60,20];
    win.g14.dd1 = win.g14.add('dropdownlist');
    for(var a =1;a<101;a++){
        win.g14.dd1.add("item", a);
    win.g14.dd1.selection=Number(Prefs.quality);
    win.g14.et1.onChanging = function() {
      if (this.text.match(/[^\d]/)) {
        this.text = this.text.replace(/[^\d]/g, '');
    win.g14.et1a.onChanging = function() {
      if (this.text.match(/[^\d]/)) {
        this.text = this.text.replace(/[^\d]/g, '');
    if($.os.match(/windows/gi)){
    win.g18 =win.p4.add('group');
    win.g18.spacing=25;
    win.g18.orientation = 'row';
    win.g18.alignment="left";
    win.g18.cb1 = win.g18.add('checkbox',undefined,'Use Template');
    win.g18.dd1 = win.g18.add('dropdownlist',undefined,TemplateNames);
    if(Templates.length < 1) {
    win.g18.cb1.enabled=false;
    }else{
    win.g18.dd1.selection=Number(Prefs.template);
    win.g18.dd1.enabled=false;
    win.g18.cb1.onClick=function(){
        if(win.g18.cb1.value){
            win.g18.dd1.enabled=true;
            }else{
                win.g18.dd1.enabled=false;
    win.g14.cb1.onClick=function(){
       if( win.g14.cb1.value){
           win.g14.et1.enabled=true;
           win.g14.et1a.enabled=true;
           }else{
               win.g14.et1.enabled=false;
               win.g14.et1a.enabled=false;
    win.g50 =win.p4.add('group');
    win.g50.spacing=10;
    win.g50.orientation = 'row';
    win.g50.alignment="left";
    win.g50.st1 = win.g50.add('statictext',undefined,"FileName Options");
    var options = ["Document Name","Document Name with Prefix","Document Name with Suffix","Document Name with Sequence Number","New Name with Sequence Number"];
    win.g50.dd1 = win.g50.add('dropdownlist',undefined,options);
    win.g50.dd1.selection=0;
    win.g55 =win.p4.add('group');
    win.g55.spacing=10;
    win.g55.orientation = 'stack';
    win.g55.alignment="left";
    win.g55a =win.g55.add('group');
    win.g55a.spacing=10;
    win.g55a.alignment="left";
    win.g55a.st1 = win.g55a.add('statictext',undefined,"Prefix");
    win.g55a.et1 = win.g55a.add('edittext',undefined,"");
    win.g55a.et1.preferredSize=[250,20];
    win.g55a.visible=false;
    win.g55b =win.g55.add('group');
    win.g55b.spacing=10;
    win.g55b.alignment="left";
    win.g55b.st1 = win.g55b.add('statictext',undefined,"Suffix");
    win.g55b.et1 = win.g55b.add('edittext',undefined,"");
    win.g55b.et1.preferredSize=[250,20];
    win.g55b.visible=false;
    var numbers =[2,3,4,5,6,7,8,9,10];
    win.g55c =win.g55.add('group');
    win.g55c.spacing=10;
    win.g55c.alignment="left";
    win.g55c.st1 = win.g55c.add('statictext',undefined,"Sequence Number");
    win.g55c.et1 = win.g55c.add('edittext',undefined,"");
    win.g55c.et1.preferredSize=[50,20];
    win.g55c.st2 =win.g55c.add('statictext',undefined,'Length');
    win.g55c.dd1 =win.g55c.add('dropdownlist',undefined,numbers);
    win.g55c.dd1.selection=2;
    win.g55c.visible=false;
    win.g55c.et1.onChanging = function() {
      if (this.text.match(/[^\-\.\d]/)) {
        this.text = this.text.replace(/[^\-\.\d]/g, '');
    win.g55d =win.g55.add('group');
    win.g55d.spacing=10;
    win.g55d.st1 = win.g55d.add('statictext',undefined,"FileName");
    win.g55d.et1 = win.g55d.add('edittext',undefined,"");
    win.g55d.et1.preferredSize=[195,20];
    win.g55d.et2 = win.g55d.add('edittext',undefined,"");
    win.g55d.et2.preferredSize=[50,20];
    win.g55d.st2 =win.g55d.add('statictext',undefined,'length');
    win.g55d.dd1 =win.g55d.add('dropdownlist',undefined,numbers);
    win.g55d.dd1.selection=2;
    win.g55d.visible=false;
    win.g55d.et2.onChanging = function() {
      if (this.text.match(/[^\-\.\d]/)) {
        this.text = this.text.replace(/[^\-\.\d]/g, '');
    win.g50.dd1.onChange = function(){
        switch(this.selection.index){
            case 0 : hideFields();checkSave();break;
            case 1 : hideFields();
            win.g55a.visible=true;
            break;
            case 2 : hideFields();
            win.g55b.visible=true;
            break;
            case 3 : hideFields();
            win.g55c.visible=true;
            break;
            case 4 : hideFields();
            win.g55d.visible=true;
            break;
            default : break;
    function hideFields(){
    win.g55a.visible=false;
    win.g55a.et1.text='';
    win.g55b.et1.text='';
    win.g55b.visible=false;
    win.g55c.visible=false;
    win.g55c.et1.text='1';
    win.g55d.visible=false;
    win.g55d.et1.text='';
    win.g55d.et2.text='1';
    win.g150 =win.p1.add('group');
    win.g150.spacing=10;
    win.g150.orientation = 'row';
    win.g150.alignment="top";
    win.g150.bu1 = win.g150.add('button',undefined,"Process");
    win.g150.bu1.preferredSize=[200,30];
    win.g150.bu2 = win.g150.add('button',undefined,"Cancel");
    win.g150.bu2.preferredSize=[200,30];
    win.g10a.cb1.onClick=function(){
        if(win.g10a.cb1.value){
            win.g11.bu1.enabled=false;
            win.g50.dd1.selection=4;
            }else{
                win.g11.bu1.enabled=true;
    function checkSave(){
        if(win.g10a.cb1.value){
            alert("Sorry this is not allowed as it could overwrite the document!\nPlease use another option");
            win.g50.dd1.selection=4;
            return;
    win.g150.bu1.onClick=function(){
        if(win.g11a.et1.text == ''){
            alert("No output folder has been selected!");
            return;
        if(Number(win.g14.et1.text) <10) {
            alert("Please enter a realistic Resize number!");
            return;
        if(Number(win.g14.et1a.text) <10) {
            alert("Please enter a realistic Resize number!");
            return;
        if(win.g50.dd1.selection.index == 1 && win.g55a.et1.text == ''){
            alert("No Prefix Has Been Entered!");
            win.g55a.et1.active=true;
            return;
        if(win.g50.dd1.selection.index == 2 && win.g55b.et1.text == ''){
            alert("No Suffix Has Been Entered!");
            win.g55b.et1.active=true;
            return;
        if(win.g50.dd1.selection.index == 3 && win.g55c.et1.text == ''){
            alert("No Sequence Number Has Been Entered!");
            win.g55c.et1.active=true;
            return;
        if(win.g50.dd1.selection.index == 4 && win.g55d.et1.text == ''){
            alert("No File Name Has Been Entered!");
            win.g55d.et1.active=true;
            return;
        if(win.g50.dd1.selection.index == 4 && win.g55d.et2.text == ''){
            alert("No Sequence Number Has Been Entered!");
            win.g55d.et2.active=true;
            return;
    Prefs.folder = decodeURI(outputFolder);
    Prefs.Width = Number(win.g14.et1.text);
    Prefs.Height = Number(win.g14.et1a.text);
    Prefs.quality = parseInt(win.g14.dd1.selection.index);
    Prefs.type= parseInt(win.g3.dd1.selection.index);
    if($.os.match(/windows/gi)){
    if(Templates.length > 0) {
    Prefs.template = parseInt(win.g18.dd1.selection.index);
    PrefsFile.open('w');
    PrefsFile.write(Prefs.toSource());
    PrefsFile.close();
        win.close(1);
        process();
    win.center();
    result = win.show();
    function process(){
    var folders =[];
    if(win.g3.cb1.value){
    var topLevel = Folder(app.document.presentationPath);   
    folders = FindAllFolders(topLevel, folders);
    folders.unshift(topLevel);
    var Quality = parseInt(win.g14.dd1.selection.index);
    var ResizeW = Number(win.g14.et1.text);
    var ResizeH = Number(win.g14.et1a.text);
    var sels =[];
    Count = 0;
    mask = win.g3.dd1.selection.text.toLowerCase();
    if(win.g3.rb1.value) {
        sels = app.document.selections;
       processSels();
    if(!win.g3.rb1.value &&  !win.g3.cb1.value){
    app.document.deselectAll();  
    sels = app.document.getSelection(mask);
    processSels();
    if(!win.g3.rb1.value &&  win.g3.cb1.value){//use subfolders
    mask = "*."+ win.g3.dd1.selection.text.toLowerCase();
    for(var k in folders){
    sels = folders[k].getFiles(mask);
    processSels();
    function processSels(){
    for(var z  in sels){
    var Thumb1 = new Thumbnail(sels[z]);
    Name = decodeURI(Thumb1.spec.name).replace(/\.[^\.]+$/, '');
    var Seq1 = zeroPad((Number(Count)+Number(win.g55c.et1.text)), (parseInt(win.g55c.dd1.selection.index)+2));
    var Seq2 = zeroPad((Number(Count)+Number(win.g55d.et2.text)), (parseInt(win.g55d.dd1.selection.index)+2));
    var Prefix = win.g55a.et1.text;
    var Suffix = win.g55b.et1.text;
    var NewName = win.g55d.et1.text;
    app.synchronousMode = true;
    if(win.g12.cb1.value){
    Thumb1.core.fullsize.fullsize;
    }else{
        Thumb1.core.preview.preview;
    app.synchronousMode = false;
    var md = Thumb1.synchronousMetadata;
    md.namespace = "http://ns.adobe.com/tiff/1.0/";
    var orientation = md.Orientation.replace(/(\w+)(\s+)(.)(\d+)(.)/,"$3$4");
    orientation = orientation.replace(/°/,'');
    orientation = orientation.replace(/Rotate/,'');
    if(orientation == 'Normal') orientation =0;
    var bm = undefined;
    if(win.g12.cb1.value){
    bm = Thumb1.core.fullsize.fullsize;
    }else{
        bm = Thumb1.core.preview.preview;
    if(bm.width != undefined) bm = bm.rotate(orientation);
    if(win.g14.cb1.value){
    if(bm.width > bm.height){
    var maxSize = Math.max(bm.height,bm.width);
    var minSize =Math.min(ResizeW,maxSize);
    if(minSize < maxSize) bm = bm.resize(minSize,BitmapData.bicubicSharper);
    }else{
        var maxSize = Math.max(bm.height,bm.width);
        var minSize =Math.min(ResizeH,maxSize);
    if(minSize < maxSize) bm = bm.resize(minSize,BitmapData.bicubicSharper);
    var parts = Thumb1.name.match(/(.*)\.([^\.]+)/); 
    switch(Number(win.g50.dd1.selection.index)){
        case 0 : saveFile =  Name; break;
        case 1 : saveFile =  Prefix + Name; break;
        case 2 : saveFile =  Name + Suffix; break;
        case 3 : saveFile =  Name + Seq1; break;
        case 4 : saveFile =  NewName + Seq2; break;
        default : break;
    if(win.g10a.cb1.value) outputFolder =app.document.presentationPath;
    bm.exportTo(new File(outputFolder +"/"+ saveFile +".jpg"),(Quality+1));
    Count++;
    if($.os.match(/windows/gi)){
    if(win.g12.cb2.value){//set resolution
    var res = Number(win.g12.et1.text);
    var t = new Thumbnail(new File(outputFolder +"/"+ saveFile +".jpg"));
    var mdata = t.synchronousMetadata;
    mdata.namespace = "http://ns.adobe.com/tiff/1.0/";
    mdata.XResolution =res*1000 +"/1000";
    mdata.YResolution =res*1000 +"/1000";
    mdata.ResolutionUnit =1;
    if(win.g18.cb1.value){
    var t = new Thumbnail(new File(outputFolder +"/"+ saveFile +".jpg"));
    var mdata = t.synchronousMetadata;
    mdata.applyMetadataTemplate(win.g18.dd1.selection.text, "replace");
        if(result == 1) alert("All done!");
    function ReturnUniqueSortedList(ArrayName){
    var unduped = new Object;
    for (var i = 0; i < ArrayName.length; i++) {  
    unduped[ArrayName[i]] = ArrayName[i];
    var uniques = new Array;
    for (var ki in unduped) {
       uniques.push(unduped[ki]);
    uniques.sort();
    return uniques;
    function FindAllFolders( srcFolderStr, destArray) {
        var fileFolderArray = Folder( srcFolderStr ).getFiles();
        for ( var i = 0; i < fileFolderArray.length; i++ ) {
            var fileFoldObj = fileFolderArray[i];
            if ( fileFoldObj instanceof File ) {           
            } else {
             destArray.push( Folder(fileFoldObj) );
            FindAllFolders( fileFoldObj.toString(), destArray );
        return destArray;
    function zeroPad(n, s) {
    n = n.toString();
    while (n.length < s) n = '0' + n;
    return n;

    The latest version is here:-
    http://www.scriptsrus.talktalk.net/BridgeProcessor.htm
    This is WINDOWS ONLY, this script will NOT work on a Mac!

  • Monitor going to sleep mode if I dring to install windows 7 home premium

    Hello
    I have probleem to installing Windows 7 in my first pc build .
    At the beginning I turn on my pc and everything was ok ,I get boot menu and then I tried to install Windows 7. Fiew steps furduer when Windows was installing then monitor goes black , but pc still runs . I waited about 15 minutes and still nothing. I have
    tried dvi slot to but it didnˇt work , Im not wery good at it but can enyone help me 

    Hi
    I have been fixed probleem. I just removed my videocard and I turnded my pc on with onboard graphics.
    Then I was able to run pc fine and i installed drivers and also changed resulution lower
    in any case , but i suhted down pc and butted back videocard , and now its working fine .Thank
    you for your answers were helpful.
    K204k

  • How could I set a fixed window for all resulution?

    because I design the website in MAC when I transfer to PC it
    change shape
    how could I set a fixed size window for all resulution?

    Using layers for page layout is just asking for trouble.
    Trouble with
    centering content, and trouble with expanding text.
    Use tables until you can manage a proper CSS layout scheme,
    i.e., NOT
    layers. Start here -
    http://www.projectseven.com/tutorials/css/qdmacfly/index.htm
    http://www.macromedia.com/devnet/mx/dreamweaver/css.html
    http://www.macromedia.com/devnet/dreamweaver/articles/tableless_layout_dw8.html
    http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts.html
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Media Fusion" <[email protected]> wrote in
    message
    news:[email protected]...
    > What would you suggest then, and why not layers? I am
    just going off of
    > what I
    > know and I am completly open for correction or cretique
    on process,
    > thought
    > process etc...
    >
    >
    quote:
    Originally posted by:
    Newsgroup User
    > Ugh.
    >
    > Layers? Surely you jest?
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Media Fusion" <[email protected]>
    wrote in message
    > news:[email protected]...
    > > yes excatly, nothing should change when you bring
    the files from mac to
    > > pc, the
    > > only thing that may be a slight issue is how you
    coded the fonts for
    > > text.
    > > As
    > > long as you set it up with pretty universal fonts
    not much should
    > > change.
    > > I go
    > > cross platform all the time, code is code. If you
    want to really contain
    > > the
    > > positiong and location of your site design look in
    to using layers in
    > > combination with tables. That fixed my problem with
    how different
    > > browsers
    > >
    >
    >
    >
    >
    >
    >

  • [svn:fx-4.x] 14837: Changing the way data tips are rendered in when mirrored.

    Revision: 14837
    Revision: 14837
    Author:   [email protected]
    Date:     2010-03-18 00:26:27 -0700 (Thu, 18 Mar 2010)
    Log Message:
    Changing the way data tips are rendered in when mirrored.
    Single data tip shows to left in RTL now which shows to right in LTR
    Callouts connecting datatips to chart items are also modified.
    QE notes:
    Doc notes:
    Bugs: FLEXDMV-2347 ( Datatips cluterred in bubble chart when layoutDirection=rtl)
    FLEXDMV-2348 ( Position of datatips not changing WRT layoutDirection)
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration:
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FLEXDMV-2347
        http://bugs.adobe.com/jira/browse/FLEXDMV-2348
    Modified Paths:
        flex/sdk/branches/4.x/frameworks/projects/datavisualization/src/mx/charts/chartClasses/Ch artBase.as

    Setting Lightroom's preview size to larger than screen resolution is guaranteed to slow things down. I have a dual monitor system whith Lightroom showing the loupe on one screen and the grid on the other. The screen sizes are 1920x1080 and 2560x1440. Following your practice for previews would bring my system to a crawl and I have an entry level workstation.All my previews are of standard 1024x768 in size. The only delays in viewing come when Lightroom is asked to display an image where there is no preview. Once the preview has been created, browsing is near instantaneous.
    I beg to differ! The reason is that a preview can be used for any size, which is smaller than that of the preview. Scaling down a preview can be done with little or not loss in quality compared to getting the full resulution and scale that down. Scaling up is not possible.
    In your case, you will not use the previews of 1024x768 at all for full screen display. Instead you will force L3 to create bigger previews the first time you open the photo. You could try this by generating the standard previews for new imported photos before you start browsing. Then try to browse. You will probably get the "Loading" message, which indicates that the preview was not used and another one with higher resolution will be made. Then try the same experiment, setting the size of the standard preview to 2048. If, and only if, the size of your display area is not more than 2048 pixels wide and you display a photo in lanscape orientation, you will be able to browse without delay after generating the standard previews.
    If I understand your setup correctly, you display the photos in a window of 2560x1440 pixels. I suspect that only 1:1 previews could be used for that. I think Adobe should increase the maximum size of the previews to a value larger than 2048, so that you are not forced to use only the 1:1 previews.
    I agree, that when the previews have been generated, browsing is near instantaneous.

  • BADI for changing fields during Creation of BP in CRM

    Hello to everyone,
      I need to find a BADI (or other way) to default several fields during BP creation in CRM (4.0 SR1 SP9). The fields I will like to set are TAX TYPE, TAX NUMBER, TAX CATEGORY, etc.. I have found the BADI BUPA_TAX_UPDATE but i dont see any suitable parameters (structures) to changes these fields. Please advice and thanks in advance.

    Hi
    If you use function BUPA_NUMBERS_GET then your BP number will already be buffered and you can avoid a DB read. It may also be that the BP is not in the DB yet anyway.
    You can only pass one GUID in at a time - loop through IT_CHANGED_INSTANCES into a variable of type BU_PARTNER_GUID and pass that into the function as input parameter IV_PARTNER_GUID.
    Cheers
    Dom

  • How to restrict manual changing of free goods in sales order

    Hi ,
    Goodmorning ,
    We have some requirement : In sales order free goods quantity determination by system  should not be allowed to change manually , where can we do this ?
    Looking for your inputs
    Thanks and regards
    Venkat

    As per SAP Standard, when the main Item quantity is changed, the Free Goods are redetermined. In this case any manual changes to Free Goods Quantities are lost.
    But your requirement is for restricting the Chages of the Quantity of Free Goods Correct?
    I believe there is no SAP standard solution for this. You will have to apply a User Exit, which will check the Item category of each LIne item & if it is free goods (TANN) then changes are not permitted.
    Hope this helps.
    Thanks,
    Jignesh Mehta

  • Sy-tabix value has changed...

    Hi Gurus,
    I  am using a code like dis...this is not the actual code m using instad m sendin u a sample program so that u can understand the problem
    There is a selecvtion for Customer.
    sort itab by kunnr.
    loop at itab.
    on change of itab-kunnr.
    wkunnr = itab-kunnr.
      read table zitab with key kunnr = itab-kunnr.
    endon.
    if itab-kunnr = wkunnr.
    wdmbtr = wdmbtr + itab-dmbtr.
    endif.
    at end of kunnr.
    ftab-kunnr = wkunnr.
    ftab-dmbtr = wdmbtr.
    append ftab.
    endat.
    endloop.
    Now my problem is that  AT END OF Kunnr is working fine for the first customer or say for single customer but when there are multiple customers  AT END OF kunnr is triggring for each entry.......
    In debug MOdei can see that as soon as read table  syntax is used the tabix value is changed....
    So Can anyone suggest what is the solution....
    Regards,
    Raman

    This is the Declaration
    DATA:  BEGIN OF ITAB OCCURS 0,
                      KUNNR      LIKE BSID-KUNNR,
                      BELNR      LIKE BSID-BELNR,
                      BUKRS      LIKE BSID-BUKRS,
                      GJAHR      LIKE BSID-GJAHR,
                      BUZEI      LIKE BSID-BUZEI,
                      SHKZG      LIKE BSID-SHKZG,
                      VALUT      LIKE BSID-ZFBDT,
                      SGTXT(70)  TYPE  C,
                      ZFBDT      LIKE BSID-ZFBDT,
                      ZBD1T       TYPE BSID-ZBD1T,
           ZBD2T       TYPE BSID-ZBD2T,
           ZBD3T       TYPE BSID-ZBD3T,
           REBZG       TYPE BSID-REBZG,
           NETDT       TYPE BSID-BUDAT,
                      ZUONR      LIKE BSID-ZUONR,
                       BLART      LIKE BSID-BLART,
                      DMBTR      LIKE BSID-DMBTR,
                      SPART       TYPE VBRK-SPART,
                      DAY    TYPE RFPOSX-VERZN,
                      FLAG TYPE C,
                      CITY        TYPE KNA1-ORT01,
           NAME1       TYPE LFA1-NAME1,
                     CR_DR1(4)  TYPE C,
                      PSWSL      LIKE BSID-PSWSL,
                      ZTERM      LIKE BSID-ZTERM,
                      VBELN      LIKE BSID-VBELN,
                      UMSKZ      LIKE BSID-UMSKZ,
                      KLIMK      LIKE KNKK-KLIMK,
                      VTEXT      LIKE TVZBT-VTEXT,
                      ADV        LIKE BSID-DMBTR,
                      REBZT       TYPE BSID-REBZT,
                      XBLNR      LIKE BSID-XBLNR,
                      VTEXT1(70) TYPE  C,
                       FKLIMK    LIKE KNKK-KLIMK,
                      ABC(4)     TYPE C,
                    AGRO(4)        TYPE C,
                      BIO(4)        TYPE C,
                      SKFOR      LIKE KNKK-SKFOR,
                      SSOBL      LIKE KNKK-SSOBL,
                      CTLPC      LIKE KNKK-CTLPC,
                      OEIKW      LIKE S066-OEIKW,
                      OLIKW      LIKE S067-OLIKW,
                      OFAKW      LIKE S067-OFAKW,
                     NAME1      LIKE LFA1-NAME1,
                      BUDAT      LIKE BKPF-BUDAT,
                      D_DMBTR    LIKE BSID-DMBTR,
                      S_DMBTR    LIKE BSID-DMBTR,
                      VORGN      LIKE BSEG-VORGN,
                      WERKS      LIKE BSEG-WERKS,
                      NAMESO     LIKE KNA1-NAME1,
                      NAMEAM     LIKE KNA1-NAME1,
                      NAMERM     LIKE KNA1-NAME1,
                       NAMEDR     LIKE KNA1-NAME1,
       END OF ITAB.

  • ANY SY-INDEX REFLECT CHANGES WHEN CONTROL BREAK STATEMENT PROCESS

    Dear Guru's,
                     I have a requirement where i have to move the values to variable when control break (AT END OF) process. So i want to move the values according to the end of Vendor so for that  i want to know is there any sy-index available which reflects changes when Control break (AT end of) process.
    LIKE Sy-subrc = 0 when select statement fetches record or sy-tabix is like counter for loop.
    Hope to get reply soon.
    Regards,
    Himanshu Rangappa

    Hi,
    There is no system Fields for it.
    But your requirement can be done with 'AT NEW' and 'AT END' statement.
    Refer this sample example,
    loop at otab.
        at new module.
          move otab-module to otab2-module.
        ENDAT.
          at END OF effort.
          sum.               "Do your calculations here
          move otab-count to otab2-count.
          append otab2.
        endat.
      endloop.

  • How to change SSO Partner Application Login_url and Logout_url

    As part of a deployment in a different data centre, we needed to change the domain name of an application using SSO for authentication. We have gone through the process of re-registering the SSO server but this does not update the domain name
    By using diagnostic tools from Oracle we have discovered that the file 'osso.conf' in $ORACLE_HOME/Apache/Apache/conf/osso contains incorrect entries for login_url and logout_url.
    These settings are of the form:
    login_url=http://www.ourolddomain.com/pls/orasso/orasso.wwsso_app_admin.ls_login
    logout_url=http://www.ourolddomain.com/pls/orasso/orasso.wwsso_app_admin.ls_logout
    Please can anyone tell me how these settings can be changed.

    Hi,
    [Solved] SSO fails to show success page you can find some information on re registering mod_osso.
    Hope it helps.

  • Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Did you check the Zoom setting?
    Have you tried a reset (reboot)? Hold HOME and SLEEP until an Apple logo appears.
    If it isn't Zoom and a reboot doesn't help try Settings/General/Reset - Reset all settings

  • Email address change--how does this affect laptop and nook?

    I use my Adobe ID only to authorize my laptop and Nook.  I need to change my email address which seems easy on the FAQs, but how do I then reauthorize my laptop and Nook?  And, if I do this, are all my existing library books unreadable since they were downloaded by what the Nook thinks is a different user?  I'm almost sure I won't be able to return any books in ADE on my laptop, but I can live with that if I can still read the books on the Nook.
    Thanks in advance.

    The sync process with iTunes transfers the email account settings (for your chosen accounts via your iPhone sync preferences) from the Mail application on your Mac to the iPhone's email application.
    The iPhone is running OS X and the iPhone's email client can be considered a mobile version of the Mail application.

  • I cannot change from grid view to list view when i contol click on the downloads folder on the dock am i doing something wrong? if so how do i change the ?view in the dock

    when i contol click on the downloads icon in the dock i get the gris view . I thought if you control click, you are able to change the view to fan or list. am I doing something wrong.? Icheck to make sure the contol key is working by doing a screenshot and it works there. What am I doing wrong?

    Needs to be a Stack ?

Maybe you are looking for

  • "Cannot connect to iTunes Store" when trying to sign in to Apple ID

    Whenever I try to sign in to my Apple ID on the app store, it says, "Cannot connect to iTunes Store". I've tried everything here, but nothing seems to be working. It used to work before I signed out of my Apple ID. I have an iPhone 5c on iOS 7.04. He

  • How to display source code of a webpage in Safari 7.0?

    Hello. I'm unable to find how we used to once enable developing tools in Safari Preferences or simply CMD + ALT + A to display the source code of a webpage. Now I've no clue how to display source code of a webpage in Safari 7.0 on Mac OS X Mavericks.

  • Steps after track creation

    Hello experts, I need some help with configuring a track for 7.4 development. I created a track for 7.4 development and made sure all necessary software components and their dependencies are defined in sld. As I read lots of documentation on creating

  • Could not initialize the Java virtual machine. Program will exit

    Hi! I am trying to install jdk-1_5 using jdk-1_5_0_06-windows-i586-p.exe. The entire installation runs fine till the end when we get the following error message. *"could not initialize the Java virtual machine. Program will exit"* Any idea as to what

  • RAW photos are purple when imported

    Aperture has just added RAW support for my Olympus E-M1.  I took several photos in JPG+RAW.  When importing them to Aperture the JPGs were fine but some, not all, of the RAW images became purple.  Is this an Aperture problem, an SD card problem, or c