search for: screen_height

Displaying 6 results from an estimated 6 matches for "screen_height".

2006 Feb 18
0
Move element into view
...eOffset(this.element); var rand = 0; if(this.options.offset) rand = this.options.offset; var element_kante_oben = offsets[1]; var element_hoehe = this.element.offsetHeight; // Länge und Position des dargestellten Ausschnitts relativ zum gesamten Dokument var screen_bottom, screen_height, screen_scrolled; if (isIE){ screen_height = document.documentElement.clientHeight; screen_scrolled = document.documentElement.scrollTop; } else { screen_height = window.innerHeight; screen_scrolled = window.pageYOffset; } screen_bottom = screen_scrolled + sc...
2007 May 22
0
tcl font size issue on centso 4.4 x86_64
...bigger font than 40? I run this script as "wish -f file.tcl" What am I doing wrong to not get bigger fonts? THanks, Jerry --------------------------------------------- set font_size 40 set show_window_title 0 set disable_window_decorations 1 set screen_width [winfo screenwidth . ] set screen_height [winfo screenheight . ] set window_x 0 set window_y 0 set my_message "This is my message..." wm geometry . ${screen_width}x${font_size}+${window_x}+${window_y} wm overrideredirect . $disable_window_decorations font create ourFont -family helvetica -size $font_size set c [canvas .c -heig...
2007 Aug 27
0
7 commits - libswfdec/Makefile.am libswfdec/swfdec_as_string.c libswfdec/swfdec_as_string.h libswfdec/swfdec_as_strings.c libswfdec/swfdec.h libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_player.c
...(ret, swfdec_as_context_get_string ( + SWFDEC_AS_CONTEXT (player), player->system->manufacturer)); +} + +static void +swfdec_system_screen_width (SwfdecPlayer *player, SwfdecAsValue *ret) +{ + SWFDEC_AS_VALUE_SET_INT (ret, player->system->screen_width); +} + +static void +swfdec_system_screen_height (SwfdecPlayer *player, SwfdecAsValue *ret) +{ + SWFDEC_AS_VALUE_SET_INT (ret, player->system->screen_height); +} + +static void +swfdec_system_screen_dpi (SwfdecPlayer *player, SwfdecAsValue *ret) +{ + SWFDEC_AS_VALUE_SET_INT (ret, player->system->dpi); +} + +static void +swfdec_syste...
2017 Jul 23
0
Re: Increasing video memory available to Windows
...8' vram='65536' vgamem='262144' I have a windows 10 guest installed and I installed a Photoshop 12.0 and it starts without any warning. You don't need to set the vgamem that large, 32M should be good enough, the formula to calculate the vgamem is: "screen_width * screen_height * 4" And I would set the "ram" to 512M, however I'm not sure how this actually affects the video memory seen by guest. The documentation is really poor. Anyway, the same configuration works for me so I don't know what else could help you especially while I'm not able t...
2017 Jul 22
2
Increasing video memory available to Windows
Hi, I have a fedora25 system with a Windows10 host and would like to use it for photoshop. However, it complains the video memory is too low. I'm using the QXL driver and it appears to be limited to 256MB? I've installed the Red Hat QXL driver in Windows. I have 4GB of memory allocated overall, and could allocate more if necessary. How do I increase the available video memory? Photoshop
2007 Dec 13
0
libswfdec-gtk/swfdec_gtk_player.c libswfdec/swfdec_as_date.c libswfdec/swfdec_audio.c libswfdec/swfdec_audio_event.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_interval.c libswfdec/swfdec_key_as.c libswfdec/swfdec_mouse_as.c libswfdec/swfdec_movie.c
...ystem->manufacturer)); } static void swfdec_system_screen_width (SwfdecPlayer *player, SwfdecAsValue *ret) { - SWFDEC_AS_VALUE_SET_INT (ret, player->system->screen_width); + SWFDEC_AS_VALUE_SET_INT (ret, player->priv->system->screen_width); } static void swfdec_system_screen_height (SwfdecPlayer *player, SwfdecAsValue *ret) { - SWFDEC_AS_VALUE_SET_INT (ret, player->system->screen_height); + SWFDEC_AS_VALUE_SET_INT (ret, player->priv->system->screen_height); } static void swfdec_system_screen_dpi (SwfdecPlayer *player, SwfdecAsValue *ret) { - SWFDEC_AS...