c******r 发帖数: 21 | 1 default setting is automatic overflow. If you won't put
much text in the first layer, no scrollbar will appear.
But anyway you can add this in the css or style tag:
overflow:scroll ->for displaying the scrollbar regardless of the length
overflow:hidden ->no scrollbar, hide the overflowed content |
|
m***r 发帖数: 294 | 2 Help:
I need to create two layers in a html page
Header POSITIONED AT 100,100<
/td> |
Text POSITIONED AT 100,100
td> |
- Once the overflow happens, I would like to have scrollbar adding in the
second layer. If you move the scrollbar, the first layer will be still.
- Once I print, the whole page will be printed, not just the showing window.
I appreciate y |
|
i********p 发帖数: 16 | 3 It's more complicated if you are using version 8.
Open up the file you are working on, then select File > Import > Open
External Library, slect HaltoTheme.fla from Configuration folder (somewhere
under program files/flash 8/). In the Theme's Library panel, expand the
Themes/MMDefault folder and drag the "Scrollbar Assets" folder to your
document library. Expand the ScrollBar Assets/States folder in the library
of YOUR document folder. Now open the symbols and customise them, save, test
your movi |
|
c******7 发帖数: 4 | 4 请问各位大侠:在flash里面怎么设置datagrid, textarea, UIscrollbar等的
scrollbar的颜色?
我在document里面怎么也找不到。
先谢谢了! |
|
r**d 发帖数: 316 | 5 用vb.net编程,使用了微软的web browser control,问题是如何去除上面的scrollbar?
企图用win32api,但无法获得hwnd(为0) |
|
w******t 发帖数: 16937 | 6 分特,想看专业的?
看这个。声明:因为网络安全原因,我删去了一些必须删去的内容。
http://schema.org/WebPage">Google")
but it gave an IE window same size as its parent, what is the problem? |
|
r**d 发帖数: 316 | 25 谢谢,找到一个简单办法,可以将Document object的一个scroll属性设成no就可以了,
不过要在页面完全装入后才能设。 |
|
h*****l 发帖数: 184 | 26 我想做的是点一个link或者button, 跳出一个新小窗口.
但这个小窗口的内容是随着参数改变的.
现在的问题就是, 如何让这个URL知道那是个参数.
这里参数是con, 但以下的code, 并没法让
javascript认识到con是参数, 而非实际数值.
link
多谢了! |
|
p*a 发帖数: 592 | 27 经过痛苦的实践与摸索,偶终于找到了一个土办法让它滚动
到最后一行.
首先记录下空白JTextArea的viewport size
然后append一行文字进去,再记录新的viewport size
然后算出这两个size的高度差
然后取得JTextArea的vertical scrollbar
设其value为其maximum value+新添行数x高度差
code 如下:
// get line height first
JTextArea area=MyFrame.getTextArea();
Dimension d1=area.getPreferredScrollableViewportSize();
area.append(message); //one line message
Dimension d2=area.getPreferredScrollableViewportSize();
int lineHeight=(int)(d2.getHeight()-d1.getHeight());
......
// append new te |
|
a***e 发帖数: 188 | 28 I have tried this just now, but it still doesn't work. I add the
JScrollPanel
instead of JPanel to the internalframe, right?
Do I need to add scrollbar by myself?
Thanks a lot.
frame.
the
I |
|
a***e 发帖数: 188 | 29 Thanks a lot. Could you please tell me whether I should add
scrollbar manually
on JSP or on my own JPanel? or it can appear automatically?
In addition, should I set the size of JPanel?
Thank you again. |
|
o**n 发帖数: 31 | 30 it depends, generally you can let JSP determine the scrollbar
automatically.
For JPanel, if you like, you can setsize, really depends. |
|
a***e 发帖数: 188 | 31 Thanks a lot for your patient reply. But my problem is that I think
the scrollbar should appear(since the Image in JPanel is much larger
than the JPanel and JScrollPanel), but it doesn't.
The other question is that I need to locate some rectangles in the
image. What coordinate system is valid? I think since the image is in
JPanel, it should be JPanel, right?
Thanks again. |
|
a***e 发帖数: 188 | 32 I sovled this problem. When using JPanel, be sure to use
paintComponent()
instead of paint(g).Hope other guys don't meet this problem.
I still didn't solve the problem of scrolling panel. I even add the
scrollbar
manually to the scrollpane, it still doesn't work. I really don't know
why. Did
any one have ever do this using Swing?
Thanks a lot.
懢 在 angie (MIMI) 的大作中提到: 懣
need
internal |
|
y*****g 发帖数: 13 | 33 我想在CODE中实现把一个ScrollBar拉到底的操作. 应该用什么method呢?
大概看了看JDOC,试了试setValue(getMaximum()).
不Work...:(
哪位拉兄弟一把... |
|
j*******s 发帖数: 81 | 34 在jscrollpane里加入一个size很大的jpanel,程序响应会很慢,即便jpanel
什么都不画。请问是怎么回事?
我有一个旧程序,没用jscrollpane,而是用一个小的jpanel(只需frame大小)
外加两个scrollbar手工layout并且响应bar的调节,响应就很快。该jpanel
用translate方法调节viewport的位置。
请教,jscrollpane是不是不适合放入大的组件? |
|
g****j 发帖数: 24 | 35
看来我没法用document了,我不得不频繁更新document的内容,user每更新一次某个参
数,或者拖动scrollbar,document的文字就需要更新。
cache
fastest
Java2D 的TextLayout 看起来不错,我刚google了一下。问题是,这个比起直接在
jpanel
上用drawstring的优势在哪里呢?多谢。 |
|
l********0 发帖数: 283 | 36 You can try:
使用2个JScrollpanel,一个scrollbar
利用滚动事件关联这3个组件 |
|
b***i 发帖数: 3043 | 37 我不希望出现这个scrollbar, 但是希望我在JTextArea里输入的时候,能够永远显示到
最后一行,如何做到?
多谢 |
|
b***i 发帖数: 3043 | 38 想了一个办法,把scrollbar显示出来,但是让它很细,比如只有1,不就行了吗?
待会儿试一下
法。 |
|
b***i 发帖数: 3043 | 39 多谢,正准备用了,
我把scrollbar显示出来后,就实现了我的要求,用户输入的文字可以上卷。
但是,我的JTextArea有背景图。我的目的是文字悬浮于图形之上。比如,文字变化,
图形不变
现在,每次输入字符如果超过最大行数,屏幕自动上滚,文字满足了要求,我把拖动杆
变得很小,看不见。但是,文字上滚时,图形也上滚了,所以准备用
scrollRectToVisible,还有那一套获得现在显示窗口的东西,在paint里面画到新的位
置。
我不想用listener来实现真正的具有屏幕文字缓冲区的textArea,是因为我想显示汉字
,而我选的汉字体的宽度是英文的两倍,会出现我移动光标时有的时候是移动一个字符
,有的时候是两个,再实现delete, back space,我要疯了。现在将就用jTextArea,很
小的问题,就是屏幕上卷后最上一行还是在的,如果用鼠标滚轮上卷,还是能看到。不
过看到就看到吧。 |
|
m****r 发帖数: 6639 | 40 昨晚不知道干了什么, 把IE的scrollbar搞出来了. 我记得是在browser里面改zoom in
/zoom out的ratio. 然后它突然就有了.
今天不能reproduce. wth.
js |
|
b******d 发帖数: 794 | 41 另外请教一下,怎么获得没有id/name的table, 好像htmlpage只能获得getElementById
啥的,我这个table什么特征都没有,怎么找到他,还是就作为text搜索,可是搜到之后
,后面的结构也不好搜索了
还有table套table的如何准确定位里面的table, 也是没有id/name的,比如这个
http://RSK.imageg.net/image
s/pixel.gif" width="11" height="1" border="0" /> |
SOLON-SOLON SHOP CTR
... 阅读全帖 | |
|
e*****t 发帖数: 1005 | 42 no easy way. if the position is fixed, you can use index. Otherwise you have
to iterate through and check one by one.
另外请教一下,怎么获得没有id/name的table, 好像htmlpage只能获得getElementById
啥的,我这个table什么特征都没有,怎么找到他,还是就作为text搜索,可是搜到之后
,后面的结构也不好搜索了
还有table套table的如何准确定位里面的table, 也是没有id/name的,比如这个
http://RSK.imageg.net/image
s/pixel.gif" width="11" height="1" border="0" /> |
... 阅读全帖 |
|
o******b 发帖数: 37 | 43 贴个图,注意水平的scrollbar, 让人很不爽 |
|
s****n 发帖数: 700 | 44 每个页面都拉得很长, 看文章的时候都要拉动水平的scrollbar. |
|
M******y 发帖数: 736 | 45 一直用 screen on gnome-terminal on Gentoo,screen 时,右侧的 scroll bar 可以
正常使用。
现在用 RHEL,by default,这个 scrool bar 在 screen 下就没了 -- 有,但是满的,
不能拖动。
这个该在哪里设一下?俺土。。。 |
|
Z****e 发帖数: 2999 | 46 I always use C-a,[ to scroll...
的, |
|
M******y 发帖数: 736 | 47 目前也只好这样了。。。
进了 copy/scroll mode 之后,鼠标控制和 copy/paste 是按什么规范的?似乎不是 e
macs 规范。。。 能设成 emacs 规范么?
可以 |
|
v********0 发帖数: 22 | 48 俺用shift+pgup, shift+pgdn…… |
|
M******y 发帖数: 736 | 49 pgup/pgdn 不在手指够得到的地方啊。。。 |
|
v********0 发帖数: 22 | 50
俺是toshiba的keyboard,正好右手小指能够到……:p |
|